-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEspresso_Android13test.txt
1368 lines (1368 loc) · 162 KB
/
Espresso_Android13test.txt
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
12-26 09:00:00.252 1584 1809 I am_uid_active: 10125
12-26 09:00:42.449 1584 1922 I device_idle_step:
12-26 09:00:42.479 1584 8274 I am_uid_running: 10266
12-26 09:00:42.503 1584 1922 I device_idle: [6,s:alarm]
12-26 09:00:42.509 1584 1922 I device_idle_off_start: unknown
12-26 09:00:42.509 1584 1922 I device_idle_off_phase: power
12-26 09:00:42.510 1584 1922 I device_idle_off_phase: net
12-26 09:00:42.512 1584 1922 I device_idle_off_complete:
12-26 09:00:42.515 1584 1810 I am_proc_start: [0,16802,10266,com.socialnmobile.dictapps.notepad.color.note,broadcast,{com.socialnmobile.dictapps.notepad.color.note/com.socialnmobile.colornote.receiver.AutoSyncReceiver}]
12-26 09:00:42.533 1584 1853 I am_proc_bound: [0,16802,com.socialnmobile.dictapps.notepad.color.note]
12-26 09:00:42.540 1584 1810 I am_proc_start: [0,16817,10116,com.google.android.apps.turbo:aab,service,{com.google.android.apps.turbo/com.google.android.libraries.smartbattery.appusage.library.EvaluateAppBucketsJob}]
12-26 09:00:42.544 1584 1584 I job_deferred_execution: 21629841
12-26 09:00:42.546 1584 1584 I battery_saving_stats: [0,0,2,21600010,106000,2,328001499,1646000,30]
12-26 09:00:42.555 1584 6289 I am_proc_bound: [0,16817,com.google.android.apps.turbo:aab]
12-26 09:00:42.571 1584 8931 I job_deferred_execution: 21629183
12-26 09:00:42.583 1584 8931 I am_uid_active: 10069
12-26 09:00:42.638 1584 1853 I job_deferred_execution: 21628641
12-26 09:00:42.646 1584 6289 I job_deferred_execution: 21628387
12-26 09:00:42.683 1584 8274 I job_deferred_execution: 21628389
12-26 09:00:42.724 1584 6289 I job_deferred_execution: 21627920
12-26 09:00:42.765 1584 8274 I job_deferred_execution: 21628375
12-26 09:00:42.774 1584 8931 I am_uid_running: 10079
12-26 09:00:42.787 1584 1810 I am_proc_start: [0,16872,10079,com.android.providers.calendar,broadcast,{com.android.providers.calendar/com.android.providers.calendar.CalendarProviderBroadcastReceiver}]
12-26 09:00:42.797 1584 3390 I am_proc_bound: [0,16872,com.android.providers.calendar]
12-26 09:00:42.872 1584 3389 I job_deferred_execution: 21628473
12-26 09:00:42.872 14190 16171 I aggregation: 1672063242872
12-26 09:00:42.908 1584 8274 I job_deferred_execution: 21628500
12-26 09:00:42.992 1584 3390 I job_deferred_execution: 21624079
12-26 09:00:43.016 1584 1810 I am_proc_start: [0,16901,10160,com.google.android.googlequicksearchbox:train,service,{com.google.android.googlequicksearchbox/com.google.frameworks.client.data.android.server.tiktok.TrainProcessEndpointService}]
12-26 09:00:43.020 1584 8274 I am_uid_running: 10201
12-26 09:00:43.033 1584 3390 I am_proc_bound: [0,16901,com.google.android.googlequicksearchbox:train]
12-26 09:00:43.036 1584 1810 I am_proc_start: [0,16916,10201,com.google.android.turboadapter,service,{com.google.android.turboadapter/com.google.android.turboadapter.GoogleBatteryService}]
12-26 09:00:43.051 1584 6289 I am_proc_bound: [0,16916,com.google.android.turboadapter]
12-26 09:00:43.051 1584 6289 I am_uid_active: 10201
12-26 09:00:43.138 1584 1999 I netstats_mobile_sample: [0,0,0,0,0,0,0,0,0,0,0,0,1672063243138]
12-26 09:00:43.138 1584 1999 I netstats_wifi_sample: [0,0,0,0,0,0,0,0,0,0,0,0,1672063243138]
12-26 09:00:43.140 1584 1999 I am_uid_running: 10219
12-26 09:00:43.155 1584 1810 I am_proc_start: [0,16939,10219,com.google.android.apps.wallpaper,broadcast,{com.google.android.apps.wallpaper/com.android.wallpaper.module.DailyLoggingAlarmReceiver}]
12-26 09:00:43.169 1584 3390 I am_proc_bound: [0,16939,com.google.android.apps.wallpaper]
12-26 09:00:43.187 1584 1932 I am_compact: [16916,com.google.android.turboadapter,all,80728,33316,47168,0,9980,10192,-1060,1468,133,0,0,0,5,1520584,-512]
12-26 09:00:43.296 1584 1932 I am_compact: [2500,com.android.settings,all,250364,136612,111840,4800,-22172,0,-22172,22664,108,1,2703477,905,8,1520072,-19136]
12-26 09:00:43.387 1584 1853 I netstats_mobile_sample: [0,0,0,0,0,0,0,0,0,0,0,0,1672063243387]
12-26 09:00:43.387 1584 1853 I netstats_wifi_sample: [0,0,0,0,0,0,0,0,0,0,0,0,1672063243387]
12-26 09:00:43.471 1584 1810 I am_proc_start: [0,16973,10189,com.google.android.apps.maps:server_recovery_process_scheduled,broadcast,{com.google.android.apps.maps/com.google.android.apps.gmm.plugins.serverrecovery.ScheduledRecoverySignalHandlerImpl}]
12-26 09:00:43.487 1584 3389 I am_proc_bound: [0,16973,com.google.android.apps.maps:server_recovery_process_scheduled]
12-26 09:00:43.589 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,112628,59992,51068,3220,0,0,0,0,14,1,2814886,700,5,1504008,256]
12-26 09:00:43.850 2500 8253 I service_manager_stats: [100,152,129722]
12-26 09:00:44.111 1584 3389 I am_proc_died: [0,16973,com.google.android.apps.maps:server_recovery_process_scheduled,905,19]
12-26 09:00:44.131 1584 1808 I am_pss : [16426,10146,com.google.android.euicc,15450112,12304384,1347584,120180736,0,19,7]
12-26 09:00:44.139 1584 1808 I am_pss : [16086,10205,com.android.remoteprovisioner,6544384,5046272,0,103677952,0,19,7]
12-26 09:00:44.148 1584 1808 I am_pss : [16292,10123,com.google.android.apps.carrier.log,6190080,4780032,0,99549184,0,19,6]
12-26 09:00:44.155 1584 1932 I am_compact: [2500,com.android.settings,all,246880,144472,100480,24724,-12012,34388,-46400,48036,176,3,2823582,905,8,1505544,-37324]
12-26 09:00:44.164 1584 1808 I am_pss : [16231,10121,com.android.vending:instant_app_installer,17431552,6754304,0,134955008,0,19,7]
12-26 09:00:44.171 1584 1808 I am_pss : [16263,1001,com.google.RilConfigService,4995072,3608576,0,95621120,0,19,6]
12-26 09:00:44.244 1584 3389 I am_uid_running: 10101
12-26 09:00:44.260 1584 1810 I am_proc_start: [0,17013,10101,com.android.traceur,content provider,{com.android.traceur/com.android.traceur.SearchProvider}]
12-26 09:00:44.273 1584 3390 I am_proc_bound: [0,17013,com.android.traceur]
12-26 09:00:44.702 1584 1796 I commit_sys_config_file: [jobs,12]
12-26 09:00:45.143 1584 8653 I am_kill : [0,12105,com.google.android.apps.maps,975,empty #33]
12-26 09:00:45.145 1584 8653 I am_kill : [0,10969,com.google.android.apps.nbu.files,975,empty #34]
12-26 09:00:45.187 1584 8274 I am_proc_died: [0,10969,com.google.android.apps.nbu.files,975,19]
12-26 09:00:45.187 1584 8274 I am_uid_stopped: 10159
12-26 09:00:45.205 1584 8653 I am_proc_died: [0,12105,com.google.android.apps.maps,975,19]
12-26 09:00:45.206 1584 8653 I am_uid_stopped: 10189
12-26 09:00:45.321 1584 1932 I am_compact: [6778,com.google.android.settings.intelligence,all,226188,156896,66516,4700,-28688,0,-28688,28776,131,1,2700468,905,19,1477180,-23612]
12-26 09:00:45.369 1584 1932 I am_compact: [9306,com.google.android.apps.wellbeing,all,130584,80552,47592,23120,-6652,0,-6652,6652,47,1,2700523,905,19,1453568,-2988]
12-26 09:00:45.399 1584 1932 I am_compact: [17013,com.android.traceur,all,101804,52884,47828,0,-3648,0,-3648,3648,29,0,0,905,19,1450580,-3560]
12-26 09:00:45.476 1584 1932 I am_compact: [5502,com.android.vending,all,183900,123888,55832,21204,-18184,0,-18184,18184,76,3,2720749,905,19,1447020,-17736]
12-26 09:00:45.558 1584 1932 I am_compact: [3629,com.google.android.googlequicksearchbox:search,all,350716,207580,133336,8636,0,0,0,0,16,1,2700490,905,10,1429540,512]
12-26 09:00:45.567 1584 1932 I am_compact: [4718,com.google.android.inputmethod.latin,all,170912,117688,51612,15868,0,0,0,0,9,1,2700561,905,19,1430052,256]
12-26 09:00:45.639 1584 1932 I am_compact: [3827,com.google.android.apps.messaging,all,156056,103672,49856,16924,-8824,0,-8824,9008,71,3,2739486,915,19,1430308,-3452]
12-26 09:00:45.683 1584 1932 I am_compact: [16901,com.google.android.googlequicksearchbox:train,all,203156,146792,55192,0,-8712,0,-8712,8712,44,0,0,915,10,1426912,-3836]
12-26 09:00:45.827 1584 1932 I am_compact: [6778,com.google.android.settings.intelligence,all,202416,156896,42744,29092,0,0,0,0,16,3,2825607,905,19,1434852,768]
12-26 09:00:45.994 1584 1932 I am_compact: [5502,com.android.vending,all,172420,123888,44352,33540,0,0,0,0,14,3,2825762,905,19,1449188,1280]
12-26 09:00:46.734 1584 1932 I am_compact: [9306,com.google.android.apps.wellbeing,all,135784,80680,52616,19644,-11864,0,-11864,11864,69,3,2825655,905,19,1455844,-11260]
12-26 09:00:47.855 1584 3389 I am_kill : [0,16263,com.google.RilConfigService,985,empty #33]
12-26 09:00:47.870 1584 1932 I am_compact: [3827,com.google.android.apps.messaging,all,170336,103672,64112,10788,0,0,0,0,17,3,2825925,905,19,1444840,0]
12-26 09:00:47.891 1584 1851 I am_proc_died: [0,16263,com.google.RilConfigService,985,19]
12-26 09:00:48.778 1584 1932 I am_compact: [3629,com.google.android.googlequicksearchbox:search,file,350716,207580,133336,8636,0,0,0,0,24,3,2825844,700,10,1452008,0]
12-26 09:00:48.795 1584 1932 I am_compact: [16901,com.google.android.googlequicksearchbox:train,file,200688,147740,51716,2068,0,0,0,0,16,3,2825969,700,10,1452008,0]
12-26 09:00:48.806 1584 1932 I am_compact: [2990,android.process.acore,file,107976,61296,45492,5424,0,0,0,0,11,1,2700506,700,10,1452008,0]
12-26 09:00:49.756 1584 1932 I am_compact: [16901,com.google.android.googlequicksearchbox:train,all,200688,147740,51716,2068,0,0,0,0,13,1,2829081,925,10,1453544,0]
12-26 09:00:50.903 1584 1932 I am_compact: [3136,com.google.process.gservices,file,97980,52400,44412,5772,0,0,0,0,58,3,2794544,700,10,1453800,0]
12-26 09:00:51.563 1584 1851 I am_kill : [0,16292,com.google.android.apps.carrier.log,985,empty #33]
12-26 09:00:51.623 1584 3391 I am_proc_died: [0,16292,com.google.android.apps.carrier.log,985,19]
12-26 09:00:51.624 1584 3391 I am_uid_stopped: 10123
12-26 09:00:58.147 1584 1932 I am_compact: [14190,com.google.android.gms,all,244580,176592,65700,7068,-25776,0,-25776,25776,147,1,2714988,905,10,1454312,-24008]
12-26 09:00:59.860 1584 1851 I am_kill : [0,9215,com.google.process.gapps,985,empty #33]
12-26 09:00:59.924 1584 3391 I am_proc_died: [0,9215,com.google.process.gapps,985,19]
12-26 09:00:59.937 1584 1808 I am_pss : [16391,10121,com.android.vending:background,21700608,8671232,0,145096704,0,19,8]
12-26 09:00:59.944 1584 1808 I am_pss : [16474,10148,com.google.android.apps.work.oobconfig,10860544,8728576,0,116056064,0,19,6]
12-26 09:00:59.951 1584 1808 I am_pss : [16475,10132,com.google.android.configupdater,8912896,7434240,0,101543936,0,19,6]
12-26 09:01:12.591 1584 1922 I device_idle_step:
12-26 09:01:12.598 1584 1922 I device_idle: [5,s:early]
12-26 09:01:12.601 1584 1922 I device_idle_on_start:
12-26 09:01:12.602 1584 1922 I device_idle_on_phase: power
12-26 09:01:12.671 1584 1922 I device_idle_on_phase: net
12-26 09:01:12.671 1584 1922 I device_idle_on_complete:
12-26 09:01:12.676 1584 1584 I battery_saving_stats: [0,0,0,30129,0,0,1419696,12000,0]
12-26 09:09:07.602 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:09:07.605 1584 1931 I commit_sys_config_file: [settings-0-0,11]
12-26 09:09:33.195 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:11:14.775 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:11:56.939 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:15:36.238 1584 1931 I commit_sys_config_file: [settings-0-0,3]
12-26 09:26:00.847 1584 1931 I commit_sys_config_file: [settings-0-0,9]
12-26 09:26:00.905 1584 1850 I sysui_multi_action: [757,1696,758,6,759,3]
12-26 09:26:00.906 1584 1584 I screen_toggled: 1
12-26 09:26:00.906 1584 1584 I power_screen_broadcast_send: 1
12-26 09:26:00.912 1584 1809 I am_kill : [0,16086,com.android.remoteprovisioner,985,empty #33]
12-26 09:26:00.944 1584 8274 I am_proc_died: [0,16086,com.android.remoteprovisioner,985,19]
12-26 09:26:00.952 1584 8926 I sysui_multi_action: [757,127,758,1]
12-26 09:26:00.952 1584 8926 I sysui_multi_action: [757,804,799,note_load,801,1,802,1]
12-26 09:26:00.952 1584 8926 I notification_panel_revealed: 1
12-26 09:26:00.952 1584 8926 I wm_set_keyguard_shown: [0,1,0,0,setKeyguardShown]
12-26 09:26:00.954 1584 8274 I am_uid_stopped: 10205
12-26 09:26:01.008 1584 1798 I wm_wallpaper_surface: [0,1,Window{a36b5bf u0 NotificationShade}]
12-26 09:26:01.023 1584 1584 I battery_saving_stats: [0,0,2,1488348,10000,0,329489847,1656000,30]
12-26 09:26:01.034 1584 1810 I am_proc_start: [0,17109,10200,.ShannonImsService,content provider,{com.shannon.imsservice/com.shannon.imsservice.util.contentprovider.ImsContentProvider}]
12-26 09:26:01.043 1584 8653 I sysui_multi_action: [757,803,799,sth_unload_generic_sound_model,802,1]
12-26 09:26:01.061 1584 8653 I am_proc_bound: [0,17109,.ShannonImsService]
12-26 09:26:01.079 1584 1584 I power_screen_broadcast_done: [1,173,1]
12-26 09:26:01.086 1584 1809 I am_uid_active: 10127
12-26 09:26:01.094 1584 1584 I sysui_multi_action: [757,198,758,1,759,1,1359,231,1694,4]
12-26 09:26:01.094 1584 1584 I power_screen_state: [1,0,0,0,231]
12-26 09:26:01.114 1584 1794 I sysui_multi_action: [757,223,758,2]
12-26 09:26:01.114 1584 1794 I sysui_multi_action: [757,804,799,dozing_minutes,801,5103,802,1]
12-26 09:26:01.244 1584 1809 I am_uid_running: 10198
12-26 09:26:01.281 1584 1810 I am_proc_start: [0,17128,10198,com.google.android.uvexposurereporter,broadcast,{com.google.android.uvexposurereporter/com.google.android.uvexposurereporter.UvExposureReporter}]
12-26 09:26:01.312 1584 8653 I am_proc_bound: [0,17128,com.google.android.uvexposurereporter]
12-26 09:26:01.356 1584 8274 I am_kill : [0,14895,com.google.android.gms.unstable,985,empty #33]
12-26 09:26:01.412 1584 8274 I am_proc_died: [0,14895,com.google.android.gms.unstable,985,19]
12-26 09:26:01.481 1584 8274 I sysui_multi_action: [757,128,758,1,793,335381889,794,0,795,335381889,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,0,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,1,1500,306223650,1688,1,1745,2098068913]
12-26 09:26:01.482 1584 8274 I sysui_multi_action: [757,1501,758,1,793,335381890,794,1,795,335381890,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1500,0,1688,1,1745,2098068913]
12-26 09:26:01.482 1584 8274 I sysui_multi_action: [757,804,799,note_interruptive,801,0,802,1]
12-26 09:26:01.482 1584 8274 I sysui_multi_action: [757,804,799,note_freshness,801,335381889,802,1]
12-26 09:26:01.482 1584 8274 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,1,335381889,335381889,0,0]
12-26 09:26:01.511 1584 1931 I commit_sys_config_file: [settings-1-0,7]
12-26 09:26:02.255 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,113504,59992,51944,3220,0,0,0,0,41,1,2823875,700,5,1441668,0]
12-26 09:26:04.090 1584 1931 I commit_sys_config_file: [settings-1-0,14]
12-26 09:26:07.142 1584 1932 I am_compact: [3136,com.google.process.gservices,file,97980,52400,44412,5772,0,0,0,0,51,1,2831188,700,5,1442180,0]
12-26 09:26:08.378 1584 1932 I am_compact: [17109,.ShannonImsService,file,97668,48972,47608,0,0,0,0,0,45,0,0,700,5,1442180,0]
12-26 09:26:08.868 1584 1850 I sysui_multi_action: [757,1696,758,6,759,2]
12-26 09:26:10.870 1584 1850 I power_sleep_requested: 0
12-26 09:26:10.945 1584 1850 I sysui_multi_action: [757,1696,758,6,759,0]
12-26 09:26:11.399 1584 1808 I commit_sys_config_file: [display-state,2819653]
12-26 09:26:11.430 1584 1584 I battery_saving_stats: [0,1,2,10407,0,0,22947,0,0]
12-26 09:26:11.524 1584 1794 I sysui_multi_action: [757,223,758,1]
12-26 09:26:11.540 1584 8926 I wm_set_keyguard_shown: [0,1,1,0,setKeyguardShown]
12-26 09:26:11.547 1584 8935 I sysui_multi_action: [757,128,758,2,793,335391955,794,10066,795,335391955,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,0,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,1,1500,10065,1688,1,1745,2098068913]
12-26 09:26:11.547 1584 8935 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,0,335391955,335391955,0,0]
12-26 09:26:11.568 1584 1850 I sysui_multi_action: [757,1696,758,6,759,1]
12-26 09:26:11.570 1584 1584 I sysui_multi_action: [757,198,758,2,759,3,1359,703,1695,2]
12-26 09:26:11.570 1584 1584 I power_screen_state: [0,3,0,0,703]
12-26 09:26:11.570 1584 1584 I screen_toggled: 0
12-26 09:26:11.570 1584 1584 I sysui_multi_action: [757,804,799,screen_timeout,801,300,802,1]
12-26 09:26:11.570 1584 1584 I sysui_multi_action: [757,1594,758,4,759,-2147483648,1359,10476]
12-26 09:26:11.570 1584 1584 I power_screen_broadcast_send: 1
12-26 09:26:11.582 1584 8926 I sysui_multi_action: [757,127,758,2]
12-26 09:26:11.582 1584 8926 I notification_panel_hidden:
12-26 09:26:11.589 1584 8926 I wm_wallpaper_surface: [0,0,null]
12-26 09:26:11.676 1584 1931 I commit_sys_config_file: [settings-0-0,20]
12-26 09:26:11.710 1584 1584 I power_screen_broadcast_done: [0,140,1]
12-26 09:26:26.522 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:26:37.899 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:26:37.940 1584 1584 I screen_toggled: 1
12-26 09:26:37.940 1584 1584 I power_screen_broadcast_send: 1
12-26 09:26:37.945 1584 1850 I sysui_multi_action: [757,1696,758,6,759,3]
12-26 09:26:37.950 1584 3391 I sysui_multi_action: [757,127,758,1]
12-26 09:26:37.950 1584 3391 I sysui_multi_action: [757,804,799,note_load,801,1,802,1]
12-26 09:26:37.951 1584 3391 I notification_panel_revealed: 1
12-26 09:26:37.952 1584 8274 I wm_set_keyguard_shown: [0,1,0,0,setKeyguardShown]
12-26 09:26:37.996 1584 1798 I wm_wallpaper_surface: [0,1,Window{a36b5bf u0 NotificationShade}]
12-26 09:26:38.029 1584 1584 I battery_saving_stats: [0,0,2,26598,0,0,329516445,1656000,30]
12-26 09:26:38.062 1584 8926 I sysui_multi_action: [757,803,799,sth_unload_generic_sound_model,802,1]
12-26 09:26:38.088 1584 1584 I power_screen_broadcast_done: [1,148,1]
12-26 09:26:38.121 1584 1584 I sysui_multi_action: [757,198,758,1,759,1,1359,206,1694,4]
12-26 09:26:38.121 1584 1584 I power_screen_state: [1,0,0,0,206]
12-26 09:26:38.136 1584 1794 I sysui_multi_action: [757,223,758,2]
12-26 09:26:38.136 1584 1794 I sysui_multi_action: [757,804,799,dozing_minutes,801,0,802,1]
12-26 09:26:38.242 1584 1931 I commit_sys_config_file: [settings-0-0,9]
12-26 09:26:38.461 1584 8934 I sysui_multi_action: [757,128,758,1,793,335418869,794,0,795,335418869,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,0,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,1,1500,36979,1688,1,1745,2098068913]
12-26 09:26:38.461 1584 8934 I sysui_multi_action: [757,1501,758,1,793,335418869,794,0,795,335418869,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1500,0,1688,1,1745,2098068913]
12-26 09:26:38.461 1584 8934 I sysui_multi_action: [757,804,799,note_interruptive,801,0,802,1]
12-26 09:26:38.461 1584 8934 I sysui_multi_action: [757,804,799,note_freshness,801,335418869,802,1]
12-26 09:26:38.462 1584 8934 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,1,335418869,335418869,0,0]
12-26 09:26:40.135 1584 1809 I am_uid_idle: 10201
12-26 09:26:40.135 1584 1809 I am_uid_idle: 10125
12-26 09:26:40.135 1584 1809 I am_uid_idle: 10069
12-26 09:26:40.680 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,114032,59992,52472,3220,0,0,0,0,56,1,2860106,700,5,1442808,0]
12-26 09:26:45.319 1584 1932 I am_compact: [17109,.ShannonImsService,file,97992,49548,47296,0,0,0,0,0,40,1,2866228,700,5,1443832,0]
12-26 09:26:45.918 1584 1850 I sysui_multi_action: [757,1696,758,6,759,2]
12-26 09:26:47.920 1584 1850 I power_sleep_requested: 0
12-26 09:26:47.995 1584 1850 I sysui_multi_action: [757,1696,758,6,759,0]
12-26 09:26:48.432 1584 1808 I commit_sys_config_file: [display-state,2833522]
12-26 09:26:48.478 1584 1584 I battery_saving_stats: [0,1,2,10449,2000,0,33396,2000,0]
12-26 09:26:48.568 1584 1794 I sysui_multi_action: [757,223,758,1]
12-26 09:26:48.581 1584 8323 I wm_set_keyguard_shown: [0,1,1,0,setKeyguardShown]
12-26 09:26:48.584 1584 3589 I sysui_multi_action: [757,128,758,2,793,335428992,794,10123,795,335428992,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,0,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,1,1500,10123,1688,1,1745,2098068913]
12-26 09:26:48.584 1584 3589 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,0,335428992,335428992,0,0]
12-26 09:26:48.602 1584 1850 I sysui_multi_action: [757,1696,758,6,759,1]
12-26 09:26:48.603 1584 1584 I sysui_multi_action: [757,198,758,2,759,3,1359,687,1695,2]
12-26 09:26:48.603 1584 1584 I power_screen_state: [0,3,0,0,687]
12-26 09:26:48.603 1584 1584 I screen_toggled: 0
12-26 09:26:48.603 1584 1584 I sysui_multi_action: [757,804,799,screen_timeout,801,300,802,1]
12-26 09:26:48.603 1584 1584 I sysui_multi_action: [757,1594,758,4,759,-2147483648,1359,10482]
12-26 09:26:48.604 1584 1584 I power_screen_broadcast_send: 1
12-26 09:26:48.618 1584 3589 I sysui_multi_action: [757,127,758,2]
12-26 09:26:48.619 1584 3589 I notification_panel_hidden:
12-26 09:26:48.623 1584 3589 I wm_wallpaper_surface: [0,0,null]
12-26 09:26:48.714 1584 1931 I commit_sys_config_file: [settings-0-0,6]
12-26 09:26:48.718 1584 1584 I power_screen_broadcast_done: [0,115,1]
12-26 09:26:57.124 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:27:33.284 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:27:37.973 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,107708,59992,46148,3216,0,0,0,0,43,1,2875366,700,5,1447088,0]
12-26 09:27:53.344 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:29:29.507 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:29:31.713 1584 1584 I am_kill : [0,16475,com.google.android.configupdater,985,empty #33]
12-26 09:29:31.723 1584 1584 I screen_toggled: 1
12-26 09:29:31.725 1584 1584 I power_screen_broadcast_send: 1
12-26 09:29:31.732 1584 1850 I sysui_multi_action: [757,1696,758,6,759,3]
12-26 09:29:31.754 1584 1808 I am_pss : [17013,10101,com.android.traceur,9151488,4759552,1839104,103694336,0,19,8]
12-26 09:29:31.763 1584 1808 I am_pss : [16817,10116,com.google.android.apps.turbo:aab,11589632,8380416,0,115658752,0,19,7]
12-26 09:29:31.768 1584 8934 I sysui_multi_action: [757,127,758,1]
12-26 09:29:31.768 1584 8934 I sysui_multi_action: [757,804,799,note_load,801,1,802,1]
12-26 09:29:31.769 1584 8934 I notification_panel_revealed: 1
12-26 09:29:31.769 1584 3391 I wm_set_keyguard_shown: [0,1,0,0,setKeyguardShown]
12-26 09:29:31.774 1584 1808 I am_pss : [16916,10201,com.google.android.turboadapter,5579776,3178496,823296,98738176,0,19,7]
12-26 09:29:31.776 1584 1584 I battery_saving_stats: [0,0,2,163298,0,0,329679743,1656000,30]
12-26 09:29:31.777 1584 8641 I am_proc_died: [0,16475,com.google.android.configupdater,985,19]
12-26 09:29:31.779 1584 8641 I am_uid_stopped: 10132
12-26 09:29:31.782 1584 1808 I am_pss : [16802,10266,com.socialnmobile.dictapps.notepad.color.note,11591680,9080832,0,115654656,0,19,7]
12-26 09:29:31.786 1584 1798 I wm_wallpaper_surface: [0,1,Window{a36b5bf u0 NotificationShade}]
12-26 09:29:31.789 1584 1808 I am_pss : [16939,10219,com.google.android.apps.wallpaper,10238976,8712192,0,103202816,0,19,6]
12-26 09:29:31.796 1584 1808 I am_pss : [16872,10079,com.android.providers.calendar,6466560,4755456,0,104980480,0,19,7]
12-26 09:29:31.806 1584 1808 I am_pss : [16426,10146,com.google.android.euicc,15581184,12304384,1347584,120180736,0,19,7]
12-26 09:29:31.818 1584 8926 I sysui_multi_action: [757,803,799,sth_unload_generic_sound_model,802,1]
12-26 09:29:31.847 1584 1584 I power_screen_broadcast_done: [1,122,1]
12-26 09:29:31.919 1584 1584 I sysui_multi_action: [757,198,758,1,759,1,1359,219,1694,4]
12-26 09:29:31.919 1584 1584 I power_screen_state: [1,0,0,0,219]
12-26 09:29:31.934 1584 1794 I sysui_multi_action: [757,223,758,2]
12-26 09:29:31.934 1584 1794 I sysui_multi_action: [757,804,799,dozing_minutes,801,2,802,1]
12-26 09:29:32.032 1584 1931 I commit_sys_config_file: [settings-0-0,11]
12-26 09:29:32.272 1584 8641 I sysui_multi_action: [757,128,758,1,793,335592680,794,0,795,335592680,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,0,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,1,1500,173811,1688,1,1745,2098068913]
12-26 09:29:32.273 1584 8641 I sysui_multi_action: [757,1501,758,1,793,335592681,794,1,795,335592681,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1500,0,1688,1,1745,2098068913]
12-26 09:29:32.273 1584 8641 I sysui_multi_action: [757,804,799,note_interruptive,801,0,802,1]
12-26 09:29:32.273 1584 8641 I sysui_multi_action: [757,804,799,note_freshness,801,335592680,802,1]
12-26 09:29:32.273 1584 8641 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,1,335592680,335592680,0,0]
12-26 09:29:33.064 2172 2172 I sysui_multi_action: [757,197,758,5,759,0]
12-26 09:29:33.070 1584 8641 I wm_set_keyguard_shown: [0,1,0,1,keyguardGoingAway]
12-26 09:29:33.072 1584 8641 I wm_set_resumed_activity: [0,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,resumeTopActivity - onActivityStateChanged]
12-26 09:29:33.074 1584 8641 I wm_resume_activity: [0,39696038,137,com.google.android.apps.nexuslauncher/.NexusLauncherActivity]
12-26 09:29:33.078 2682 2682 I wm_on_restart_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,performRestartActivity]
12-26 09:29:33.079 2682 2682 I wm_on_start_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,handleStartActivity]
12-26 09:29:33.082 2682 2682 I wm_on_resume_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,RESUME_ACTIVITY]
12-26 09:29:33.083 2682 2682 I wm_on_top_resumed_gained_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,topWhenResuming]
12-26 09:29:33.302 2172 2172 I sysui_multi_action: [757,111,758,2]
12-26 09:29:33.304 1584 3391 I am_uid_active: 10145
12-26 09:29:33.311 2172 2172 I sysui_multi_action: [757,196,758,2,759,0]
12-26 09:29:33.311 2172 2172 I sysui_status_bar_state: [0,0,0,0,0,1]
12-26 09:29:33.314 1584 3391 I wm_set_keyguard_shown: [0,0,0,1,setKeyguardShown]
12-26 09:29:33.315 1584 1797 I device_idle: [0,unlocked]
12-26 09:29:33.315 1584 1797 I device_idle_light: [0,unlocked]
12-26 09:29:33.316 1584 1922 I device_idle_off_start: unlocked
12-26 09:29:33.319 1584 1922 I device_idle_off_phase: power
12-26 09:29:33.320 1584 1922 I device_idle_off_phase: net
12-26 09:29:33.321 1584 1922 I device_idle_off_complete:
12-26 09:29:33.332 1584 1797 I user_activity_timeout_override: -1
12-26 09:29:33.336 1584 1584 I battery_saving_stats: [0,1,2,1561,0,0,34957,2000,0]
12-26 09:29:33.344 1584 1999 I netstats_mobile_sample: [0,0,0,0,0,0,0,0,0,0,0,0,1672064973344]
12-26 09:29:33.344 1584 1999 I netstats_wifi_sample: [0,0,0,0,0,0,0,0,0,0,0,0,1672064973344]
12-26 09:29:33.383 2172 2172 I sysui_multi_action: [757,204,758,1,759,0,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,947,0,1745,2098068913]
12-26 09:29:33.540 1584 3391 I am_uid_running: 10182
12-26 09:29:33.569 1584 1810 I am_proc_start: [0,17233,10182,com.android.chrome,service,{com.android.chrome/org.chromium.chrome.browser.customtabs.CustomTabsConnectionService}]
12-26 09:29:33.592 1584 8935 I am_proc_bound: [0,17233,com.android.chrome]
12-26 09:29:36.877 2500 2532 I sysui_multi_action: [757,1371,758,4,854,auto_rotate,1089,0]
12-26 09:29:36.881 1584 2047 I am_uid_active: 10147
12-26 09:29:36.883 1584 2047 I am_uid_active: 10131
12-26 09:29:36.895 2500 8253 I sysui_multi_action: [757,1371,758,4,854,hardware_info_device_model,1089,0]
12-26 09:29:36.900 2500 8253 I sysui_multi_action: [757,1371,758,4,854,ambient_display_always_on,1089,0]
12-26 09:29:36.910 2500 8253 I sysui_multi_action: [757,1371,758,4,854,ambient_display_tap,1089,0]
12-26 09:29:36.921 2500 8253 I sysui_multi_action: [757,1371,758,4,854,ambient_display_notification,1089,0]
12-26 09:29:36.928 2500 8253 I sysui_multi_action: [757,1371,758,4,854,media_volume,1089,0]
12-26 09:29:36.934 2500 2532 I sysui_multi_action: [757,1371,758,4,854,call_volume,1089,0]
12-26 09:29:36.944 2500 2532 I sysui_multi_action: [757,1371,758,4,854,ring_volume,1089,0]
12-26 09:29:36.949 2500 2532 I sysui_multi_action: [757,1371,758,4,854,alarm_volume,1089,0]
12-26 09:29:36.955 2500 2532 I sysui_multi_action: [757,1371,758,4,854,auto_brightness,1089,0]
12-26 09:29:36.959 2500 2532 I sysui_multi_action: [757,1371,758,4,854,gesture_double_twist,1089,0]
12-26 09:29:36.964 2500 2532 I sysui_multi_action: [757,1371,758,4,854,screen_magnification_gestures_preference_screen,1089,0]
12-26 09:29:36.968 2500 2532 I sysui_multi_action: [757,1371,758,4,854,screen_magnification_navbar_preference_screen,1089,0]
12-26 09:29:36.971 2500 2532 I sysui_multi_action: [757,1371,758,4,854,night_display_activated,1089,0]
12-26 09:29:36.975 2500 2532 I sysui_multi_action: [757,1371,758,4,854,night_display_temperature,1089,0]
12-26 09:29:36.979 2500 2532 I sysui_multi_action: [757,1371,758,4,854,smart_battery,1089,0]
12-26 09:29:36.982 2500 2532 I sysui_multi_action: [757,1371,758,4,854,gesture_double_tap_power,1089,0]
12-26 09:29:36.985 2500 2532 I sysui_multi_action: [757,1371,758,4,854,toggle_nfc,1089,0]
12-26 09:29:36.989 2500 2532 I sysui_multi_action: [757,1371,758,4,854,nfc_secure_settings,1089,0]
12-26 09:29:36.992 2500 2532 I sysui_multi_action: [757,1371,758,4,854,gesture_pick_up,1089,0]
12-26 09:29:36.996 2500 2532 I sysui_multi_action: [757,1371,758,4,854,gesture_tap,1089,0]
12-26 09:29:36.999 2500 2532 I sysui_multi_action: [757,1371,758,4,854,os_firmware_version,1089,0]
12-26 09:29:37.002 2500 2532 I sysui_multi_action: [757,1371,758,4,854,gesture_tap_screen_input_summary,1089,0]
12-26 09:29:37.025 2500 2532 I sysui_multi_action: [757,1371,758,4,854,airplane_mode,1089,0]
12-26 09:29:37.030 2500 2532 I sysui_multi_action: [757,1371,758,4,854,battery_saver,1089,0]
12-26 09:29:37.871 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,107972,59992,46412,3216,0,0,0,0,30,1,2889408,700,5,1497796,0]
12-26 09:29:39.129 1584 1932 I am_compact: [17109,.ShannonImsService,file,97992,49548,47296,0,0,0,0,0,43,1,2880005,700,5,1497796,0]
12-26 09:29:39.673 1584 1932 I am_compact: [9306,com.google.android.apps.wellbeing,file,352208,276608,73052,11804,0,0,0,0,52,3,2827020,700,3,1497796,0]
12-26 09:29:39.725 1584 1932 I am_compact: [3136,com.google.process.gservices,file,97980,52400,44412,5772,0,0,0,0,33,1,2864992,700,5,1497796,0]
12-26 09:29:43.105 1584 1932 I am_compact: [2500,com.android.settings,file,245328,179052,64240,64924,0,0,0,0,45,3,2824441,700,5,1497796,0]
12-26 09:29:43.128 1584 1932 I am_compact: [6026,com.google.android.apps.security.securityhub,file,106012,58480,46280,3940,0,0,0,0,22,1,2703503,700,5,1497796,0]
12-26 09:29:45.708 1584 1942 I sysui_multi_action: [757,804,799,power_consecutive_short_tap_count,801,1,802,1]
12-26 09:29:45.709 1584 1942 I sysui_multi_action: [757,804,799,power_double_tap_interval,801,2906150,802,1]
12-26 09:29:45.710 1584 1942 I intercept_power: [ACTION_DOWN,0,1]
12-26 09:29:45.925 1584 1942 I intercept_power: [ACTION_UP,0,0]
12-26 09:29:45.933 1584 1584 I power_sleep_requested: 0
12-26 09:29:45.979 1584 1808 I am_pss : [2682,10218,com.google.android.apps.nexuslauncher,131238912,92823552,23326720,263299072,0,2,17]
12-26 09:29:45.985 1584 1850 I sysui_multi_action: [757,1696,758,6,759,0]
12-26 09:29:46.397 1584 1850 I wm_pause_activity: [0,39696038,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,userLeaving=false,sleep]
12-26 09:29:46.397 2682 2682 I wm_on_top_resumed_lost_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,topStateChangedWhenResumed]
12-26 09:29:46.400 2682 2682 I wm_on_paused_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,performPause]
12-26 09:29:46.402 1584 8641 I wm_add_to_stopping: [0,39696038,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,completePauseLocked]
12-26 09:29:46.404 1584 3589 I sysui_multi_action: [757,128,758,2,793,335606811,794,14131,795,335606811,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,0,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,1,1500,14130,1688,1,1745,2098068913]
12-26 09:29:46.404 1584 3589 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,0,335606811,335606811,0,0]
12-26 09:29:46.405 1584 1794 I sysui_multi_action: [757,803,799,window_time_0,802,335648]
12-26 09:29:46.405 1584 8641 I wm_wallpaper_surface: [0,0,null]
12-26 09:29:46.409 1584 1797 I wm_stop_activity: [0,39696038,com.google.android.apps.nexuslauncher/.NexusLauncherActivity]
12-26 09:29:46.414 1584 1798 I input_focus: [Requesting to set focus to null window,reason=UpdateInputWindows]
12-26 09:29:46.434 2682 2682 I wm_on_stop_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,STOP_ACTIVITY_ITEM]
12-26 09:29:46.443 1584 8641 I sysui_multi_action: [757,127,758,2]
12-26 09:29:46.443 1584 8641 I notification_panel_hidden:
12-26 09:29:46.445 1584 1820 I service_manager_stats: [100,102,706147]
12-26 09:29:46.450 1584 1808 I commit_sys_config_file: [display-state,2857299]
12-26 09:29:46.454 1584 1584 I battery_saving_stats: [0,1,0,13117,2000,0,25870,10000,0]
12-26 09:29:46.468 2172 2172 I sysui_multi_action: [757,204,758,2,759,0,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,947,0,1745,2098068913]
12-26 09:29:46.562 1584 1941 I input_focus: [Focus leaving a36b5bf NotificationShade (server),reason=NO_WINDOW]
12-26 09:29:46.565 1584 1794 I sysui_multi_action: [757,223,758,1]
12-26 09:29:46.583 2172 2172 I sysui_multi_action: [757,111,758,1]
12-26 09:29:46.583 2172 2172 I sysui_multi_action: [757,126,758,1,759,126,927,0,928,1,1593,0]
12-26 09:29:46.583 2172 2172 I sysui_multi_action: [757,113,758,1,759,113,927,1,928,1,1593,0]
12-26 09:29:46.583 2172 2172 I sysui_multi_action: [757,118,758,1,759,118,927,2,928,0,1593,0]
12-26 09:29:46.583 2172 2172 I sysui_multi_action: [757,0,758,1,759,0,927,3,1593,0]
12-26 09:29:46.585 1584 3391 I wm_set_keyguard_shown: [0,0,1,0,setKeyguardShown]
12-26 09:29:46.588 2172 2172 I sysui_multi_action: [757,196,758,2,759,0]
12-26 09:29:46.588 2172 2172 I sysui_status_bar_state: [1,0,0,0,0,1]
12-26 09:29:46.597 1584 3391 I sysui_multi_action: [757,127,758,1]
12-26 09:29:46.597 1584 3391 I sysui_multi_action: [757,804,799,note_load,801,1,802,1]
12-26 09:29:46.597 1584 3391 I notification_panel_revealed: 1
12-26 09:29:46.603 1584 1850 I sysui_multi_action: [757,1696,758,6,759,1]
12-26 09:29:46.604 1584 1584 I sysui_multi_action: [757,198,758,2,759,2,1359,900,1695,4]
12-26 09:29:46.604 1584 1584 I power_screen_state: [0,2,0,0,900]
12-26 09:29:46.604 1584 1584 I screen_toggled: 0
12-26 09:29:46.604 1584 1584 I sysui_multi_action: [757,804,799,screen_timeout,801,300,802,1]
12-26 09:29:46.604 1584 1584 I sysui_multi_action: [757,1594,758,4,759,-2147483648,1359,14685]
12-26 09:29:46.605 1584 1584 I power_screen_broadcast_send: 1
12-26 09:29:46.628 1584 8641 I wm_set_keyguard_shown: [0,1,1,0,setKeyguardShown]
12-26 09:29:46.637 2172 2172 I sysui_multi_action: [757,196,758,1,759,0]
12-26 09:29:46.637 2172 2172 I sysui_status_bar_state: [1,1,0,0,0,1]
12-26 09:29:46.648 1584 1797 I user_activity_timeout_override: 10000
12-26 09:29:46.649 1584 1798 I input_focus: [Focus request a36b5bf NotificationShade,reason=UpdateInputWindows]
12-26 09:29:46.651 1584 1584 I device_idle: [1,no activity]
12-26 09:29:46.651 1584 1584 I device_idle_light: [1,no activity]
12-26 09:29:46.662 1584 1798 I wm_wallpaper_surface: [0,1,Window{a36b5bf u0 NotificationShade}]
12-26 09:29:46.663 1584 8934 I sysui_multi_action: [757,127,758,2]
12-26 09:29:46.663 1584 8934 I notification_panel_hidden:
12-26 09:29:46.676 1584 1941 I input_focus: [Focus entering a36b5bf NotificationShade (server),reason=Window became focusable. Previous reason: NOT_VISIBLE]
12-26 09:29:46.681 1584 3391 I wm_wallpaper_surface: [0,0,null]
12-26 09:29:46.686 1584 1931 I commit_sys_config_file: [settings-0-0,15]
12-26 09:29:46.720 1584 1584 I power_screen_broadcast_done: [0,116,1]
12-26 09:29:46.965 1584 1932 I am_compact: [3629,com.google.android.googlequicksearchbox:search,all,393616,255576,128068,7800,-93540,-264,-93276,93276,264,1,2829064,905,10,1505732,-87960]
12-26 09:29:51.747 1584 1584 I screen_toggled: 1
12-26 09:29:51.748 1584 1584 I power_screen_broadcast_send: 1
12-26 09:29:51.756 1584 1850 I sysui_multi_action: [757,1696,758,6,759,3]
12-26 09:29:51.763 1584 8641 I sysui_multi_action: [757,127,758,1]
12-26 09:29:51.763 1584 8641 I sysui_multi_action: [757,804,799,note_load,801,1,802,1]
12-26 09:29:51.763 1584 8641 I notification_panel_revealed: 1
12-26 09:29:51.764 1584 8641 I wm_set_keyguard_shown: [0,1,0,0,setKeyguardShown]
12-26 09:29:51.807 1584 1798 I wm_wallpaper_surface: [0,1,Window{a36b5bf u0 NotificationShade}]
12-26 09:29:51.815 1584 1584 I battery_saving_stats: [0,0,0,5362,0,0,1425058,12000,0]
12-26 09:29:51.870 1584 3394 I sysui_multi_action: [757,803,799,sth_unload_generic_sound_model,802,1]
12-26 09:29:51.898 1584 1584 I power_screen_broadcast_done: [1,150,1]
12-26 09:29:51.911 1584 1932 I am_compact: [14190,com.google.android.gms,all,229116,176784,50044,24168,-5584,0,-5584,5584,29,3,2838433,905,10,1476068,-5632]
12-26 09:29:51.930 1584 1584 I sysui_multi_action: [757,198,758,1,759,1,1359,199,1694,4]
12-26 09:29:51.930 1584 1584 I power_screen_state: [1,0,0,0,199]
12-26 09:29:51.949 1584 1794 I sysui_multi_action: [757,223,758,2]
12-26 09:29:51.949 1584 1794 I sysui_multi_action: [757,804,799,dozing_minutes,801,0,802,1]
12-26 09:29:52.067 1584 1931 I commit_sys_config_file: [settings-0-0,9]
12-26 09:29:52.274 1584 2227 I sysui_multi_action: [757,128,758,1,793,335612682,794,0,795,335612682,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,0,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,1,1500,20001,1688,1,1745,2098068913]
12-26 09:29:52.274 1584 2227 I sysui_multi_action: [757,1501,758,1,793,335612682,794,0,795,335612682,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1500,0,1688,1,1745,2098068913]
12-26 09:29:52.274 1584 2227 I sysui_multi_action: [757,804,799,note_interruptive,801,0,802,1]
12-26 09:29:52.275 1584 2227 I sysui_multi_action: [757,804,799,note_freshness,801,335612682,802,1]
12-26 09:29:52.275 1584 2227 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,1,335612682,335612682,0,0]
12-26 09:29:52.323 1584 1931 I commit_sys_config_file: [settings-1-0,9]
12-26 09:29:52.475 1584 1584 I device_idle: [0,motion]
12-26 09:29:52.475 1584 1584 I device_idle: [1,no activity]
12-26 09:29:53.229 1584 8926 I wm_set_keyguard_shown: [0,1,0,1,keyguardGoingAway]
12-26 09:29:53.230 1584 8926 I wm_set_resumed_activity: [0,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,resumeTopActivity - onActivityStateChanged]
12-26 09:29:53.232 1584 8926 I wm_resume_activity: [0,39696038,137,com.google.android.apps.nexuslauncher/.NexusLauncherActivity]
12-26 09:29:53.234 2682 2682 I wm_on_restart_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,performRestartActivity]
12-26 09:29:53.235 2682 2682 I wm_on_start_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,handleStartActivity]
12-26 09:29:53.238 2682 2682 I wm_on_resume_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,RESUME_ACTIVITY]
12-26 09:29:53.238 2682 2682 I wm_on_top_resumed_gained_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,topWhenResuming]
12-26 09:29:53.274 1584 2227 I wm_set_keyguard_shown: [0,0,0,1,setKeyguardShown]
12-26 09:29:53.274 1584 1797 I device_idle: [0,unlocked]
12-26 09:29:53.274 1584 1797 I device_idle_light: [0,unlocked]
12-26 09:29:53.275 1584 1922 I device_idle_off_start: unlocked
12-26 09:29:53.275 1584 1922 I device_idle_off_complete:
12-26 09:29:53.283 2172 2172 I sysui_multi_action: [757,196,758,2,759,0]
12-26 09:29:53.283 2172 2172 I sysui_status_bar_state: [1,0,0,0,0,1]
12-26 09:29:53.287 2172 2172 I sysui_multi_action: [757,111,758,2]
12-26 09:29:53.290 1584 8934 I sysui_multi_action: [757,128,758,2,793,335613698,794,1016,795,335613698,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,0,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,1,1500,1016,1688,1,1745,2098068913]
12-26 09:29:53.290 1584 8934 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,0,335613698,335613698,0,0]
12-26 09:29:53.290 2172 2172 I sysui_multi_action: [757,196,758,2,759,0]
12-26 09:29:53.291 2172 2172 I sysui_status_bar_state: [0,0,0,0,0,1]
12-26 09:29:53.305 1584 1797 I user_activity_timeout_override: -1
12-26 09:29:53.309 1584 1798 I input_focus: [Focus request f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity,reason=UpdateInputWindows]
12-26 09:29:53.311 1584 1941 I input_focus: [Focus leaving a36b5bf NotificationShade (server),reason=setFocusedWindow]
12-26 09:29:53.312 1584 1941 I input_focus: [Focus entering f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server),reason=setFocusedWindow]
12-26 09:29:53.316 1584 8935 I am_uid_active: 10187
12-26 09:29:53.331 1584 3391 I sysui_multi_action: [757,127,758,2]
12-26 09:29:53.331 1584 3391 I notification_panel_hidden:
12-26 09:29:53.531 1584 8926 I am_uid_active: 10069
12-26 09:29:53.878 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,108244,59992,46684,3216,0,0,0,0,15,1,2898316,700,5,1507812,0]
12-26 09:29:53.975 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), c5ec6a2 com.android.systemui.wallpapers.ImageWallpaper (server), PointerEventDispatcher0 (server),
12-26 09:29:55.953 1584 1796 I commit_sys_config_file: [jobs,21]
12-26 09:29:55.978 1584 8934 I sysui_multi_action: [757,127,758,1]
12-26 09:29:55.979 1584 8934 I sysui_multi_action: [757,804,799,note_load,801,1,802,1]
12-26 09:29:55.979 1584 8934 I notification_panel_revealed: 1
12-26 09:29:55.993 1584 1798 I input_focus: [Focus request a36b5bf NotificationShade,reason=UpdateInputWindows]
12-26 09:29:56.006 1584 1941 I input_focus: [Focus leaving f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server),reason=Waiting for window because NOT_VISIBLE]
12-26 09:29:56.009 1584 1941 I input_focus: [Focus entering a36b5bf NotificationShade (server),reason=Window became focusable. Previous reason: NOT_VISIBLE]
12-26 09:29:56.012 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), c5ec6a2 com.android.systemui.wallpapers.ImageWallpaper (server), a36b5bf NotificationShade (server), PointerEventDispatcher0 (server),
12-26 09:29:56.012 2682 2682 I view_enqueue_input_event: [Motion - Cancel,com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity]
12-26 09:29:56.016 1584 1941 I input_interaction: Interaction with: c5ec6a2 com.android.systemui.wallpapers.ImageWallpaper (server), a36b5bf NotificationShade (server), PointerEventDispatcher0 (server),
12-26 09:29:56.016 2172 2172 I sysui_multi_action: [757,803,799,panel_open,802,1]
12-26 09:29:56.017 2172 2172 I sysui_multi_action: [757,1328,758,4,1326,4,1327,54,1329,0]
12-26 09:29:56.628 1584 1798 I input_focus: [Focus request f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity,reason=UpdateInputWindows]
12-26 09:29:56.639 1584 1941 I input_focus: [Focus leaving a36b5bf NotificationShade (server),reason=setFocusedWindow]
12-26 09:29:56.639 1584 1941 I input_focus: [Focus entering f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server),reason=setFocusedWindow]
12-26 09:29:57.485 1584 1798 I input_focus: [Focus request a36b5bf NotificationShade,reason=UpdateInputWindows]
12-26 09:29:57.494 1584 1941 I input_focus: [Focus leaving f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server),reason=Waiting for window because NOT_FOCUSABLE]
12-26 09:29:57.494 1584 1941 I input_focus: [Focus entering a36b5bf NotificationShade (server),reason=Window became focusable. Previous reason: NOT_FOCUSABLE]
12-26 09:29:57.995 2172 2172 I view_enqueue_input_event: [Motion - Cancel,NotificationShade]
12-26 09:29:58.080 1584 1798 I input_focus: [Focus request f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity,reason=UpdateInputWindows]
12-26 09:29:58.086 1584 8934 I sysui_multi_action: [757,127,758,2]
12-26 09:29:58.086 1584 8934 I notification_panel_hidden:
12-26 09:29:58.090 1584 1941 I input_focus: [Focus leaving a36b5bf NotificationShade (server),reason=setFocusedWindow]
12-26 09:29:58.090 1584 1941 I input_focus: [Focus entering f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server),reason=setFocusedWindow]
12-26 09:29:58.499 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), c5ec6a2 com.android.systemui.wallpapers.ImageWallpaper (server), PointerEventDispatcher0 (server),
12-26 09:29:59.138 1584 1932 I am_compact: [17109,.ShannonImsService,file,97992,49548,47296,0,0,0,0,0,24,1,2899575,700,5,1508068,0]
12-26 09:29:59.493 1584 1932 I am_compact: [3136,com.google.process.gservices,file,97980,52400,44412,5772,0,0,0,0,26,1,2900171,700,7,1508068,0]
12-26 09:29:59.597 1584 1932 I am_compact: [2990,android.process.acore,file,109052,61400,46464,4728,0,0,0,0,28,1,2829092,700,7,1508068,0]
12-26 09:30:01.177 1584 1931 I commit_sys_config_file: [settings-1-0,9]
12-26 09:30:08.486 1584 1932 I am_compact: [2500,com.android.settings,all,195628,130076,63612,9432,-25064,0,-25064,25064,126,1,2903551,905,15,1508324,-24580]
12-26 09:30:08.602 1584 1932 I am_compact: [9306,com.google.android.apps.wellbeing,all,155444,80568,72328,4076,-31792,0,-31792,31792,115,1,2900119,905,15,1483744,-26824]
12-26 09:30:12.024 1584 1808 I am_pss : [17233,10182,com.android.chrome,26392576,23027712,0,131108864,0,19,24]
12-26 09:30:12.038 1584 1808 I am_pss : [17128,10198,com.google.android.uvexposurereporter,6232064,4759552,0,96894976,0,19,11]
12-26 09:30:21.125 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), PointerEventDispatcher0 (server),
12-26 09:30:22.189 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), c5ec6a2 com.android.systemui.wallpapers.ImageWallpaper (server), PointerEventDispatcher0 (server),
12-26 09:30:37.063 1584 1809 I am_uid_idle: 10147
12-26 09:30:39.620 1584 1809 I am_uid_idle: 10145
12-26 09:30:41.007 1584 1932 I am_compact: [3136,com.google.process.gservices,file,97980,52400,44412,5772,0,0,0,0,23,1,2918550,700,5,1462808,0]
12-26 09:30:43.069 1584 1809 I am_uid_idle: 10131
12-26 09:30:53.653 1584 1808 I am_pss : [2682,10218,com.google.android.apps.nexuslauncher,166443008,128622592,22155264,299761664,0,2,48]
12-26 09:30:53.874 1584 1809 I am_uid_idle: 10116
12-26 09:30:59.574 1584 1809 I am_uid_idle: 10069
12-26 09:31:11.991 1584 1809 I am_uid_idle: 10127
12-26 09:31:22.649 1584 1932 I am_compact: [3136,com.google.process.gservices,file,97980,52400,44412,5772,0,0,0,0,37,1,2960065,700,5,1482776,0]
12-26 09:31:35.634 14190 15095 I aggregation: 1672065095634
12-26 09:31:41.767 1584 1932 I am_compact: [3136,com.google.process.gservices,file,97980,52400,44412,5772,0,0,0,0,33,1,3001707,700,5,1483800,0]
12-26 09:31:59.570 1584 1808 I am_pss : [2682,10218,com.google.android.apps.nexuslauncher,166471680,128651264,22155264,299790336,0,2,47]
12-26 09:32:52.293 1584 8934 I am_uid_active: 10116
12-26 09:32:52.541 1584 1931 I commit_sys_config_file: [settings-0-0,22]
12-26 09:32:58.377 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,108708,59992,47148,3144,0,0,0,0,36,1,2912936,700,5,1484312,0]
12-26 09:33:07.960 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,108708,59992,47148,3144,0,0,0,0,13,1,3097435,700,10,1484312,0]
12-26 09:33:52.407 1584 1808 I am_pss : [2682,10218,com.google.android.apps.nexuslauncher,166508544,128688128,22155264,299827200,0,2,24]
12-26 09:33:52.603 1584 1931 I commit_sys_config_file: [settings-0-0,19]
12-26 09:33:58.447 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,108708,59992,47148,3144,0,0,0,0,36,1,3107017,700,5,1484568,0]
12-26 09:34:41.032 1584 1932 I am_compact: [3136,com.google.process.gservices,file,98224,52400,44656,5604,0,0,0,0,35,1,3020825,700,5,1484568,0]
12-26 09:34:58.411 1584 1809 I am_uid_idle: 10116
12-26 09:35:15.797 1584 1850 I sysui_multi_action: [757,1696,758,6,759,2]
12-26 09:35:22.794 1584 1850 I power_sleep_requested: 0
12-26 09:35:22.805 1584 1584 I am_kill : [0,16474,com.google.android.apps.work.oobconfig,999,empty #33]
12-26 09:35:22.837 1584 1808 I am_pss : [5646,10116,com.google.android.apps.turbo,12817408,6918144,2469888,115486720,0,19,7]
12-26 09:35:22.850 1584 1850 I sysui_multi_action: [757,1696,758,6,759,0]
12-26 09:35:22.852 1584 8641 I am_proc_died: [0,16474,com.google.android.apps.work.oobconfig,999,19]
12-26 09:35:22.852 1584 8641 I am_uid_stopped: 10148
12-26 09:35:22.857 1584 1808 I am_pss : [17109,10200,.ShannonImsService,6631424,4079616,0,102219776,0,19,7]
12-26 09:35:22.870 1584 1808 I am_pss : [17233,10182,com.android.chrome,26450944,23027712,0,131108864,0,19,8]
12-26 09:35:22.872 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,all,108716,59992,47156,3140,-6476,0,-6476,6476,61,1,3157505,905,15,1484568,-6716]
12-26 09:35:22.882 1584 1808 I am_pss : [16901,10160,com.google.android.googlequicksearchbox:train,48974848,12500992,1081344,210698240,0,19,10]
12-26 09:35:22.890 1584 1808 I am_pss : [17128,10198,com.google.android.uvexposurereporter,6254592,4759552,0,96894976,0,19,7]
12-26 09:35:22.897 1584 1808 I am_pss : [17013,10101,com.android.traceur,11052032,7630848,1826816,103706624,0,19,6]
12-26 09:35:22.900 1584 1932 I am_compact: [17109,.ShannonImsService,all,97992,49548,47296,0,-3676,0,-3676,3676,28,1,2918195,915,15,1477852,-3244]
12-26 09:35:22.906 1584 1808 I am_pss : [16817,10116,com.google.android.apps.turbo:aab,11587584,8380416,0,115658752,0,19,7]
12-26 09:35:22.913 1584 1808 I am_pss : [16916,10201,com.google.android.turboadapter,5578752,3178496,823296,98738176,0,19,7]
12-26 09:35:22.923 1584 1808 I am_pss : [16802,10266,com.socialnmobile.dictapps.notepad.color.note,12112896,10113024,0,115654656,0,19,7]
12-26 09:35:22.931 1584 1808 I am_pss : [16939,10219,com.google.android.apps.wallpaper,10238976,8712192,0,103202816,0,19,6]
12-26 09:35:22.934 1584 1932 I am_compact: [2990,android.process.acore,all,109012,61528,46296,4724,-4568,0,-4568,4568,34,1,2918655,985,15,1474608,-4148]
12-26 09:35:22.938 1584 1808 I am_pss : [16872,10079,com.android.providers.calendar,6481920,4771840,0,104996864,0,19,6]
12-26 09:35:23.085 1584 1932 I am_compact: [3304,com.google.android.as,all,215040,135084,75408,38060,-37412,0,-37412,37412,151,3,2456579,100,5,1470460,-31688]
12-26 09:35:23.099 1584 1932 I am_compact: [2503,com.google.android.ext.services,all,91256,46428,43676,3684,0,0,0,0,14,3,2456596,100,5,1438772,0]
12-26 09:35:23.266 2682 2682 I wm_on_top_resumed_lost_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,topStateChangedWhenResumed]
12-26 09:35:23.266 1584 1850 I wm_pause_activity: [0,39696038,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,userLeaving=false,sleep]
12-26 09:35:23.268 2682 2682 I wm_on_paused_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,performPause]
12-26 09:35:23.269 1584 3389 I wm_add_to_stopping: [0,39696038,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,completePauseLocked]
12-26 09:35:23.273 1584 1794 I sysui_multi_action: [757,803,799,window_time_0,802,337]
12-26 09:35:23.274 1584 3389 I wm_wallpaper_surface: [0,0,null]
12-26 09:35:23.275 1584 1941 I input_focus: [Focus leaving f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server),reason=NOT_VISIBLE]
12-26 09:35:23.277 1584 1798 I input_focus: [Requesting to set focus to null window,reason=UpdateInputWindows]
12-26 09:35:23.278 1584 1797 I wm_stop_activity: [0,39696038,com.google.android.apps.nexuslauncher/.NexusLauncherActivity]
12-26 09:35:23.306 2682 2682 I wm_on_stop_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,STOP_ACTIVITY_ITEM]
12-26 09:35:23.310 1584 1808 I commit_sys_config_file: [display-state,3192771]
12-26 09:35:23.344 1584 1584 I battery_saving_stats: [0,1,0,331529,12000,0,357399,22000,0]
12-26 09:35:23.349 1584 3589 I am_uid_active: 10116
12-26 09:35:23.438 1584 1794 I sysui_multi_action: [757,223,758,1]
12-26 09:35:23.444 2172 2172 I service_manager_stats: [200,143,3242501]
12-26 09:35:23.448 2172 2172 I sysui_multi_action: [757,111,758,1]
12-26 09:35:23.448 2172 2172 I sysui_multi_action: [757,126,758,1,759,126,927,0,928,1,1593,0]
12-26 09:35:23.448 2172 2172 I sysui_multi_action: [757,113,758,1,759,113,927,1,928,1,1593,0]
12-26 09:35:23.448 2172 2172 I sysui_multi_action: [757,118,758,1,759,118,927,2,928,0,1593,0]
12-26 09:35:23.448 2172 2172 I sysui_multi_action: [757,0,758,1,759,0,927,3,1593,0]
12-26 09:35:23.450 1584 2228 I wm_set_keyguard_shown: [0,0,1,0,setKeyguardShown]
12-26 09:35:23.450 2172 2172 I sysui_multi_action: [757,196,758,2,759,0]
12-26 09:35:23.450 2172 2172 I sysui_status_bar_state: [1,0,0,0,0,1]
12-26 09:35:23.453 1584 1932 I am_compact: [13199,com.google.android.gms.persistent,all,254720,162992,87608,11592,-48736,0,-48736,48968,181,3,2456060,100,3,1438772,-32212]
12-26 09:35:23.455 1584 3589 I sysui_multi_action: [757,127,758,1]
12-26 09:35:23.455 1584 3589 I sysui_multi_action: [757,804,799,note_load,801,1,802,1]
12-26 09:35:23.455 1584 3589 I notification_panel_revealed: 1
12-26 09:35:23.459 1584 1850 I sysui_multi_action: [757,1696,758,6,759,1]
12-26 09:35:23.459 1584 1584 I sysui_multi_action: [757,198,758,2,759,3,1359,670,1695,2]
12-26 09:35:23.459 1584 1584 I power_screen_state: [0,3,0,0,670]
12-26 09:35:23.459 1584 1584 I screen_toggled: 0
12-26 09:35:23.459 1584 1584 I sysui_multi_action: [757,804,799,screen_timeout,801,300,802,1]
12-26 09:35:23.459 1584 1584 I sysui_multi_action: [757,1594,758,4,759,-2147483648,1359,331529]
12-26 09:35:23.460 1584 1584 I power_screen_broadcast_send: 1
12-26 09:35:23.478 1584 2227 I sysui_multi_action: [757,127,758,2]
12-26 09:35:23.478 1584 2227 I notification_panel_hidden:
12-26 09:35:23.484 1584 1798 I input_focus: [Focus request a36b5bf NotificationShade,reason=UpdateInputWindows]
12-26 09:35:23.492 1584 1941 I input_focus: [Focus entering a36b5bf NotificationShade (server),reason=Window became focusable. Previous reason: NOT_FOCUSABLE]
12-26 09:35:23.507 1584 1584 I device_idle: [1,no activity]
12-26 09:35:23.507 1584 1584 I device_idle_light: [1,no activity]
12-26 09:35:23.534 1584 1932 I am_compact: [3318,com.google.android.googlequicksearchbox:interactor,all,301508,226628,71728,193108,-20084,0,-20084,20092,81,3,2456147,100,3,1406708,-16172]
12-26 09:35:23.541 1584 1809 I am_wtf : [0,1584,system_server,-1,JobScheduler.JobStatus,App com.google.android.inputmethod.latin became active but still in NEVER bucket]
12-26 09:35:23.562 1584 1932 I am_compact: [14190,com.google.android.gms,all,228856,176784,49768,24968,-4148,0,-4148,4204,28,3,2910969,905,10,1391008,1588]
12-26 09:35:23.564 1584 1931 I commit_sys_config_file: [settings-0-0,2]
12-26 09:35:23.578 1584 1584 I power_screen_broadcast_done: [0,118,1]
12-26 09:35:23.647 1584 1809 I am_uid_active: 10127
12-26 09:35:23.653 1584 1809 I am_wtf : [0,1584,system_server,-1,JobScheduler.JobStatus,App com.google.android.inputmethod.latin became active but still in NEVER bucket]
12-26 09:35:23.701 1584 1932 I am_compact: [3629,com.google.android.googlequicksearchbox:search,all,348228,255608,82648,58440,-46772,0,-46772,46760,139,3,2907411,905,10,1392852,-22528]
12-26 09:35:23.726 1584 1809 I am_wtf : [0,1584,system_server,-1,JobScheduler.JobStatus,App com.google.android.inputmethod.latin became active but still in NEVER bucket]
12-26 09:35:23.801 1584 1809 I am_wtf : [0,1584,system_server,-1,JobScheduler.JobStatus,App com.google.android.inputmethod.latin became active but still in NEVER bucket]
12-26 09:35:23.887 1584 1809 I am_wtf : [0,1584,system_server,-1,JobScheduler.JobStatus,App com.google.android.inputmethod.latin became active but still in NEVER bucket]
12-26 09:35:23.974 1584 1809 I am_wtf : [0,1584,system_server,-1,JobScheduler.JobStatus,App com.google.android.inputmethod.latin became active but still in NEVER bucket]
12-26 09:35:24.066 1584 1809 I am_wtf : [0,1584,system_server,-1,JobScheduler.JobStatus,App com.google.android.inputmethod.latin became active but still in NEVER bucket]
12-26 09:35:24.067 1584 1809 I am_wtf : [0,1584,system_server,-1,JobScheduler.JobStatus,App com.google.android.inputmethod.latin became active but still in NEVER bucket]
12-26 09:35:24.068 1584 1809 I am_wtf : [0,1584,system_server,-1,JobScheduler.JobStatus,App com.google.android.inputmethod.latin became active but still in NEVER bucket]
12-26 09:35:24.068 1584 1809 I am_wtf : [0,1584,system_server,-1,JobScheduler.JobStatus,App com.google.android.inputmethod.latin became active but still in NEVER bucket]
12-26 09:35:24.453 1584 1931 I commit_sys_config_file: [settings-0-0,14]
12-26 09:35:28.268 1584 2675 I wm_set_keyguard_shown: [0,1,1,0,setKeyguardShown]
12-26 09:35:28.285 2172 2172 I sysui_multi_action: [757,196,758,1,759,0]
12-26 09:35:28.285 2172 2172 I sysui_status_bar_state: [1,1,0,0,0,1]
12-26 09:35:28.296 1584 1797 I user_activity_timeout_override: 10000
12-26 09:36:35.236 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:36:57.711 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:36:58.228 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,103900,59992,42340,8460,0,0,0,0,34,3,3241929,700,5,1377340,0]
12-26 09:39:45.425 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:39:45.434 1584 1922 I device_idle_light_step:
12-26 09:39:45.435 1584 1922 I device_idle_light: [4,s:alarm]
12-26 09:39:45.437 1584 1922 I device_idle_on_start:
12-26 09:39:45.463 1584 1922 I device_idle_on_phase: net
12-26 09:39:45.463 1584 1922 I device_idle_on_complete:
12-26 09:39:45.464 1584 1584 I battery_saving_stats: [0,0,0,262120,0,0,1687178,12000,0]
12-26 09:40:37.530 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:40:55.195 1584 1808 I am_pss : [17109,10200,.ShannonImsService,6631424,315392,3764224,98455552,0,19,26]
12-26 09:40:55.230 1584 1808 I am_pss : [16901,10160,com.google.android.googlequicksearchbox:train,48974848,12500992,1081344,210698240,0,19,30]
12-26 09:41:20.589 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:41:20.615 1584 1808 I am_pss : [2682,10218,com.google.android.apps.nexuslauncher,100226048,62365696,22151168,233504768,0,5,16]
12-26 09:42:02.757 459 459 I auditd : avc: denied { find } for pid=1083 uid=1080 name=android.frameworks.stats.IStats/default scontext=u:r:hal_contexthub_default:s0 tcontext=u:object_r:fwk_stats_service:s0 tclass=service_manager permissive=0
12-26 09:45:46.257 1584 1931 I commit_sys_config_file: [settings-0-0,16]
12-26 09:45:46.272 1584 1922 I device_idle_light_step:
12-26 09:45:46.272 1584 1922 I device_idle_light: [5,s:alarm]
12-26 09:45:46.282 1584 1999 I netstats_mobile_sample: [0,0,0,0,0,0,0,0,0,0,0,0,1672065946281]
12-26 09:45:46.282 1584 1999 I netstats_wifi_sample: [0,0,0,0,0,0,0,0,0,0,0,0,1672065946281]
12-26 09:46:26.532 1584 2229 I battery_status: [4,2,1,0,Li-ion]
12-26 09:46:26.629 1584 1931 I commit_sys_config_file: [settings-0-0,27]
12-26 09:46:26.867 1584 1584 I notification_enqueue: [1000,1584,android,32,NULL,-1,Notification(channel=USB shortcut=null contentView=null vibrate=null sound=null tick defaults=0x0 flags=0x2 color=0x00000000 vis=PUBLIC),0]
12-26 09:46:26.879 1584 1584 I notification_enqueue: [1000,1584,android,26,NULL,-1,Notification(channel=DEVELOPER_IMPORTANT shortcut=null contentView=null vibrate=null sound=null tick defaults=0x0 flags=0x2 color=0x00000000 vis=PUBLIC),0]
12-26 09:46:26.884 1584 1809 I am_uid_running: 10077
12-26 09:46:26.958 1584 1810 I am_proc_start: [0,17543,10077,android.process.media,broadcast,{com.android.mtp/com.android.mtp.MtpReceiver}]
12-26 09:46:26.978 1584 3389 I am_proc_bound: [0,17543,android.process.media]
12-26 09:46:26.988 1584 3389 I sysui_multi_action: [757,1417,758,4,1418,70,1421,2]
12-26 09:46:26.988 1584 3389 I battery_discharge: [336658608,100,70]
12-26 09:46:26.988 1584 3389 I battery_status: [4,2,1,2,Li-ion]
12-26 09:46:26.991 1584 1584 I battery_saving_stats: [0,0,1,401527,4000,0,4892262,38000,0]
12-26 09:46:26.992 1584 1584 I device_idle: [0,charging]
12-26 09:46:26.992 1584 1584 I device_idle_light: [0,charging]
12-26 09:46:26.993 1584 1922 I device_idle_off_start: charging
12-26 09:46:27.004 1584 1922 I device_idle_off_phase: net
12-26 09:46:27.005 1584 1584 I screen_toggled: 1
12-26 09:46:27.005 1584 1584 I power_screen_broadcast_send: 1
12-26 09:46:27.012 1584 1808 I am_pss : [3072,10107,com.google.android.ims,22481920,13135872,7471104,119025664,0,10,8]
12-26 09:46:27.015 1584 1922 I device_idle_off_complete:
12-26 09:46:27.017 1584 1584 I battery_saving_stats: [0,0,1,26,0,0,26,0,0]
12-26 09:46:27.020 1584 1850 I sysui_multi_action: [757,1696,758,6,759,3]
12-26 09:46:27.030 1584 1808 I am_pss : [15640,10106,com.google.android.GoogleCamera,218795008,81690624,113299456,267505664,0,10,15]
12-26 09:46:27.053 1584 1853 I sysui_multi_action: [757,127,758,1]
12-26 09:46:27.053 1584 1853 I sysui_multi_action: [757,804,799,note_load,801,1,802,1]
12-26 09:46:27.053 1584 1853 I notification_panel_revealed: 1
12-26 09:46:27.053 1584 1853 I wm_set_keyguard_shown: [0,1,0,0,setKeyguardShown]
12-26 09:46:27.070 1584 8930 I wm_wallpaper_surface: [0,1,Window{a36b5bf u0 NotificationShade}]
12-26 09:46:27.073 1584 1584 I sysui_multi_action: [757,1501,758,1,793,208,794,0,795,208,796,32,806,android,857,USB,858,1,947,0,1500,0,1688,1]
12-26 09:46:27.073 1584 1584 I sysui_multi_action: [757,804,799,note_interruptive,801,0,802,1]
12-26 09:46:27.083 1584 1584 I sysui_multi_action: [757,1501,758,1,793,205,794,0,795,205,796,26,806,android,857,DEVELOPER_IMPORTANT,858,4,947,0,1500,0,1688,1]
12-26 09:46:27.083 1584 1584 I sysui_multi_action: [757,804,799,note_interruptive,801,0,802,1]
12-26 09:46:27.088 1584 1584 I notification_autogrouped: -1|android|32|null|1000
12-26 09:46:27.088 1584 1584 I notification_autogrouped: -1|android|26|null|1000
12-26 09:46:27.091 1584 2016 I notification_adjusted: [-1|android|26|null|1000,key_group_key,ranker_group]
12-26 09:46:27.091 1584 2016 I notification_adjusted: [-1|android|32|null|1000,key_group_key,ranker_group]
12-26 09:46:27.097 1584 8930 I am_uid_active: 10201
12-26 09:46:27.110 1584 1584 I notification_enqueue: [1000,1584,android,2147483647,ranker_group,-1,Notification(channel=USB shortcut=null contentView=null vibrate=null sound=null defaults=0x0 flags=0x702 color=0x00000000 groupKey=ranker_group vis=PRIVATE),0]
12-26 09:46:27.149 2491 2491 I service_manager_slow: [14,carrier_config]
12-26 09:46:27.164 1584 8935 I sysui_multi_action: [757,803,799,sth_unload_generic_sound_model,802,1]
12-26 09:46:27.178 1584 1931 I commit_sys_config_file: [settings-0-0,1]
12-26 09:46:27.187 1584 1584 I sysui_multi_action: [757,198,758,1,759,1,1359,195,1694,3]
12-26 09:46:27.187 1584 1584 I power_screen_state: [1,0,0,0,195]
12-26 09:46:27.208 1584 1794 I sysui_multi_action: [757,223,758,2]
12-26 09:46:27.208 1584 1794 I sysui_multi_action: [757,804,799,dozing_minutes,801,11,802,1]
12-26 09:46:27.222 1584 1584 I power_screen_broadcast_done: [1,217,1]
12-26 09:46:27.260 1584 1932 I am_compact: [3629,com.google.android.googlequicksearchbox:search,all,310424,255608,44844,96732,-8736,0,-8736,8736,86,3,3242759,905,10,1395008,7512]
12-26 09:46:27.313 1584 1810 I am_proc_start: [0,17603,10158,com.google.process.gapps,content provider,{com.google.android.gsf/com.google.android.gsf.settings.GoogleSettingsProvider}]
12-26 09:46:27.315 13199 17511 I c2dm : [19,com.google.android.gms:224814044,0,0]
12-26 09:46:27.327 13199 17511 I c2dm : [-19,ERR_SERVICE_NOT_AVAILABLE,0,0]
12-26 09:46:27.349 1584 1809 I am_uid_running: 10186
12-26 09:46:27.350 1584 8931 I am_proc_bound: [0,17603,com.google.process.gapps]
12-26 09:46:27.358 1584 1810 I am_proc_start: [0,17626,10186,com.google.android.gm,broadcast,{com.google.android.gm/com.android.mail.receivers.AppIndexingUpdateReceiver}]
12-26 09:46:27.374 1584 3389 I am_proc_bound: [0,17626,com.google.android.gm]
12-26 09:46:27.423 1584 1808 I commit_sys_config_file: [batterystats,32]
12-26 09:46:27.425 1584 1931 I commit_sys_config_file: [settings-0-0,5]
12-26 09:46:27.429 1584 1808 I commit_sys_config_file: [batterystats,1]
12-26 09:46:27.567 1584 8930 I sysui_multi_action: [757,128,758,1,793,690,794,0,795,690,796,26,798,0,806,android,857,DEVELOPER_IMPORTANT,858,4,946,ranker_group,947,0,1395,2,1500,485,1688,1]
12-26 09:46:27.567 1584 8930 I sysui_multi_action: [757,1501,758,1,793,690,794,0,795,690,796,26,806,android,857,DEVELOPER_IMPORTANT,858,4,946,ranker_group,947,0,1500,0,1688,1]
12-26 09:46:27.567 1584 8930 I sysui_multi_action: [757,804,799,note_interruptive,801,0,802,1]
12-26 09:46:27.567 1584 8930 I sysui_multi_action: [757,804,799,note_freshness,801,690,802,1]
12-26 09:46:27.567 1584 8930 I notification_visibility: [-1|android|26|null|1000,1,690,690,0,0]
12-26 09:46:27.567 1584 8930 I sysui_multi_action: [757,128,758,1,793,336607975,794,0,795,336607975,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,1,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,2,1500,995293,1688,1,1745,2098068913]
12-26 09:46:27.567 1584 8930 I sysui_multi_action: [757,1501,758,1,793,336607975,794,0,795,336607975,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1500,0,1688,1,1745,2098068913]
12-26 09:46:27.567 1584 8930 I sysui_multi_action: [757,804,799,note_interruptive,801,0,802,1]
12-26 09:46:27.567 1584 8930 I sysui_multi_action: [757,804,799,note_freshness,801,336607975,802,1]
12-26 09:46:27.567 1584 8930 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,1,336607975,336607975,0,1]
12-26 09:46:27.756 1584 1931 I commit_sys_config_file: [settings-0-0,2]
12-26 09:46:27.980 1584 2675 I am_uid_active: 10069
12-26 09:46:28.055 3136 7310 I force_gc: Binder
12-26 09:46:28.185 1584 1584 I notification_cancel_all: [1000,1584,com.google.android.gm,0,0,0,20,NULL]
12-26 09:46:28.276 1584 1810 I am_proc_start: [0,17758,10158,com.google.android.gms.unstable,service,{com.google.android.gms/com.google.android.gms.droidguard.DroidGuardService}]
12-26 09:46:28.279 1584 1931 I commit_sys_config_file: [settings-0-0,13]
12-26 09:46:28.294 1584 2675 I am_proc_bound: [0,17758,com.google.android.gms.unstable]
12-26 09:46:28.438 1584 1796 I commit_sys_config_file: [notification-policy,3259036]
12-26 09:46:28.603 1584 8935 I am_uid_running: 10205
12-26 09:46:28.616 1584 1810 I am_proc_start: [0,17823,10205,com.android.remoteprovisioner,service,{com.android.remoteprovisioner/com.android.remoteprovisioner.service.GenerateRkpKeyService}]
12-26 09:46:28.642 1584 8935 I am_proc_bound: [0,17823,com.android.remoteprovisioner]
12-26 09:46:28.646 1584 8935 I am_uid_active: 10205
12-26 09:46:28.921 1584 1931 I commit_sys_config_file: [settings-0-0,7]
12-26 09:46:29.407 1584 1931 I commit_sys_config_file: [settings-0-0,14]
12-26 09:46:33.659 1584 1932 I am_compact: [17603,com.google.process.gapps,file,103868,54688,48080,0,0,0,0,0,21,0,0,700,5,1441428,0]
12-26 09:46:34.372 1584 1932 I am_compact: [17109,.ShannonImsService,file,94900,49548,44204,3168,0,0,0,0,21,3,3241958,700,5,1441428,0]
12-26 09:46:34.421 1584 1932 I am_compact: [3136,com.google.process.gservices,file,99388,52400,45844,3068,0,0,0,0,23,1,3200090,700,5,1441428,0]
12-26 09:46:34.997 1584 1850 I sysui_multi_action: [757,1696,758,6,759,2]
12-26 09:46:35.216 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,110612,60068,48904,5004,0,0,0,0,22,1,3249332,700,5,1441428,0]
12-26 09:46:35.732 1584 8935 I battery_status: [2,2,1,2,Li-ion]
12-26 09:46:35.962 1584 1931 I commit_sys_config_file: [settings-0-0,7]
12-26 09:46:36.995 1584 1850 I power_sleep_requested: 0
12-26 09:46:37.047 1584 1850 I sysui_multi_action: [757,1696,758,6,759,0]
12-26 09:46:37.487 1584 1808 I commit_sys_config_file: [display-state,3251524]
12-26 09:46:37.640 1584 1794 I sysui_multi_action: [757,223,758,1]
12-26 09:46:37.659 1584 8931 I wm_set_keyguard_shown: [0,1,1,0,setKeyguardShown]
12-26 09:46:37.662 1584 3389 I sysui_multi_action: [757,128,758,2,793,10785,794,10095,795,10785,796,26,798,0,806,android,857,DEVELOPER_IMPORTANT,858,4,946,ranker_group,947,0,1395,2,1500,10095,1688,1]
12-26 09:46:37.662 1584 3389 I notification_visibility: [-1|android|26|null|1000,0,10785,10785,0,0]
12-26 09:46:37.663 1584 3389 I sysui_multi_action: [757,128,758,2,793,336618071,794,10096,795,336618071,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,1,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,2,1500,10096,1688,1,1745,2098068913]
12-26 09:46:37.663 1584 3389 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,0,336618071,336618071,0,1]
12-26 09:46:37.677 1584 1850 I sysui_multi_action: [757,1696,758,6,759,1]
12-26 09:46:37.677 1584 1584 I sysui_multi_action: [757,198,758,2,759,3,1359,684,1695,2]
12-26 09:46:37.677 1584 1584 I power_screen_state: [0,3,0,0,684]
12-26 09:46:37.677 1584 1584 I screen_toggled: 0
12-26 09:46:37.677 1584 1584 I sysui_multi_action: [757,804,799,screen_timeout,801,300,802,1]
12-26 09:46:37.678 1584 1584 I sysui_multi_action: [757,1594,758,4,759,-2147483648,1359,10491]
12-26 09:46:37.678 1584 1584 I power_screen_broadcast_send: 1
12-26 09:46:37.694 1584 8935 I sysui_multi_action: [757,127,758,2]
12-26 09:46:37.694 1584 8935 I notification_panel_hidden:
12-26 09:46:37.701 1584 8935 I wm_wallpaper_surface: [0,0,null]
12-26 09:46:37.719 1584 1584 I battery_saving_stats: [0,1,0,10702,0,0,10702,0,0]
12-26 09:46:37.805 1584 1584 I power_screen_broadcast_done: [0,127,1]
12-26 09:46:37.895 1584 1932 I am_compact: [2682,com.google.android.apps.nexuslauncher,all,225480,155516,68596,22196,-28500,0,-28500,28500,118,3,2693816,0,5,1442196,-25036]
12-26 09:46:41.816 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,110612,60068,48904,5004,0,0,0,0,53,1,3298850,700,5,1417928,0]
12-26 09:46:42.913 1584 8935 I am_kill : [0,16426,com.google.android.euicc,975,empty #33]
12-26 09:46:42.916 1584 8935 I am_kill : [0,16391,com.android.vending:background,985,empty #34]
12-26 09:46:42.951 1584 3389 I am_proc_died: [0,16426,com.google.android.euicc,975,19]
12-26 09:46:42.952 1584 3389 I am_uid_stopped: 10146
12-26 09:46:42.956 1584 1852 I am_proc_died: [0,16391,com.android.vending:background,985,19]
12-26 09:46:43.033 1584 1932 I am_compact: [14190,com.google.android.gms,all,350868,274936,73344,11848,-27144,0,-27144,27324,122,3,3242620,905,5,1417928,-17772]
12-26 09:46:57.866 1584 1922 I am_kill : [0,16802,com.socialnmobile.dictapps.notepad.color.note,985,empty #33]
12-26 09:46:57.868 1584 1922 I am_kill : [0,16939,com.google.android.apps.wallpaper,985,empty #34]
12-26 09:46:57.868 1584 1922 I am_kill : [0,16872,com.android.providers.calendar,985,empty #35]
12-26 09:46:57.891 1584 1808 I am_pss : [2682,10218,com.google.android.apps.nexuslauncher,102684672,39260160,50442240,205295616,0,5,18]
12-26 09:46:57.913 1584 2228 I am_proc_died: [0,16939,com.google.android.apps.wallpaper,985,19]
12-26 09:46:57.914 1584 2228 I am_uid_stopped: 10219
12-26 09:46:57.920 1584 1852 I am_proc_died: [0,16802,com.socialnmobile.dictapps.notepad.color.note,985,19]
12-26 09:46:57.920 1584 1852 I am_uid_stopped: 10266
12-26 09:46:57.928 1584 1932 I am_compact: [3136,com.google.process.gservices,all,99452,52400,45884,3056,-3740,0,-3740,3740,59,1,3298055,915,15,1427292,-3760]
12-26 09:46:57.944 1584 8926 I am_proc_died: [0,16872,com.android.providers.calendar,985,19]
12-26 09:46:57.945 1584 8926 I am_uid_stopped: 10079
12-26 09:46:57.959 1584 1932 I am_compact: [17603,com.google.process.gapps,all,103696,54816,47720,0,-4144,0,-4144,4144,31,1,3297293,915,15,1423532,-4008]
12-26 09:47:27.139 1584 1809 I am_uid_idle: 10201
12-26 09:47:27.263 1584 1931 I commit_sys_config_file: [settings-0-0,14]
12-26 09:47:28.524 1584 1808 I am_pss : [17626,10186,com.google.android.gm,69679104,60317696,0,208470016,0,19,25]
12-26 09:47:28.682 1584 1809 I am_uid_idle: 10205
12-26 09:47:33.098 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,111000,60068,49292,4828,0,0,0,0,27,1,3305450,700,5,1421060,0]
12-26 09:47:38.944 1584 1808 I am_pss : [17758,10158,com.google.android.gms.unstable,38309888,16560128,0,228605952,0,19,11]
12-26 09:47:42.914 1584 1809 I am_uid_idle: 10069
12-26 09:47:57.869 1584 1809 I am_uid_idle: 10127
12-26 09:48:27.272 1584 1931 I commit_sys_config_file: [settings-0-0,13]
12-26 09:48:31.470 1584 8926 I battery_status: [4,2,1,2,Li-ion]
12-26 09:48:31.490 1584 1808 I am_pss : [17626,10186,com.google.android.gm,70847488,61427712,0,210075648,0,19,20]
12-26 09:48:31.680 1584 1931 I commit_sys_config_file: [settings-0-0,14]
12-26 09:48:33.131 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,111264,60068,49556,4828,0,0,0,0,61,1,3356732,700,5,1421572,0]
12-26 09:48:41.059 1584 1932 I am_freeze: [16817,com.google.android.apps.turbo:aab]
12-26 09:48:42.307 1584 1932 I am_freeze: [6731,com.google.android.partnersetup]
12-26 09:48:42.433 1584 1932 I am_freeze: [4557,com.google.android.tts]
12-26 09:48:43.340 1584 1932 I am_freeze: [5675,com.google.android.apps.gcs]
12-26 09:48:46.891 1584 1932 I am_freeze: [3827,com.google.android.apps.messaging]
12-26 09:48:46.906 1584 1932 I am_freeze: [3471,com.google.android.projection.gearhead:projection]
12-26 09:48:46.912 1584 1932 I am_freeze: [2173,com.google.android.permissioncontroller]
12-26 09:48:46.917 1584 1932 I am_freeze: [6055,com.google.android.apps.tips]
12-26 09:48:46.922 1584 1932 I am_freeze: [5968,com.google.android.apps.safetyhub]
12-26 09:48:46.924 1584 1932 I am_freeze: [17013,com.android.traceur]
12-26 09:48:48.220 1584 1932 I am_freeze: [7014,com.google.android.gms.ui]
12-26 09:49:15.675 1584 1932 I am_freeze: [17128,com.google.android.uvexposurereporter]
12-26 09:49:27.015 1584 1853 I battery_status: [2,2,1,2,Li-ion]
12-26 09:49:27.257 1584 1931 I commit_sys_config_file: [settings-0-0,15]
12-26 09:49:32.880 1584 8926 I battery_status: [4,2,1,2,Li-ion]
12-26 09:49:33.132 1584 1931 I commit_sys_config_file: [settings-0-0,15]
12-26 09:49:39.009 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,111528,60068,49820,4824,0,0,0,0,47,1,3416765,700,5,1421572,0]
12-26 09:49:50.597 1584 1932 I am_freeze: [16901,com.google.android.googlequicksearchbox:train]
12-26 09:49:53.892 1584 1932 I am_freeze: [3004,com.google.android.apps.carrier.carrierwifi]
12-26 09:50:03.603 1584 1853 I battery_status: [2,2,1,2,Li-ion]
12-26 09:50:03.656 1584 1808 I am_pss : [2500,1000,com.android.settings,73245696,29167616,33013760,178089984,0,19,22]
12-26 09:50:03.673 1584 1808 I am_pss : [6026,10131,com.google.android.apps.security.securityhub,13071360,7794688,3543040,110661632,0,19,14]
12-26 09:50:03.859 1584 1931 I commit_sys_config_file: [settings-0-0,16]
12-26 09:50:09.722 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,111788,60068,50080,4824,0,0,0,0,52,1,3482642,700,5,1422596,0]
12-26 09:50:23.856 1584 1932 I am_freeze: [2500,com.android.settings]
12-26 09:50:23.863 1584 1932 I am_freeze: [6026,com.google.android.apps.security.securityhub]
12-26 09:50:23.866 1584 1932 I am_freeze: [9306,com.google.android.apps.wellbeing]
12-26 09:50:27.013 1584 1853 I battery_status: [4,2,1,2,Li-ion]
12-26 09:50:27.271 1584 1931 I commit_sys_config_file: [settings-0-0,15]
12-26 09:50:33.133 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,111788,60068,50080,4824,0,0,0,0,48,1,3513356,700,5,1422852,0]
12-26 09:50:42.401 1584 1942 I sysui_multi_action: [757,804,799,power_consecutive_short_tap_count,801,1,802,1]
12-26 09:50:42.401 1584 1942 I sysui_multi_action: [757,804,799,power_double_tap_interval,801,639884,802,1]
12-26 09:50:42.402 1584 1942 I intercept_power: [ACTION_DOWN,0,1]
12-26 09:50:42.427 1584 1584 I screen_toggled: 1
12-26 09:50:42.428 1584 1584 I power_screen_broadcast_send: 1
12-26 09:50:42.446 1584 1850 I sysui_multi_action: [757,1696,758,6,759,3]
12-26 09:50:42.466 1584 1808 I am_pss : [17758,10158,com.google.android.gms.unstable,38309888,16560128,0,228605952,0,19,17]
12-26 09:50:42.468 1584 1852 I sysui_multi_action: [757,127,758,1]
12-26 09:50:42.469 1584 1852 I sysui_multi_action: [757,804,799,note_load,801,2,802,1]
12-26 09:50:42.469 1584 1852 I notification_panel_revealed: 2
12-26 09:50:42.470 1584 3389 I wm_set_keyguard_shown: [0,1,0,0,setKeyguardShown]
12-26 09:50:42.480 1584 1808 I am_pss : [17823,10205,com.android.remoteprovisioner,6609920,5001216,0,103596032,0,19,7]
12-26 09:50:42.480 1584 1798 I wm_wallpaper_surface: [0,1,Window{a36b5bf u0 NotificationShade}]
12-26 09:50:42.487 1584 1808 I am_pss : [17603,10158,com.google.process.gapps,8091648,573440,4243456,103006208,0,19,6]
12-26 09:50:42.493 1584 1584 I battery_saving_stats: [0,0,0,244774,1038000,0,244774,1038000,0]
12-26 09:50:42.497 1584 1808 I am_pss : [6778,10125,com.google.android.settings.intelligence,52837376,33251328,9977856,163897344,0,19,9]
12-26 09:50:42.504 1584 1808 I am_pss : [2956,10228,com.google.android.cellbroadcastreceiver,17529856,12627968,3248128,111054848,0,19,6]
12-26 09:50:42.511 1584 1808 I am_pss : [17543,10077,android.process.media,9032704,7352320,0,107388928,0,19,6]
12-26 09:50:42.520 1584 8936 I sysui_multi_action: [757,803,799,sth_unload_generic_sound_model,802,1]
12-26 09:50:42.521 1584 1808 I am_pss : [9306,10145,com.google.android.apps.wellbeing,47987712,11792384,31334400,132145152,0,19,9]
12-26 09:50:42.533 1584 1808 I am_pss : [3827,10143,com.google.android.apps.messaging,77663232,66199552,8044544,179843072,0,19,10]
12-26 09:50:42.547 1584 1808 I am_pss : [5502,10121,com.android.vending,74502144,25845760,29835264,184934400,0,19,12]
12-26 09:50:42.559 1584 1808 I am_pss : [6055,10140,com.google.android.apps.tips,19368960,6930432,9986048,118112256,0,19,7]
12-26 09:50:42.571 1584 1584 I power_screen_broadcast_done: [1,143,1]
12-26 09:50:42.573 1584 1808 I am_pss : [5968,10135,com.google.android.apps.safetyhub,27996160,21393408,4358144,131395584,0,19,8]
12-26 09:50:42.578 1584 1809 I am_uid_active: 10127
12-26 09:50:42.596 1584 1932 I am_compact: [3629,com.google.android.googlequicksearchbox:search,all,308448,255608,42868,99384,-5564,0,-5564,5564,51,3,3290894,905,10,1425156,-3908]
12-26 09:50:42.619 1584 1584 I sysui_multi_action: [757,198,758,1,759,1,1359,219,1694,1]
12-26 09:50:42.619 1584 1584 I power_screen_state: [1,0,0,0,219]
12-26 09:50:42.632 1584 1794 I sysui_multi_action: [757,223,758,2]
12-26 09:50:42.632 1584 1794 I sysui_multi_action: [757,804,799,dozing_minutes,801,4,802,1]
12-26 09:50:42.680 1584 1942 I intercept_power: [ACTION_UP,0,0]
12-26 09:50:42.973 1584 8926 I sysui_multi_action: [757,128,758,1,793,256095,794,0,795,256095,796,26,798,0,806,android,857,DEVELOPER_IMPORTANT,858,4,946,ranker_group,947,0,1395,2,1500,255405,1688,1]
12-26 09:50:42.973 1584 8926 I sysui_multi_action: [757,1501,758,1,793,256096,794,1,795,256096,796,26,806,android,857,DEVELOPER_IMPORTANT,858,4,946,ranker_group,947,0,1500,0,1688,1]
12-26 09:50:42.973 1584 8926 I sysui_multi_action: [757,804,799,note_interruptive,801,0,802,1]
12-26 09:50:42.973 1584 8926 I sysui_multi_action: [757,804,799,note_freshness,801,256095,802,1]
12-26 09:50:42.973 1584 8926 I notification_visibility: [-1|android|26|null|1000,1,256095,256095,0,0]
12-26 09:50:42.974 1584 8926 I sysui_multi_action: [757,128,758,1,793,336863382,794,0,795,336863382,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,1,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,2,1500,255407,1688,1,1745,2098068913]
12-26 09:50:42.974 1584 8926 I sysui_multi_action: [757,1501,758,1,793,336863382,794,0,795,336863382,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1500,0,1688,1,1745,2098068913]
12-26 09:50:42.974 1584 8926 I sysui_multi_action: [757,804,799,note_interruptive,801,0,802,1]
12-26 09:50:42.974 1584 8926 I sysui_multi_action: [757,804,799,note_freshness,801,336863382,802,1]
12-26 09:50:42.974 1584 8926 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,1,336863382,336863382,0,1]
12-26 09:50:43.479 1584 1941 I input_interaction: Interaction with: a36b5bf NotificationShade (server), PointerEventDispatcher0 (server),
12-26 09:50:44.389 1584 8936 I wm_set_keyguard_shown: [0,1,0,1,keyguardGoingAway]
12-26 09:50:44.390 1584 8936 I wm_set_resumed_activity: [0,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,resumeTopActivity - onActivityStateChanged]
12-26 09:50:44.391 1584 8936 I wm_resume_activity: [0,39696038,137,com.google.android.apps.nexuslauncher/.NexusLauncherActivity]
12-26 09:50:44.394 2682 2682 I wm_on_restart_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,performRestartActivity]
12-26 09:50:44.396 2682 2682 I wm_on_start_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,handleStartActivity]
12-26 09:50:44.397 2682 2682 I wm_on_resume_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,RESUME_ACTIVITY]
12-26 09:50:44.397 2682 2682 I wm_on_top_resumed_gained_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,topWhenResuming]
12-26 09:50:44.431 1584 1851 I am_proc_died: [0,2500,com.android.settings,905,8]
12-26 09:50:44.447 1584 1851 I wm_set_keyguard_shown: [0,0,0,1,setKeyguardShown]
12-26 09:50:44.453 2172 2172 I sysui_multi_action: [757,196,758,2,759,0]
12-26 09:50:44.453 2172 2172 I sysui_status_bar_state: [1,0,0,0,0,1]
12-26 09:50:44.456 2172 2172 I sysui_multi_action: [757,111,758,2]
12-26 09:50:44.457 2172 2172 I sysui_multi_action: [757,196,758,2,759,0]
12-26 09:50:44.457 2172 2172 I sysui_status_bar_state: [0,0,0,0,0,1]
12-26 09:50:44.473 1584 1853 I sysui_multi_action: [757,128,758,2,793,257596,794,1501,795,257596,796,26,798,0,806,android,857,DEVELOPER_IMPORTANT,858,4,946,ranker_group,947,0,1395,2,1500,1500,1688,1]
12-26 09:50:44.474 1584 1853 I notification_visibility: [-1|android|26|null|1000,0,257596,257596,0,0]
12-26 09:50:44.474 1584 1853 I sysui_multi_action: [757,128,758,2,793,336864882,794,1500,795,336864882,796,1000,797,a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300,798,1,806,com.google.android.gms,857,com.google.android.gms.noti-67970f04,858,2,947,0,1395,2,1500,1500,1688,1,1745,2098068913]
12-26 09:50:44.474 1584 1853 I notification_visibility: [0|com.google.android.gms|1000|a:GMSCORE_STORE_RENDERER:194:0:107736853508538081300|10158,0,336864882,336864882,0,1]
12-26 09:50:44.476 1584 1797 I user_activity_timeout_override: -1
12-26 09:50:44.479 1584 1798 I input_focus: [Focus request f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity,reason=UpdateInputWindows]
12-26 09:50:44.494 1584 1941 I input_focus: [Focus leaving a36b5bf NotificationShade (server),reason=NOT_FOCUSABLE]
12-26 09:50:44.494 1584 1941 I input_focus: [Focus entering f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server),reason=setFocusedWindow]
12-26 09:50:44.509 1584 1851 I sysui_multi_action: [757,127,758,2]
12-26 09:50:44.509 1584 1851 I notification_panel_hidden:
12-26 09:50:44.573 1584 1810 I am_proc_start: [0,17970,1000,com.android.settings,content provider,{com.android.settings/com.android.settings.slices.SettingsSliceProvider}]
12-26 09:50:44.599 1584 2227 I am_proc_bound: [0,17970,com.android.settings]
12-26 09:50:44.756 1584 1932 I am_compact: [17970,com.android.settings,all,124672,75312,48272,0,-4356,0,-4356,4356,35,0,0,905,10,1481408,-4096]
12-26 09:50:45.463 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), c5ec6a2 com.android.systemui.wallpapers.ImageWallpaper (server), PointerEventDispatcher0 (server),
12-26 09:50:48.183 1584 1931 I commit_sys_config_file: [settings-1-0,10]
12-26 09:50:48.431 1584 1808 I commit_sys_config_file: [display-state,3502468]
12-26 09:50:49.832 1584 1932 I am_compact: [17109,.ShannonImsService,file,95136,49548,44440,3036,0,0,0,0,29,1,3298006,700,5,1489856,0]
12-26 09:50:51.990 1584 1851 I wm_task_created: [138,-1]
12-26 09:50:51.995 1584 1851 I wm_task_moved: [138,1,2]
12-26 09:50:51.995 1584 1851 I wm_task_to_front: [0,138]
12-26 09:50:51.996 1584 1851 I wm_create_task: [0,138]
12-26 09:50:51.996 1584 1851 I wm_create_activity: [0,148049568,138,com.example.android.testing.espresso.BasicSample/.MainActivity,android.intent.action.MAIN,NULL,NULL,270532608]
12-26 09:50:51.996 1584 1851 I wm_task_moved: [138,1,2]
12-26 09:50:51.998 1584 1851 I wm_pause_activity: [0,39696038,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,userLeaving=true,pauseBackTasks]
12-26 09:50:52.002 1584 1797 I am_uid_running: 10243
12-26 09:50:52.003 2682 2682 I wm_on_top_resumed_lost_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,topStateChangedWhenResumed]
12-26 09:50:52.003 2682 2682 I wm_on_paused_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,performPause]
12-26 09:50:52.010 1584 1851 I wm_add_to_stopping: [0,39696038,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,makeInvisible]
12-26 09:50:52.010 1584 1794 I sysui_multi_action: [757,803,799,window_time_0,802,929]
12-26 09:50:52.013 1584 1810 I am_proc_start: [0,17989,10243,com.example.android.testing.espresso.BasicSample,next-top-activity,{com.example.android.testing.espresso.BasicSample/com.example.android.testing.espresso.BasicSample.MainActivity}]
12-26 09:50:52.020 1584 1941 I input_focus: [Focus leaving f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server),reason=NO_WINDOW]
12-26 09:50:52.053 1584 2228 I am_proc_bound: [0,17989,com.example.android.testing.espresso.BasicSample]
12-26 09:50:52.054 1584 2228 I wm_restart_activity: [0,148049568,138,com.example.android.testing.espresso.BasicSample/.MainActivity]
12-26 09:50:52.054 1584 2228 I wm_set_resumed_activity: [0,com.example.android.testing.espresso.BasicSample/.MainActivity,minimalResumeActivityLocked - onActivityStateChanged]
12-26 09:50:52.055 1584 1797 I am_uid_active: 10243
12-26 09:50:52.105 17989 17989 I wm_on_create_called: [148049568,com.example.android.testing.espresso.BasicSample.MainActivity,performCreate]
12-26 09:50:52.105 17989 17989 I wm_on_start_called: [148049568,com.example.android.testing.espresso.BasicSample.MainActivity,handleStartActivity]
12-26 09:50:52.106 17989 17989 I wm_on_resume_called: [148049568,com.example.android.testing.espresso.BasicSample.MainActivity,RESUME_ACTIVITY]
12-26 09:50:52.115 17989 17989 I wm_on_top_resumed_gained_called: [148049568,com.example.android.testing.espresso.BasicSample.MainActivity,topStateChangedWhenResumed]
12-26 09:50:52.132 1584 1798 I input_focus: [Focus request ed6cc18 com.example.android.testing.espresso.BasicSample/com.example.android.testing.espresso.BasicSample.MainActivity,reason=UpdateInputWindows]
12-26 09:50:52.178 1584 1794 I sysui_multi_action: [319,41,321,39,322,191,325,3555,757,761,758,7,759,1,806,com.example.android.testing.espresso.BasicSample,871,com.example.android.testing.espresso.BasicSample.MainActivity,904,com.google.android.apps.nexuslauncher,905,0,945,68,1320,4,1321,24]
12-26 09:50:52.179 1584 1794 I wm_activity_launch_time: [0,148049568,com.example.android.testing.espresso.BasicSample/.MainActivity,191]
12-26 09:50:52.179 1584 1941 I input_focus: [Focus entering ed6cc18 com.example.android.testing.espresso.BasicSample/com.example.android.testing.espresso.BasicSample.MainActivity (server),reason=Window became focusable. Previous reason: NOT_VISIBLE]
12-26 09:50:52.550 1584 1798 I wm_wallpaper_surface: [0,0,null]
12-26 09:50:52.560 1584 1797 I wm_stop_activity: [0,39696038,com.google.android.apps.nexuslauncher/.NexusLauncherActivity]
12-26 09:50:52.573 2682 2682 I wm_on_stop_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,STOP_ACTIVITY_ITEM]
12-26 09:50:52.688 1584 1932 I am_compact: [14190,com.google.android.gms,all,247800,179136,66064,11336,-26416,0,-26416,26416,105,3,3306667,905,10,1492672,-25844]
12-26 09:50:53.417 1584 1941 I input_interaction: Interaction with: b2c5d09 NavigationBar0 (server), PointerEventDispatcher0 (server),
12-26 09:50:53.422 2172 2172 I sysui_multi_action: [757,931,758,4,759,3,932,0,933,0]
12-26 09:50:53.524 2172 2172 I sysui_multi_action: [757,931,758,4,759,3,932,0,933,1]
12-26 09:50:53.534 1584 1795 I wm_task_moved: [1,1,2]
12-26 09:50:53.534 1584 1795 I wm_task_moved: [137,1,2147483647]
12-26 09:50:53.535 1584 1795 I wm_task_to_front: [0,137]
12-26 09:50:53.535 1584 1795 I wm_focused_root_task: [0,0,1,138,bringingFoundTaskToFront]
12-26 09:50:53.536 1584 1795 I wm_set_resumed_activity: [0,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,bringingFoundTaskToFront]
12-26 09:50:53.536 1584 1795 I wm_new_intent: [0,39696038,137,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,android.intent.action.MAIN,NULL,NULL,268435712]
12-26 09:50:53.536 1584 1795 I wm_pause_activity: [0,148049568,com.example.android.testing.espresso.BasicSample/.MainActivity,userLeaving=true,pauseBackTasks]
12-26 09:50:53.538 17989 17989 I wm_on_top_resumed_lost_called: [148049568,com.example.android.testing.espresso.BasicSample.MainActivity,topStateChangedWhenResumed]
12-26 09:50:53.538 1584 1795 I wm_add_to_stopping: [0,148049568,com.example.android.testing.espresso.BasicSample/.MainActivity,makeInvisible]
12-26 09:50:53.538 1584 1794 I sysui_multi_action: [757,803,799,window_time_0,802,1]
12-26 09:50:53.539 1584 1795 I wm_set_resumed_activity: [0,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,resumeTopActivity - onActivityStateChanged]
12-26 09:50:53.539 1584 1795 I wm_resume_activity: [0,39696038,137,com.google.android.apps.nexuslauncher/.NexusLauncherActivity]
12-26 09:50:53.539 2682 2682 I wm_on_restart_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,performRestartActivity]
12-26 09:50:53.539 2682 2682 I wm_on_start_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,handleStartActivity]
12-26 09:50:53.541 2682 2682 I wm_on_resume_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,RESUME_ACTIVITY]
12-26 09:50:53.541 1584 1798 I input_focus: [Requesting to set focus to null window,reason=UpdateInputWindows]
12-26 09:50:53.542 17989 17989 I wm_on_paused_called: [148049568,com.example.android.testing.espresso.BasicSample.MainActivity,performPause]
12-26 09:50:53.554 1584 1941 I input_focus: [Focus leaving ed6cc18 com.example.android.testing.espresso.BasicSample/com.example.android.testing.espresso.BasicSample.MainActivity (server),reason=Waiting for window because NOT_FOCUSABLE]
12-26 09:50:53.555 1584 1798 I input_focus: [Focus request f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity,reason=UpdateInputWindows]
12-26 09:50:53.562 2682 2682 I wm_on_top_resumed_gained_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,topStateChangedWhenResumed]
12-26 09:50:53.563 1584 1798 I wm_wallpaper_surface: [0,1,Window{f00dd56 u0 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity}]
12-26 09:50:53.592 1584 1794 I sysui_multi_action: [319,42,322,34,325,3557,757,761,758,9,759,2,806,com.google.android.apps.nexuslauncher,871,com.google.android.apps.nexuslauncher.NexusLauncherActivity,905,0,1320,4,1321,24]
12-26 09:50:53.595 1584 1941 I input_focus: [Focus entering f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server),reason=Window became focusable. Previous reason: NOT_VISIBLE]
12-26 09:50:53.607 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,all,111788,60068,50080,4824,-9596,0,-9596,9596,63,1,3536767,915,15,1467084,-5404]
12-26 09:50:53.931 1584 1797 I wm_stop_activity: [0,148049568,com.example.android.testing.espresso.BasicSample/.MainActivity]
12-26 09:50:53.960 17989 17989 I wm_on_stop_called: [148049568,com.example.android.testing.espresso.BasicSample.MainActivity,STOP_ACTIVITY_ITEM]
12-26 09:50:53.988 1584 1932 I am_compact: [17989,com.example.android.testing.espresso.BasicSample,file,163568,108368,53976,0,0,0,0,0,16,0,0,700,15,1481392,0]
12-26 09:50:54.566 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), c5ec6a2 com.android.systemui.wallpapers.ImageWallpaper (server), PointerEventDispatcher0 (server),
12-26 09:50:55.741 1584 1941 I input_interaction: Interaction with: b2c5d09 NavigationBar0 (server), PointerEventDispatcher0 (server),
12-26 09:50:55.746 2172 2172 I sysui_multi_action: [757,931,758,4,759,3,932,0,933,0]
12-26 09:50:55.822 1584 1941 I input_interaction: Interaction with: b2c5d09 NavigationBar0 (server), f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), PointerEventDispatcher0 (server),
12-26 09:50:55.822 2172 2172 I view_enqueue_input_event: [Motion - Cancel,NavigationBar0]
12-26 09:50:55.822 2172 2172 I sysui_multi_action: [757,931,758,4,759,3,932,32,933,1]
12-26 09:50:55.826 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), PointerEventDispatcher0 (server),
12-26 09:50:56.323 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), c5ec6a2 com.android.systemui.wallpapers.ImageWallpaper (server), PointerEventDispatcher0 (server),
12-26 09:50:57.300 1584 1941 I input_interaction: Interaction with: b2c5d09 NavigationBar0 (server), PointerEventDispatcher0 (server),
12-26 09:50:57.680 1584 2227 I sysui_multi_action: [757,803,799,assist_with_context,802,1]
12-26 09:50:58.174 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), c5ec6a2 com.android.systemui.wallpapers.ImageWallpaper (server), PointerEventDispatcher0 (server),
12-26 09:50:58.846 1584 8935 I wm_destroy_activity: [0,148049568,138,com.example.android.testing.espresso.BasicSample/.MainActivity,finish-imm:remove-task]
12-26 09:50:58.848 1584 1794 I sysui_multi_action: [757,803,799,window_time_0,802,6]
12-26 09:50:58.848 1584 1797 I am_kill : [0,17989,com.example.android.testing.espresso.BasicSample,900,remove task]
12-26 09:50:58.912 1584 3389 I am_proc_died: [0,17989,com.example.android.testing.espresso.BasicSample,900,18]
12-26 09:50:58.920 1584 3389 I am_uid_stopped: 10243
12-26 09:50:58.921 1584 3389 I wm_task_removed: [138,removeChild:removeChild last r=ActivityRecord{8d30ea0 u0 com.example.android.testing.espresso.BasicSample/.MainActivity} t-1 f}} in t=Task{975fd0 #138 type=standard A=10243:com.example.android.testing.espresso.BasicSample}]
12-26 09:50:58.921 1584 3389 I wm_task_removed: [138,removeChild]
12-26 09:51:02.058 1584 1862 I commit_sys_config_file: [package-user-0,33]
12-26 09:51:05.042 1584 3389 I battery_status: [2,2,1,2,Li-ion]
12-26 09:51:05.294 1584 1931 I commit_sys_config_file: [settings-0-0,20]
12-26 09:51:09.574 1584 1941 I input_interaction: Interaction with: b2c5d09 NavigationBar0 (server), PointerEventDispatcher0 (server),
12-26 09:51:09.581 2172 2172 I sysui_multi_action: [757,931,758,4,759,3,932,0,933,0]
12-26 09:51:09.696 2172 2172 I sysui_multi_action: [757,931,758,4,759,3,932,0,933,1]
12-26 09:51:09.706 1584 1795 I wm_new_intent: [0,39696038,137,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,android.intent.action.MAIN,NULL,NULL,268435712]
12-26 09:51:09.707 1584 1795 I wm_task_moved: [1,1,1]
12-26 09:51:09.707 2682 2682 I wm_on_top_resumed_lost_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,pausing]
12-26 09:51:09.708 2682 2682 I wm_on_paused_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,performPause]
12-26 09:51:09.708 2682 2682 I wm_on_resume_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,LIFECYCLER_RESUME_ACTIVITY]
12-26 09:51:09.708 2682 2682 I wm_on_top_resumed_gained_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,topWhenResuming]
12-26 09:51:09.743 1584 1808 I am_pss : [17970,1000,com.android.settings,24680448,14327808,2277376,127229952,0,19,10]
12-26 09:51:11.104 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,103620,60068,41912,13348,0,0,0,0,26,3,3557241,700,5,1519280,0]
12-26 09:51:11.166 1584 1941 I input_interaction: Interaction with: b2c5d09 NavigationBar0 (server), f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), PointerEventDispatcher0 (server),
12-26 09:51:11.167 2172 2172 I view_enqueue_input_event: [Motion - Cancel,NavigationBar0]
12-26 09:51:11.170 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), PointerEventDispatcher0 (server),
12-26 09:51:11.379 1584 1941 I input_interaction: Interaction with: b2c5d09 NavigationBar0 (server), PointerEventDispatcher0 (server),
12-26 09:51:11.384 2172 2172 I sysui_multi_action: [757,931,758,4,759,3,932,0,933,0]
12-26 09:51:11.723 2172 2172 I sysui_multi_action: [757,931,758,4,759,3,932,0,933,1]
12-26 09:51:11.737 1584 1795 I wm_new_intent: [0,39696038,137,com.google.android.apps.nexuslauncher/.NexusLauncherActivity,android.intent.action.MAIN,NULL,NULL,268435712]
12-26 09:51:11.737 1584 1795 I wm_task_moved: [1,1,1]
12-26 09:51:11.738 2682 2682 I wm_on_top_resumed_lost_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,pausing]
12-26 09:51:11.739 2682 2682 I wm_on_paused_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,performPause]
12-26 09:51:11.740 2682 2682 I wm_on_resume_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,LIFECYCLER_RESUME_ACTIVITY]
12-26 09:51:11.740 2682 2682 I wm_on_top_resumed_gained_called: [39696038,com.google.android.apps.nexuslauncher.NexusLauncherActivity,topWhenResuming]
12-26 09:51:14.199 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), c5ec6a2 com.android.systemui.wallpapers.ImageWallpaper (server), PointerEventDispatcher0 (server),
12-26 09:51:15.422 1584 1941 I input_interaction: Interaction with: b2c5d09 NavigationBar0 (server), PointerEventDispatcher0 (server),
12-26 09:51:15.424 2172 2172 I sysui_multi_action: [757,931,758,4,759,4,932,0,933,0]
12-26 09:51:15.449 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), PointerEventDispatcher0 (server),
12-26 09:51:15.449 1584 1941 I input_interaction: Interaction with: b2c5d09 NavigationBar0 (server), PointerEventDispatcher0 (server),
12-26 09:51:15.488 1584 1941 I input_interaction: Interaction with: b2c5d09 NavigationBar0 (server), f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), PointerEventDispatcher0 (server),
12-26 09:51:15.488 2172 2172 I view_enqueue_input_event: [Motion - Cancel,NavigationBar0]
12-26 09:51:15.488 2172 2172 I sysui_multi_action: [757,931,758,4,759,4,932,32,933,1]
12-26 09:51:15.489 1584 8926 I sysui_multi_action: [757,803,799,key_back_press,802,1]
12-26 09:51:15.491 2682 2682 I view_enqueue_input_event: [Key - Cancel,com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity]
12-26 09:51:15.492 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), PointerEventDispatcher0 (server),
12-26 09:51:16.657 1584 1941 I input_interaction: Interaction with: f00dd56 com.google.android.apps.nexuslauncher/com.google.android.apps.nexuslauncher.NexusLauncherActivity (server), c5ec6a2 com.android.systemui.wallpapers.ImageWallpaper (server), PointerEventDispatcher0 (server),
12-26 09:51:27.270 1584 1931 I commit_sys_config_file: [settings-0-0,15]
12-26 09:51:33.095 1584 1932 I am_compact: [5646,com.google.android.apps.turbo,file,103848,60068,42140,13268,0,0,0,0,32,1,3574738,700,5,1520048,0]
12-26 09:51:36.755 1584 1808 I commit_sys_config_file: [batterystats,20]
12-26 09:51:36.760 1584 1808 I commit_sys_config_file: [batterystats,6]
12-26 09:52:02.604 1584 1809 I am_uid_idle: 10127
12-26 09:52:16.526 1584 1808 I commit_sys_config_file: [procstats,40]
12-26 09:52:16.861 1584 1808 I am_meminfo: [4376150016,827592704,464760832,662777856,981261312]
12-26 09:52:16.882 1584 1808 I am_pss : [2682,10218,com.google.android.apps.nexuslauncher,238009344,189997056,30138368,376000512,2,2,19]
12-26 09:52:16.908 1584 1808 I am_pss : [3629,10160,com.google.android.googlequicksearchbox:search,237391872,127836160,61030400,402636800,2,3,23]
12-26 09:52:16.924 1584 1808 I am_pss : [13199,10158,com.google.android.gms.persistent,97543168,71671808,3883008,261476352,2,3,14]
12-26 09:52:16.931 1584 1808 I am_pss : [5646,10116,com.google.android.apps.turbo,17803264,1720320,12611584,110415872,2,15,7]
12-26 09:52:16.943 1584 1808 I am_pss : [14190,10158,com.google.android.gms,78320640,19755008,31219712,236392448,2,3,12]
12-26 09:52:16.963 1584 1808 I am_pss : [3318,10160,com.google.android.googlequicksearchbox:interactor,322219008,65212416,212135936,297508864,2,3,19]
12-26 09:52:16.973 1584 1808 I am_pss : [6778,10125,com.google.android.settings.intelligence,52956160,33161216,9953280,164442112,2,19,9]
12-26 09:52:16.981 1584 1808 I am_pss : [17970,1000,com.android.settings,24680448,14331904,2273280,127234048,2,19,7]
12-26 09:52:16.988 1584 1808 I am_pss : [2334,1002,com.android.bluetooth,27602944,25157632,0,138018816,2,0,7]
12-26 09:52:16.995 1584 1808 I am_pss : [6026,10131,com.google.android.apps.security.securityhub,13075456,7794688,3543040,110661632,2,19,6]
12-26 09:52:17.007 1584 1808 I am_pss : [3591,10127,com.google.android.apps.scone,17560576,15130624,0,125607936,2,10,11]
12-26 09:52:17.015 1584 1808 I am_pss : [17109,10200,.ShannonImsService,6773760,1122304,3100672,99258368,2,19,7]
12-26 09:52:17.025 1584 1808 I am_pss : [3280,10232,com.google.android.providers.media.module,22156288,19247104,0,131424256,2,0,10]
12-26 09:52:17.034 1584 1808 I am_pss : [2990,10069,android.process.acore,14106624,5926912,5804032,112324608,2,19,8]
12-26 09:52:17.047 1584 1808 I am_pss : [17758,10158,com.google.android.gms.unstable,38396928,16588800,0,228864000,2,19,12]
12-26 09:52:17.053 1584 1808 I am_pss : [17823,10205,com.android.remoteprovisioner,6610944,5001216,0,103596032,2,19,5]
12-26 09:52:17.059 1584 1808 I am_pss : [17603,10158,com.google.process.gapps,8091648,573440,4243456,103006208,2,19,6]
12-26 09:52:17.072 1584 1808 I am_pss : [17626,10186,com.google.android.gm,70932480,61493248,0,210141184,2,19,12]
12-26 09:52:17.079 1584 1808 I am_pss : [2956,10228,com.google.android.cellbroadcastreceiver,17541120,12627968,3248128,111054848,2,19,7]
12-26 09:52:17.085 1584 1808 I am_pss : [16916,10201,com.google.android.turboadapter,5630976,3231744,815104,99053568,2,19,5]
12-26 09:52:17.091 1584 1808 I am_pss : [17543,10077,android.process.media,9035776,7352320,0,107388928,2,19,6]
12-26 09:52:17.102 1584 1808 I am_pss : [4718,10187,com.google.android.inputmethod.latin,80529408,71294976,3690496,203309056,2,7,10]
12-26 09:52:17.111 1584 1808 I am_pss : [3004,10147,com.google.android.apps.carrier.carrierwifi,13985792,6971392,4931584,108593152,2,19,7]
12-26 09:52:17.120 1584 1808 I am_pss : [17233,10182,com.android.chrome,26402816,23027712,0,131108864,2,19,8]
12-26 09:52:17.130 1584 1808 I am_pss : [9306,10145,com.google.android.apps.wellbeing,48004096,11792384,31334400,132145152,2,19,9]
12-26 09:52:17.142 1584 1808 I am_pss : [16901,10160,com.google.android.googlequicksearchbox:train,49455104,13205504,1081344,210735104,2,19,11]
12-26 09:52:17.148 1584 1808 I am_pss : [17128,10198,com.google.android.uvexposurereporter,6253568,4759552,0,96894976,2,19,5]
12-26 09:52:17.159 1584 1808 I am_pss : [7014,10158,com.google.android.gms.ui,52059136,18894848,9416704,218689536,2,19,10]
12-26 09:52:17.171 1584 1808 I am_pss : [3827,10143,com.google.android.apps.messaging,77679616,66199552,8044544,179843072,2,19,11]
12-26 09:52:17.179 1584 1808 I am_pss : [5675,10154,com.google.android.apps.gcs,17396736,15564800,0,119312384,2,19,6]
12-26 09:52:17.185 1584 1808 I am_pss : [3072,10107,com.google.android.ims,22575104,13811712,6860800,119762944,2,10,6]
12-26 09:52:17.197 1584 1808 I am_pss : [5502,10121,com.android.vending,74533888,25845760,29835264,184934400,2,19,11]
12-26 09:52:17.209 1584 1808 I am_pss : [4557,10184,com.google.android.tts,79209472,76587008,0,185978880,2,19,11]
12-26 09:52:17.218 1584 1808 I am_pss : [3471,10104,com.google.android.projection.gearhead:projection,34666496,25251840,7458816,129765376,2,19,8]
12-26 09:52:17.226 1584 1808 I am_pss : [2173,10224,com.google.android.permissioncontroller,21475328,13844480,5025792,124198912,2,19,6]
12-26 09:52:17.234 1584 1808 I am_pss : [6055,10140,com.google.android.apps.tips,19402752,6930432,9986048,118112256,2,19,6]
12-26 09:52:17.242 1584 1808 I am_pss : [5968,10135,com.google.android.apps.safetyhub,28002304,21393408,4358144,131395584,2,19,7]
12-26 09:52:17.262 1584 1808 I am_pss : [15640,10106,com.google.android.GoogleCamera,218162176,81690624,113299456,267509760,2,10,19]
12-26 09:52:17.269 1584 1808 I am_pss : [17013,10101,com.android.traceur,11044864,7630848,1826816,103706624,2,19,7]
12-26 09:52:17.277 1584 1808 I am_pss : [16231,10121,com.android.vending:instant_app_installer,23481344,8065024,0,139145216,2,19,7]
12-26 09:52:17.285 1584 1808 I am_pss : [6731,10134,com.google.android.partnersetup,7570432,5926912,0,105861120,2,19,7]
12-26 09:52:17.294 1584 1808 I am_pss : [16817,10116,com.google.android.apps.turbo:aab,11600896,8388608,0,115679232,2,19,8]
12-26 09:52:17.308 1584 1808 I am_pss : [3304,10137,com.google.android.as,154465280,124674048,22073344,277835776,2,5,14]
12-26 09:52:17.315 1584 1808 I am_pss : [2727,1000,com.google.android.iwlan,5806080,4308992,0,96776192,2,6,6]
12-26 09:52:17.323 1584 1808 I am_pss : [3450,10204,com.google.android.connectivitythermalpowermanager,10483712,8826880,0,103411712,2,0,7]
12-26 09:52:17.329 1584 1808 I am_pss : [3426,1000,com.google.SSRestartDetector,6909952,5480448,0,95883264,2,0,6]
12-26 09:52:17.338 1584 1808 I am_pss : [3402,1027,com.android.nfc,18497536,15405056,0,122761216,2,0,7]
12-26 09:52:17.344 1584 1808 I am_pss : [3367,10203,com.qorvo.uwb.vendorservice,5216256,3690496,0,95391744,2,0,5]
12-26 09:52:17.350 1584 1808 I am_pss : [2503,10225,com.google.android.ext.services,6064128,983040,3551232,94777344,2,5,6]
12-26 09:52:17.358 1584 1808 I am_pss : [2797,1000,com.android.qns,6899712,5140480,0,100593664,2,6,7]
12-26 09:52:17.369 1584 1808 I am_pss : [2491,1001,com.android.phone,41901056,36847616,0,160448512,2,0,10]