1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008 | signal time=1508486976.843675 sender=org.freedesktop.DBus -> destination=:1.121 serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired
string ":1.121"
signal time=1508486976.843695 sender=org.freedesktop.DBus -> destination=:1.121 serial=4 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameLost
string ":1.121"
signal time=1508486981.479828 sender=:1.14 -> destination=(null destination) serial=783 path=/org/gnome/Mutter/IdleMonitor; interface=org.freedesktop.DBus.ObjectManager; member=InterfacesRemoved
object path "/org/gnome/Mutter/IdleMonitor/Device18"
array [
string "org.gnome.Mutter.IdleMonitor"
]
method call time=1508486981.499686 sender=:1.20 -> destination=org.freedesktop.DBus serial=25 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',arg0='org.freedesktop.ReserveDevice1.Audio2'"
method call time=1508486990.625105 sender=:1.20 -> destination=org.freedesktop.DBus serial=26 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RequestName
string "org.freedesktop.ReserveDevice1.Audio2"
uint32 5
signal time=1508486990.625127 sender=org.freedesktop.DBus -> destination=(null destination) serial=65 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string "org.freedesktop.ReserveDevice1.Audio2"
string ""
string ":1.20"
signal time=1508486990.625136 sender=org.freedesktop.DBus -> destination=:1.20 serial=39 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired
string "org.freedesktop.ReserveDevice1.Audio2"
method return time=1508486990.625142 sender=org.freedesktop.DBus -> destination=:1.20 serial=40 reply_serial=26
uint32 1
method call time=1508486990.652366 sender=:1.20 -> destination=org.freedesktop.DBus serial=27 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',arg0='org.freedesktop.ReserveDevice1.Audio2'"
method return time=1508486990.652400 sender=org.freedesktop.DBus -> destination=:1.20 serial=41 reply_serial=27
method call time=1508486990.653093 sender=:1.20 -> destination=org.freedesktop.DBus serial=28 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=GetNameOwner
string "org.freedesktop.ReserveDevice1.Audio2"
method return time=1508486990.653115 sender=org.freedesktop.DBus -> destination=:1.20 serial=42 reply_serial=28
string ":1.20"
signal time=1508486990.671308 sender=:1.14 -> destination=(null destination) serial=784 path=/org/gnome/Mutter/IdleMonitor; interface=org.freedesktop.DBus.ObjectManager; member=InterfacesAdded
object path "/org/gnome/Mutter/IdleMonitor/Device18"
array [
dict entry(
string "org.gnome.Mutter.IdleMonitor"
array [
]
)
]
method call time=1508486995.727812 sender=:1.20 -> destination=org.freedesktop.DBus serial=29 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=ReleaseName
string "org.freedesktop.ReserveDevice1.Audio2"
signal time=1508486995.727872 sender=org.freedesktop.DBus -> destination=:1.20 serial=43 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameLost
string "org.freedesktop.ReserveDevice1.Audio2"
signal time=1508486995.727898 sender=org.freedesktop.DBus -> destination=(null destination) serial=66 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string "org.freedesktop.ReserveDevice1.Audio2"
string ":1.20"
string ""
method return time=1508486995.727931 sender=org.freedesktop.DBus -> destination=:1.20 serial=44 reply_serial=29
uint32 1
method call time=1508486997.707563 sender=:1.122 -> destination=org.freedesktop.DBus serial=1 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=Hello
method return time=1508486997.707594 sender=org.freedesktop.DBus -> destination=:1.122 serial=1 reply_serial=1
string ":1.122"
signal time=1508486997.707609 sender=org.freedesktop.DBus -> destination=(null destination) serial=67 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string ":1.122"
string ""
string ":1.122"
signal time=1508486997.707623 sender=org.freedesktop.DBus -> destination=:1.122 serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired
string ":1.122"
method call time=1508486997.710472 sender=:1.122 -> destination=org.freedesktop.DBus serial=2 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RequestName
string "org.gnome.Cheese"
uint32 4
signal time=1508486997.710520 sender=org.freedesktop.DBus -> destination=(null destination) serial=68 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameOwnerChanged
string "org.gnome.Cheese"
string ""
string ":1.122"
signal time=1508486997.710540 sender=org.freedesktop.DBus -> destination=:1.122 serial=3 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=NameAcquired
string "org.gnome.Cheese"
method return time=1508486997.710552 sender=org.freedesktop.DBus -> destination=:1.122 serial=4 reply_serial=2
uint32 1
method call time=1508486997.714640 sender=:1.122 -> destination=org.freedesktop.DBus serial=3 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/cheese/'"
method return time=1508486997.714671 sender=org.freedesktop.DBus -> destination=:1.122 serial=5 reply_serial=3
method call time=1508486997.715449 sender=:1.122 -> destination=org.freedesktop.DBus serial=4 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/desktop/interface/'"
method return time=1508486997.715467 sender=org.freedesktop.DBus -> destination=:1.122 serial=6 reply_serial=4
method call time=1508486997.715735 sender=:1.122 -> destination=org.freedesktop.DBus serial=5 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/settings-daemon/peripherals/mouse/'"
method return time=1508486997.715752 sender=org.freedesktop.DBus -> destination=:1.122 serial=7 reply_serial=5
method call time=1508486997.716083 sender=:1.122 -> destination=org.freedesktop.DBus serial=6 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/desktop/sound/'"
method return time=1508486997.716096 sender=org.freedesktop.DBus -> destination=:1.122 serial=8 reply_serial=6
method call time=1508486997.716101 sender=:1.122 -> destination=org.freedesktop.DBus serial=7 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/desktop/privacy/'"
method return time=1508486997.716107 sender=org.freedesktop.DBus -> destination=:1.122 serial=9 reply_serial=7
method call time=1508486997.716111 sender=:1.122 -> destination=org.freedesktop.DBus serial=8 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/desktop/wm/preferences/'"
method return time=1508486997.716117 sender=org.freedesktop.DBus -> destination=:1.122 serial=10 reply_serial=8
method call time=1508486997.716122 sender=:1.122 -> destination=org.freedesktop.DBus serial=9 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/settings-daemon/plugins/xsettings/'"
method return time=1508486997.716129 sender=org.freedesktop.DBus -> destination=:1.122 serial=11 reply_serial=9
method call time=1508486997.716133 sender=:1.122 -> destination=org.freedesktop.DBus serial=10 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/desktop/a11y/'"
method return time=1508486997.716139 sender=org.freedesktop.DBus -> destination=:1.122 serial=12 reply_serial=10
method call time=1508486997.823160 sender=:1.122 -> destination=org.freedesktop.DBus serial=11 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',path='/org/freedesktop/DBus',arg0='org.gnome.SessionManager'"
method return time=1508486997.823203 sender=org.freedesktop.DBus -> destination=:1.122 serial=13 reply_serial=11
method call time=1508486997.823227 sender=:1.122 -> destination=org.freedesktop.DBus serial=12 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=GetNameOwner
string "org.gnome.SessionManager"
method return time=1508486997.823234 sender=org.freedesktop.DBus -> destination=:1.122 serial=14 reply_serial=12
string ":1.12"
method call time=1508486997.826083 sender=:1.122 -> destination=org.freedesktop.DBus serial=13 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',path='/org/freedesktop/DBus',arg0='org.gtk.vfs.Daemon'"
method return time=1508486997.826123 sender=org.freedesktop.DBus -> destination=:1.122 serial=15 reply_serial=13
method call time=1508486997.826149 sender=:1.122 -> destination=org.freedesktop.DBus serial=14 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=StartServiceByName
string "org.gtk.vfs.Daemon"
uint32 0
method return time=1508486997.826158 sender=org.freedesktop.DBus -> destination=:1.122 serial=16 reply_serial=14
uint32 2
method call time=1508486997.826522 sender=:1.122 -> destination=org.freedesktop.DBus serial=15 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=GetNameOwner
string "org.gtk.vfs.Daemon"
method return time=1508486997.826562 sender=org.freedesktop.DBus -> destination=:1.122 serial=17 reply_serial=15
string ":1.15"
method call time=1508486997.826999 sender=:1.122 -> destination=:1.15 serial=16 path=/org/gtk/vfs/mounttracker; interface=org.gtk.vfs.MountTracker; member=ListMountableInfo
method return time=1508486997.827922 sender=:1.15 -> destination=:1.122 serial=150 reply_serial=16
array [
struct {
string "afc"
string "afc"
array [
]
int32 1
boolean false
}
struct {
string "ftp"
string "ftp"
array [
]
int32 21
boolean true
}
struct {
string "smb-share"
string "smb"
array [
]
int32 0
boolean false
}
struct {
string "ftps"
string "ftps"
array [
]
int32 21
boolean true
}
struct {
string "burn"
string "burn"
array [
]
int32 0
boolean false
}
struct {
string "sftp"
string "sftp"
array [
string "ssh"
]
int32 22
boolean true
}
struct {
string "recent"
string "recent"
array [
]
int32 0
boolean false
}
struct {
string "gphoto2"
string "gphoto2"
array [
]
int32 0
boolean false
}
struct {
string "mtp"
string "mtp"
array [
]
int32 0
boolean false
}
struct {
string "archive"
string "archive"
array [
]
int32 0
boolean false
}
struct {
string "network"
string "network"
array [
]
int32 0
boolean false
}
struct {
string "computer"
string "computer"
array [
]
int32 0
boolean false
}
struct {
string "afp-volume"
string "afp"
array [
]
int32 548
boolean true
}
struct {
string "trash"
string "trash"
array [
]
int32 0
boolean false
}
struct {
string "localtest"
string "localtest"
array [
]
int32 0
boolean false
}
struct {
string "afp-server"
string "afp"
array [
]
int32 548
boolean true
}
struct {
string "google-drive"
string "google-drive"
array [
]
int32 0
boolean false
}
struct {
string "cdda"
string "cdda"
array [
]
int32 0
boolean false
}
struct {
string "admin"
string "admin"
array [
]
int32 0
boolean false
}
struct {
string "http"
string "http"
array [
]
int32 0
boolean false
}
struct {
string "davs+sd"
string "davs+sd"
array [
]
int32 0
boolean false
}
struct {
string "dav+sd"
string "dav+sd"
array [
]
int32 0
boolean false
}
struct {
string "davs"
string "davs"
array [
]
int32 0
boolean false
}
struct {
string "dav"
string "dav"
array [
]
int32 0
boolean false
}
struct {
string "smb-server"
string "smb"
array [
]
int32 0
boolean false
}
struct {
string "smb-network"
string "smb"
array [
]
int32 0
boolean false
}
struct {
string "dns-sd"
string "dns-sd"
array [
]
int32 0
boolean false
}
]
method call time=1508486997.828750 sender=:1.122 -> destination=org.freedesktop.DBus serial=17 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',path='/org/freedesktop/DBus',arg0='org.gtk.vfs.Daemon'"
method return time=1508486997.828786 sender=org.freedesktop.DBus -> destination=:1.122 serial=18 reply_serial=17
method call time=1508486997.870624 sender=:1.122 -> destination=org.freedesktop.DBus serial=18 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/cheese/'"
method return time=1508486997.870645 sender=org.freedesktop.DBus -> destination=:1.122 serial=19 reply_serial=18
method call time=1508486997.870649 sender=:1.122 -> destination=org.freedesktop.DBus serial=19 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/cheese/'"
method return time=1508486997.870655 sender=org.freedesktop.DBus -> destination=:1.122 serial=20 reply_serial=19
method call time=1508486997.896860 sender=:1.122 -> destination=org.freedesktop.DBus serial=20 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/cheese/'"
method return time=1508486997.896885 sender=org.freedesktop.DBus -> destination=:1.122 serial=21 reply_serial=20
method call time=1508486997.899621 sender=:1.122 -> destination=org.freedesktop.DBus serial=21 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/desktop/thumbnailers/'"
method return time=1508486997.899638 sender=org.freedesktop.DBus -> destination=:1.122 serial=22 reply_serial=21
method call time=1508487020.470400 sender=:1.122 -> destination=org.freedesktop.DBus serial=22 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',interface='ca.desrt.dconf.Writer',path='/ca/desrt/dconf/Writer/user',arg0path='/org/gnome/cheese/'"
method return time=1508487020.470418 sender=org.freedesktop.DBus -> destination=:1.122 serial=23 reply_serial=22
method call time=1508487031.184295 sender=:1.122 -> destination=ca.desrt.dconf serial=23 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Change
array of bytes [
2f 6f 72 67 2f 67 6e 6f 6d 65 2f 63 68 65 65 73 65 2f 70 68 6f 74 6f 2d
78 2d 72 65 73 6f 6c 75 74 69 6f 6e 00 00 00 00 40 01 00 00 00 69 00 25
30
]
method call time=1508487031.184331 sender=:1.122 -> destination=ca.desrt.dconf serial=24 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Change
array of bytes [
2f 6f 72 67 2f 67 6e 6f 6d 65 2f 63 68 65 65 73 65 2f 70 68 6f 74 6f 2d
79 2d 72 65 73 6f 6c 75 74 69 6f 6e 00 00 00 00 f0 00 00 00 00 69 00 25
30
]
method call time=1508487031.189807 sender=:1.122 -> destination=org.freedesktop.DBus serial=25 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',path='/org/freedesktop/DBus',arg0='org.freedesktop.IBus'"
method return time=1508487031.189827 sender=org.freedesktop.DBus -> destination=:1.122 serial=24 reply_serial=25
method call time=1508487031.189854 sender=:1.122 -> destination=org.freedesktop.DBus serial=26 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=GetNameOwner
string "org.freedesktop.IBus"
method return time=1508487031.189861 sender=org.freedesktop.DBus -> destination=:1.122 serial=25 reply_serial=26
string ":1.31"
method return time=1508487031.197363 sender=:1.26 -> destination=:1.122 serial=147 reply_serial=23
string ":1.26:user:72"
signal time=1508487031.197383 sender=:1.26 -> destination=(null destination) serial=148 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Notify
string "/org/gnome/cheese/photo-x-resolution"
array [
string ""
]
string ":1.26:user:72"
method call time=1508487031.197395 sender=:1.122 -> destination=ca.desrt.dconf serial=27 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Change
array of bytes [
2f 6f 72 67 2f 67 6e 6f 6d 65 2f 63 68 65 65 73 65 2f 63 61 6d 65 72 61
00 00 00 00 00 00 00 00 55 56 43 20 43 61 6d 65 72 61 20 28 30 34 36 64
3a 30 38 30 39 29 00 00 73 00 19 3b
]
method return time=1508487031.210033 sender=:1.26 -> destination=:1.122 serial=149 reply_serial=24
string ":1.26:user:73"
signal time=1508487031.210054 sender=:1.26 -> destination=(null destination) serial=150 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Notify
string "/org/gnome/cheese/photo-y-resolution"
array [
string ""
]
string ":1.26:user:73"
method call time=1508487031.210476 sender=:1.122 -> destination=ca.desrt.dconf serial=28 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Change
array of bytes [
2f 6f 72 67 2f 67 6e 6f 6d 65 2f 63 68 65 65 73 65 2f 70 68 6f 74 6f 2d
78 2d 72 65 73 6f 6c 75 74 69 6f 6e 00 00 00 00 40 01 00 00 00 69 00 25
30
]
signal time=1508487031.210813 sender=:1.122 -> destination=(null destination) serial=29 path=/org/gnome/Cheese; interface=org.gtk.Actions; member=Changed
array [
]
array [
]
array [
]
array [
dict entry(
string "effects"
struct {
boolean false
signature ""
array [
variant boolean false
]
}
)
dict entry(
string "fullscreen"
struct {
boolean true
signature ""
array [
variant boolean false
]
}
)
dict entry(
string "about"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "preferences"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "mode"
struct {
boolean false
signature "s"
array [
variant string "photo"
]
}
)
dict entry(
string "wide-mode"
struct {
boolean true
signature ""
array [
variant boolean false
]
}
)
dict entry(
string "help"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "shoot"
struct {
boolean false
signature ""
array [
]
}
)
dict entry(
string "quit"
struct {
boolean true
signature ""
array [
]
}
)
]
signal time=1508487031.211546 sender=:1.122 -> destination=(null destination) serial=30 path=/org/gnome/Cheese/window/1; interface=org.gtk.Actions; member=Changed
array [
]
array [
]
array [
]
array [
dict entry(
string "effects-next"
struct {
boolean false
signature ""
array [
]
}
)
dict entry(
string "file-trash"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "file-open"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "file-delete"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "effects-previous"
struct {
boolean false
signature ""
array [
]
}
)
dict entry(
string "file-saveas"
struct {
boolean true
signature ""
array [
]
}
)
]
method return time=1508487031.216900 sender=:1.26 -> destination=:1.122 serial=151 reply_serial=27
string ":1.26:user:74"
method call time=1508487031.217325 sender=:1.122 -> destination=ca.desrt.dconf serial=31 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Change
array of bytes [
2f 6f 72 67 2f 67 6e 6f 6d 65 2f 63 68 65 65 73 65 2f 70 68 6f 74 6f 2d
79 2d 72 65 73 6f 6c 75 74 69 6f 6e 00 00 00 00 f0 00 00 00 00 69 00 25
30
]
signal time=1508487031.218679 sender=:1.26 -> destination=(null destination) serial=152 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Notify
string "/org/gnome/cheese/camera"
array [
string ""
]
string ":1.26:user:74"
method call time=1508487031.222744 sender=:1.14 -> destination=org.freedesktop.DBus serial=785 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender=':1.122',interface='org.gtk.Actions',member='Changed',path='/org/gnome/Cheese'"
method return time=1508487031.222768 sender=org.freedesktop.DBus -> destination=:1.14 serial=609 reply_serial=785
method call time=1508487031.222789 sender=:1.14 -> destination=:1.122 serial=786 path=/org/gnome/Cheese; interface=org.gtk.Actions; member=DescribeAll
method call time=1508487031.223016 sender=:1.14 -> destination=org.freedesktop.DBus serial=787 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender=':1.122',interface='org.freedesktop.DBus.Properties',member='PropertiesChanged',path='/org/gnome/Cheese',arg0='org.gtk.Application'"
method return time=1508487031.223034 sender=org.freedesktop.DBus -> destination=:1.14 serial=610 reply_serial=787
method call time=1508487031.223038 sender=:1.14 -> destination=org.freedesktop.DBus serial=788 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender=':1.122',interface='org.gtk.Application',path='/org/gnome/Cheese'"
method return time=1508487031.223044 sender=org.freedesktop.DBus -> destination=:1.14 serial=611 reply_serial=788
method call time=1508487031.223048 sender=:1.14 -> destination=:1.122 serial=789 path=/org/gnome/Cheese; interface=org.freedesktop.DBus.Properties; member=GetAll
string "org.gtk.Application"
method return time=1508487031.230984 sender=:1.26 -> destination=:1.122 serial=153 reply_serial=28
string ":1.26:user:75"
signal time=1508487031.231805 sender=:1.26 -> destination=(null destination) serial=154 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Notify
string "/org/gnome/cheese/photo-x-resolution"
array [
string ""
]
string ":1.26:user:75"
method call time=1508487031.231845 sender=:1.122 -> destination=ca.desrt.dconf serial=32 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Change
array of bytes [
2f 6f 72 67 2f 67 6e 6f 6d 65 2f 63 68 65 65 73 65 2f 76 69 64 65 6f 2d
78 2d 72 65 73 6f 6c 75 74 69 6f 6e 00 00 00 00 40 01 00 00 00 69 00 25
30
]
method return time=1508487031.232155 sender=:1.122 -> destination=:1.14 serial=33 reply_serial=786
array [
dict entry(
string "effects"
struct {
boolean false
signature ""
array [
variant boolean false
]
}
)
dict entry(
string "fullscreen"
struct {
boolean true
signature ""
array [
variant boolean false
]
}
)
dict entry(
string "about"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "preferences"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "mode"
struct {
boolean false
signature "s"
array [
variant string "photo"
]
}
)
dict entry(
string "wide-mode"
struct {
boolean true
signature ""
array [
variant boolean false
]
}
)
dict entry(
string "help"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "shoot"
struct {
boolean false
signature ""
array [
]
}
)
dict entry(
string "quit"
struct {
boolean true
signature ""
array [
]
}
)
]
method return time=1508487031.232631 sender=:1.122 -> destination=:1.14 serial=34 reply_serial=789
array [
dict entry(
string "Busy"
variant boolean false
)
]
method return time=1508487031.241295 sender=:1.26 -> destination=:1.122 serial=155 reply_serial=31
string ":1.26:user:76"
signal time=1508487031.241727 sender=:1.26 -> destination=(null destination) serial=156 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Notify
string "/org/gnome/cheese/photo-y-resolution"
array [
string ""
]
string ":1.26:user:76"
method call time=1508487031.242115 sender=:1.122 -> destination=ca.desrt.dconf serial=35 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Change
array of bytes [
2f 6f 72 67 2f 67 6e 6f 6d 65 2f 63 68 65 65 73 65 2f 76 69 64 65 6f 2d
79 2d 72 65 73 6f 6c 75 74 69 6f 6e 00 00 00 00 f0 00 00 00 00 69 00 25
30
]
method return time=1508487031.251637 sender=:1.26 -> destination=:1.122 serial=157 reply_serial=32
string ":1.26:user:77"
signal time=1508487031.251659 sender=:1.26 -> destination=(null destination) serial=158 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Notify
string "/org/gnome/cheese/video-x-resolution"
array [
string ""
]
string ":1.26:user:77"
method call time=1508487031.251671 sender=:1.122 -> destination=ca.desrt.dconf serial=36 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Change
array of bytes [
2f 6f 72 67 2f 67 6e 6f 6d 65 2f 63 68 65 65 73 65 2f 62 72 69 67 68 74
6e 65 73 73 00 00 00 00 78 1a 61 b9 a7 11 c6 3f 00 64 00 1d 2c
]
method return time=1508487031.264805 sender=:1.26 -> destination=:1.122 serial=159 reply_serial=35
string ":1.26:user:78"
signal time=1508487031.265595 sender=:1.26 -> destination=(null destination) serial=160 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Notify
string "/org/gnome/cheese/video-y-resolution"
array [
string ""
]
string ":1.26:user:78"
method call time=1508487031.266706 sender=:1.122 -> destination=ca.desrt.dconf serial=37 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Change
array of bytes [
2f 6f 72 67 2f 67 6e 6f 6d 65 2f 63 68 65 65 73 65 2f 68 75 65 00 00 00
80 7b 1a 61 b9 a7 91 3f 00 64 00 16 24
]
method return time=1508487031.281774 sender=:1.26 -> destination=:1.122 serial=161 reply_serial=36
string ":1.26:user:79"
signal time=1508487031.281811 sender=:1.26 -> destination=(null destination) serial=162 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Notify
string "/org/gnome/cheese/brightness"
array [
string ""
]
string ":1.26:user:79"
method call time=1508487031.282072 sender=:1.122 -> destination=ca.desrt.dconf serial=38 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Change
array of bytes [
2f 6f 72 67 2f 67 6e 6f 6d 65 2f 63 68 65 65 73 65 2f 73 61 74 75 72 61
74 69 6f 6e 00 00 00 00 8f ad 08 1a 4e ea ee 3f 00 64 00 1d 2c
]
method call time=1508487031.290392 sender=:1.14 -> destination=org.freedesktop.DBus serial=790 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender=':1.122',interface='org.gtk.Actions',member='Changed',path='/org/gnome/Cheese/window/1'"
method return time=1508487031.290457 sender=org.freedesktop.DBus -> destination=:1.14 serial=612 reply_serial=790
method call time=1508487031.291425 sender=:1.14 -> destination=:1.122 serial=791 path=/org/gnome/Cheese/window/1; interface=org.gtk.Actions; member=DescribeAll
method return time=1508487031.292073 sender=:1.122 -> destination=:1.14 serial=39 reply_serial=791
array [
dict entry(
string "effects-next"
struct {
boolean false
signature ""
array [
]
}
)
dict entry(
string "file-trash"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "file-open"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "file-delete"
struct {
boolean true
signature ""
array [
]
}
)
dict entry(
string "effects-previous"
struct {
boolean false
signature ""
array [
]
}
)
dict entry(
string "file-saveas"
struct {
boolean true
signature ""
array [
]
}
)
]
method return time=1508487031.295502 sender=:1.26 -> destination=:1.122 serial=163 reply_serial=37
string ":1.26:user:80"
signal time=1508487031.296151 sender=:1.26 -> destination=(null destination) serial=164 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Notify
string "/org/gnome/cheese/hue"
array [
string ""
]
string ":1.26:user:80"
method call time=1508487031.296438 sender=:1.122 -> destination=ca.desrt.dconf serial=40 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Change
array of bytes [
2f 6f 72 67 2f 67 6e 6f 6d 65 2f 63 68 65 65 73 65 2f 62 75 72 73 74 2d
64 65 6c 61 79 00 00 00 e8 03 00 00 00 69 00 1e 28
]
method call time=1508487031.298130 sender=:1.14 -> destination=org.freedesktop.DBus serial=792 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender=':1.122',interface='org.gtk.Menus',member='Changed',path='/org/gnome/Cheese/menus/appmenu'"
method return time=1508487031.298147 sender=org.freedesktop.DBus -> destination=:1.14 serial=613 reply_serial=792
method call time=1508487031.298152 sender=:1.14 -> destination=:1.122 serial=793 path=/org/gnome/Cheese/menus/appmenu; interface=org.gtk.Menus; member=Start
array [
uint32 0
]
method call time=1508487031.299208 sender=:1.122 -> destination=org.freedesktop.DBus serial=41 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',path='/org/freedesktop/DBus',arg0=':1.14'"
method return time=1508487031.299224 sender=org.freedesktop.DBus -> destination=:1.122 serial=26 reply_serial=41
method call time=1508487031.299229 sender=:1.122 -> destination=org.freedesktop.DBus serial=42 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=GetNameOwner
string ":1.14"
method return time=1508487031.299235 sender=org.freedesktop.DBus -> destination=:1.122 serial=27 reply_serial=42
string ":1.14"
method return time=1508487031.299241 sender=:1.122 -> destination=:1.14 serial=43 reply_serial=793
array [
struct {
uint32 0
uint32 0
array [
array [
dict entry(
string ":section"
variant struct {
uint32 0
uint32 1
}
)
]
array [
dict entry(
string ":section"
variant struct {
uint32 0
uint32 2
}
)
]
]
}
struct {
uint32 0
uint32 1
array [
array [
dict entry(
string "action"
variant string "app.fullscreen"
)
dict entry(
string "label"
variant string "_Plein écran"
)
dict entry(
string "accel"
variant string "F11"
)
]
array [
dict entry(
string "action"
variant string "app.preferences"
)
dict entry(
string "label"
variant string "_Préférences"
)
]
]
}
struct {
uint32 0
uint32 2
array [
array [
dict entry(
string "action"
variant string "app.help"
)
dict entry(
string "label"
variant string "Aid_e"
)
dict entry(
string "accel"
variant string "F1"
)
]
array [
dict entry(
string "action"
variant string "app.about"
)
dict entry(
string "label"
variant string "À _propos"
)
]
array [
dict entry(
string "action"
variant string "app.quit"
)
dict entry(
string "label"
variant string "_Quitter"
)
dict entry(
string "accel"
variant string "<Primary>q"
)
]
]
}
]
method return time=1508487031.306928 sender=:1.26 -> destination=:1.122 serial=165 reply_serial=38
string ":1.26:user:81"
signal time=1508487031.306950 sender=:1.26 -> destination=(null destination) serial=166 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Notify
string "/org/gnome/cheese/saturation"
array [
string ""
]
string ":1.26:user:81"
method return time=1508487031.314230 sender=:1.26 -> destination=:1.122 serial=167 reply_serial=40
string ":1.26:user:82"
signal time=1508487031.314672 sender=:1.26 -> destination=(null destination) serial=168 path=/ca/desrt/dconf/Writer/user; interface=ca.desrt.dconf.Writer; member=Notify
string "/org/gnome/cheese/burst-delay"
array [
string ""
]
string ":1.26:user:82"
method call time=1508487031.706969 sender=:1.122 -> destination=:1.12 serial=44 path=/org/gnome/SessionManager; interface=org.gnome.SessionManager; member=Inhibit
string "org.gnome.Cheese"
uint32 0
string "Webcam en cours d'utilisation"
uint32 10
signal time=1508487031.713166 sender=:1.12 -> destination=(null destination) serial=339 path=/org/gnome/SessionManager; interface=org.gnome.SessionManager; member=InhibitorAdded
object path "/org/gnome/SessionManager/Inhibitor6"
method call time=1508487031.713188 sender=:1.12 -> destination=:1.14 serial=340 path=/org/gnome/Mutter/IdleMonitor/Core; interface=org.gnome.Mutter.IdleMonitor; member=RemoveWatch
uint32 9
method return time=1508487031.713195 sender=:1.12 -> destination=:1.122 serial=341 reply_serial=44
uint32 1253695079
method call time=1508487031.713200 sender=:1.12 -> destination=org.freedesktop.DBus serial=342 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=AddMatch
string "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',path='/org/freedesktop/DBus',arg0=':1.122'"
method return time=1508487031.713206 sender=org.freedesktop.DBus -> destination=:1.12 serial=142 reply_serial=342
method call time=1508487031.713210 sender=:1.12 -> destination=org.freedesktop.DBus serial=343 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=GetNameOwner
string ":1.122"
method return time=1508487031.713215 sender=org.freedesktop.DBus -> destination=:1.12 serial=143 reply_serial=343
string ":1.122"
signal time=1508487031.713220 sender=:1.12 -> destination=(null destination) serial=344 path=/org/gnome/SessionManager; interface=org.freedesktop.DBus.Properties; member=PropertiesChanged
string "org.gnome.SessionManager"
array [
dict entry(
string "InhibitedActions"
variant uint32 10
)
]
array [
]
method call time=1508487031.714928 sender=:1.14 -> destination=:1.12 serial=794 path=/org/gnome/SessionManager; interface=org.gnome.SessionManager; member=IsInhibited
uint32 16
method return time=1508487031.715349 sender=:1.12 -> destination=:1.14 serial=345 reply_serial=794
boolean false
method call time=1508487031.715743 sender=:1.14 -> destination=org.freedesktop.DBus serial=795 path=/org/freedesktop/DBus; interface=org.freedesktop.DBus; member=RemoveMatch
string "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='NameOwnerChanged',path='/org/freedesktop/DBus',arg0=':1.12'"
method return time=1508487031.715758 sender=org.freedesktop.DBus -> destination=:1.14 serial=614 reply_serial=795
signal time=1508487031.727720 sender=:1.122 -> destination=(null destination) serial=45 path=/org/gnome/Cheese; interface=org.gtk.Actions; member=Changed
array [
]
array [
dict entry(
string "effects"
boolean true
)
dict entry(
string "shoot"
boolean true
)
dict entry(
string "mode"
boolean true
)
]
array [
]
array [
]
method call time=1508487031.756245 sender=:1.60 -> destination=:1.14 serial=54 path=/org/gnome/Mutter/DisplayConfig; interface=org.freedesktop.DBus.Properties; member=Set
string "org.gnome.Mutter.DisplayConfig"
string "PowerSaveMode"
variant int32 0
method return time=1508487031.783934 sender=:1.14 -> destination=:1.60 serial=796 reply_serial=54
|