-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeakerphone.txt
5185 lines (5185 loc) · 672 KB
/
speakerphone.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
--------- beginning of crash
01-04 04:15:59.875 387 387 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 387 (init), pid 387 (init)
01-04 04:15:59.945 387 387 F libc : crash_dump helper failed to exec
05-01 00:29:32.504 2166 2166 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 2166 (init), pid 2166 (init)
05-01 00:29:33.189 2166 2166 F libc : crash_dump helper failed to exec
05-01 02:20:56.234 1924 1924 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 1924 (dex2oat), pid 1924 (dex2oat)
05-01 02:20:56.294 1936 1936 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
05-01 02:20:56.294 1936 1936 F DEBUG : Build fingerprint: 'Cat/S22FLIP/S22FLIP:11/RKQ1.210416.002/LTE_S02113.11_N_S22Flip_0.030.03:user/release-keys'
05-01 02:20:56.294 1936 1936 F DEBUG : Revision: '0'
05-01 02:20:56.295 1936 1936 F DEBUG : ABI: 'arm'
05-01 02:20:56.296 1936 1936 F DEBUG : Timestamp: 2023-05-01 02:20:56-0400
05-01 02:20:56.296 1936 1936 F DEBUG : pid: 1924, tid: 1924, name: dex2oat >>> /apex/com.android.art/bin/dex2oat32 <<<
05-01 02:20:56.296 1936 1936 F DEBUG : uid: 1001
05-01 02:20:56.296 1936 1936 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
05-01 02:20:56.296 1936 1936 F DEBUG : Abort message: 'No pending exception expected: java.lang.LinkageError: Class com.gsma.rcs.cm.qcom.config.a method void com.gsma.rcs.cm.qcom.config.a.onValues(int, vendor.qti.ims.rcsconfig.V1_0.IRcsConfig) resolves differently in interface vendor.qti.data.factory.V1_0.IFactory$createRcsConfigCallback: Parameter 1 type mismatch: java.lang.Class<vendor.qti.ims.rcsconfig.V1_0.IRcsConfig,dalvik.system.PathClassLoader>(0x12e1e6c8) vs java.lang.Class<vendor.qti.ims.rcsconfig.V1_0.IRcsConfig,dalvik.system.PathClassLoader>(0x12e9e1e8) (declaration of 'com.gsma.rcs.cm.qcom.config.a' appears in RcsSDK.apk)
05-01 02:20:56.296 1936 1936 F DEBUG : (Throwable with empty stack trace)
05-01 02:20:56.296 1936 1936 F DEBUG : '
05-01 02:20:56.296 1936 1936 F DEBUG : r0 00000000 r1 00000784 r2 00000006 r3 be9da098
05-01 02:20:56.296 1936 1936 F DEBUG : r4 be9da0ac r5 be9da090 r6 00000784 r7 0000016b
05-01 02:20:56.296 1936 1936 F DEBUG : r8 be9da098 r9 be9da0a8 r10 be9da0c8 r11 be9da0b8
05-01 02:20:56.296 1936 1936 F DEBUG : ip 00000784 sp be9da068 lr ac7b03a9 pc ac7b03bc
05-01 02:20:56.353 1936 1936 F DEBUG : backtrace:
05-01 02:20:56.353 1936 1936 F DEBUG : #00 pc 000653bc /apex/com.android.runtime/lib/bionic/libc.so (abort+172) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
05-01 02:20:56.353 1936 1936 F DEBUG : #01 pc 003e2363 /apex/com.android.art/lib/libart.so (art::Runtime::Abort(char const*)+1802) (BuildId: 6f9494214cd0abf066dbd5579cf09128)
05-01 02:20:56.353 1936 1936 F DEBUG : #02 pc 0000d747 /system/lib/libbase.so (android::base::SetAborter(std::__1::function<void (char const*)>&&)::$_3::__invoke(char const*)+46) (BuildId: f974f7275c0f2e8b2fc7449714ec7456)
05-01 02:20:56.353 1936 1936 F DEBUG : #03 pc 0000d149 /system/lib/libbase.so (android::base::LogMessage::~LogMessage()+224) (BuildId: f974f7275c0f2e8b2fc7449714ec7456)
05-01 02:20:56.354 1936 1936 F DEBUG : #04 pc 004268bb /apex/com.android.art/lib/libart.so (art::Thread::AssertNoPendingException() const+1306) (BuildId: 6f9494214cd0abf066dbd5579cf09128)
05-01 02:20:56.354 1936 1936 F DEBUG : #05 pc 00140811 /apex/com.android.art/lib/libart.so (art::ClassLinker::FindClass(art::Thread*, char const*, art::Handle<art::mirror::ClassLoader>)+36) (BuildId: 6f9494214cd0abf066dbd5579cf09128)
05-01 02:20:56.354 1936 1936 F DEBUG : #06 pc 00132b17 /apex/com.android.art/lib/libart.so (art::ClassLinker::DoResolveType(art::dex::TypeIndex, art::Handle<art::mirror::DexCache>, art::Handle<art::mirror::ClassLoader>)+122) (BuildId: 6f9494214cd0abf066dbd5579cf09128)
05-01 02:20:56.354 1936 1936 F DEBUG : #07 pc 00132e4f /apex/com.android.art/lib/libart.so (art::ObjPtr<art::mirror::Class> art::ClassLinker::DoResolveType<art::ArtMethod*>(art::dex::TypeIndex, art::ArtMethod*)+238) (BuildId: 6f9494214cd0abf066dbd5579cf09128)
05-01 02:20:56.354 1936 1936 F DEBUG : #08 pc 000617df /apex/com.android.art/bin/dex2oat32 (art::InitializeClassVisitor::ResolveTypesOfMethods(art::Thread*, art::ArtMethod*)+306) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
05-01 02:20:56.354 1936 1936 F DEBUG : #09 pc 0005ff8b /apex/com.android.art/bin/dex2oat32 (art::InitializeClassVisitor::TryInitializeClass(art::Handle<art::mirror::Class>, art::Handle<art::mirror::ClassLoader>&)+1346) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
05-01 02:20:56.355 1936 1936 F DEBUG : #10 pc 0005f5e5 /apex/com.android.art/bin/dex2oat32 (art::InitializeClassVisitor::Visit(unsigned int)+692) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
05-01 02:20:56.355 1936 1936 F DEBUG : #11 pc 0005d321 /apex/com.android.art/bin/dex2oat32 (art::ParallelCompilationManager::ForAllClosureLambda<art::ParallelCompilationManager::ForAll(unsigned int, unsigned int, art::CompilationVisitor*, unsigned int)::'lambda'(unsigned int)>::Run(art::Thread*)+30) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
05-01 02:20:56.355 1936 1936 F DEBUG : #12 pc 0043be51 /apex/com.android.art/lib/libart.so (art::ThreadPool::Wait(art::Thread*, bool, bool)+116) (BuildId: 6f9494214cd0abf066dbd5579cf09128)
05-01 02:20:56.355 1936 1936 F DEBUG : #13 pc 0005d13d /apex/com.android.art/bin/dex2oat32 (void art::ParallelCompilationManager::ForAllLambda<art::ParallelCompilationManager::ForAll(unsigned int, unsigned int, art::CompilationVisitor*, unsigned int)::'lambda'(unsigned int)>(unsigned int, unsigned int, art::ParallelCompilationManager::ForAll(unsigned int, unsigned int, art::CompilationVisitor*, unsigned int)::'lambda'(unsigned int), unsigned int)+148) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
05-01 02:20:56.355 1936 1936 F DEBUG : #14 pc 00056963 /apex/com.android.art/bin/dex2oat32 (art::CompilerDriver::PreCompile(_jobject*, std::__1::vector<art::DexFile const*, std::__1::allocator<art::DexFile const*> > const&, art::TimingLogger*, art::HashSet<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, art::DefaultEmptyFn<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, art::DataHash, art::DefaultStringEquals, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >*, art::VerificationResults*)+5830) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
05-01 02:20:56.355 1936 1936 F DEBUG : #15 pc 000504af /apex/com.android.art/bin/dex2oat32 (art::Dex2Oat::CompileDexFiles(std::__1::vector<art::DexFile const*, std::__1::allocator<art::DexFile const*> > const&)+1546) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
05-01 02:20:56.356 1936 1936 F DEBUG : #16 pc 0004e1bd /apex/com.android.art/bin/dex2oat32 (art::Dex2Oat::Compile()+4660) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
05-01 02:20:56.356 1936 1936 F DEBUG : #17 pc 00041461 /apex/com.android.art/bin/dex2oat32 (art::Dex2oat(int, char**)+4336) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
05-01 02:20:56.356 1936 1936 F DEBUG : #18 pc 00040367 /apex/com.android.art/bin/dex2oat32 (main+2) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
05-01 02:20:56.356 1936 1936 F DEBUG : #19 pc 0005fbc1 /apex/com.android.runtime/lib/bionic/libc.so (__libc_init+68) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
05-12 11:16:17.534 419 419 F libc : crash_dump helper failed to exec
--------- beginning of system
05-16 23:10:46.780 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-16 23:10:46.799 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-16 23:10:46.849 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 4 lines
05-16 23:11:22.304 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-16 23:11:22.860 1287 1347 I chatty : uid=1000(system) android.fg expire 4 lines
05-16 23:11:22.979 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 1 line
05-16 23:11:24.799 1287 1367 I chatty : uid=1000(system) ActivityManager expire 10 lines
05-16 23:11:30.278 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
05-16 23:11:30.311 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 9 lines
05-16 23:11:30.341 1287 1350 I chatty : uid=1000(system) android.display expire 10 lines
05-16 23:11:30.345 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 4 lines
05-16 23:11:30.399 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 6 lines
05-16 23:20:48.651 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-16 23:45:59.824 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 1 line
05-16 23:45:59.825 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-16 23:52:45.646 1287 1287 I chatty : uid=1000 system_server expire 4 lines
05-17 00:00:00.707 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 1 line
05-17 00:01:09.546 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-17 00:05:07.163 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-17 00:05:07.271 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 16 lines
05-17 00:05:07.274 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-17 00:05:07.276 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-17 00:05:07.301 1287 1367 I chatty : uid=1000(system) ActivityManager expire 11 lines
05-17 00:05:07.396 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 5 lines
05-17 00:05:07.621 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 1 line
05-17 00:05:07.781 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 00:05:07.916 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 5 lines
05-17 00:05:15.261 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 5 lines
05-17 00:05:15.294 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 2 lines
05-17 00:05:15.295 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 00:05:15.376 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 00:05:15.413 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-17 00:05:15.598 1287 1367 I chatty : uid=1000(system) ActivityManager expire 9 lines
05-17 00:05:20.195 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 7 lines
05-17 00:18:37.143 1287 3351 I chatty : uid=1000(system) Binder:1287_19 expire 2 lines
05-17 00:30:04.764 1287 1478 I chatty : uid=1000(system) NetworkStats expire 1 line
05-17 00:30:04.764 1287 1368 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 00:30:08.493 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 2 lines
05-17 00:42:21.654 1287 1461 I chatty : uid=1000(system) AlarmManager expire 4 lines
05-17 00:42:21.852 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 1 line
05-17 00:54:05.683 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 00:54:06.704 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 2 lines
05-17 00:54:06.704 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 16 lines
05-17 00:54:06.706 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 9 lines
05-17 00:54:06.728 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 10 lines
05-17 00:54:06.733 2131 2131 I ActivityThread: Removing dead content provider:android.content.ContentProviderProxy@e083a6b
05-17 00:54:06.751 1287 1368 I chatty : uid=1000(system) ActivityManager expire 15 lines
05-17 00:54:06.842 1287 1366 I chatty : uid=1000(system) android.bg expire 2 lines
05-17 00:54:07.731 1287 1367 I chatty : uid=1000(system) ActivityManager expire 3 lines
05-17 00:54:07.908 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 5 lines
05-17 00:54:07.937 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 8 lines
05-17 00:54:08.548 1287 1916 I chatty : uid=1000(system) Binder:1287_8 expire 1 line
05-17 00:54:08.879 1287 1471 I chatty : uid=1000(system) NetworkWatchlis expire 2 lines
05-17 01:01:22.617 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 8 lines
05-17 01:09:22.898 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-17 01:09:22.972 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 01:09:26.700 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 3 lines
05-17 01:58:58.679 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 1 line
05-17 01:58:59.802 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 7 lines
05-17 01:59:06.361 1287 1368 I chatty : uid=1000(system) ActivityManager expire 5 lines
05-17 01:59:06.502 1287 1347 I chatty : uid=1000(system) android.fg expire 6 lines
05-17 01:59:07.183 1287 1287 I chatty : uid=1000 system_server expire 11 lines
05-17 01:59:09.905 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 13 lines
05-17 01:59:22.944 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 1 line
05-17 01:59:22.979 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 1 line
05-17 02:23:20.811 1287 1478 I chatty : uid=1000(system) NetworkStats expire 2 lines
05-17 02:28:46.389 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
05-17 02:42:18.319 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 3 lines
05-17 02:42:18.320 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 1 line
05-17 02:42:18.335 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-17 04:22:39.894 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 2 lines
05-17 04:22:39.933 1287 1366 I chatty : uid=1000(system) android.bg expire 46 lines
05-17 04:22:39.970 1287 1287 I chatty : uid=1000 system_server expire 10 lines
05-17 04:22:39.973 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 27 lines
05-17 04:22:39.975 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 3 lines
05-17 04:22:40.080 1287 1366 I chatty : uid=1000(system) android.bg expire 40 lines
05-17 04:22:40.083 1287 1287 I chatty : uid=1000 system_server expire 12 lines
05-17 04:22:40.094 1287 861 I chatty : uid=1000(system) Binder:1287_10 expire 40 lines
05-17 04:27:48.958 1287 1366 I chatty : uid=1000(system) android.bg expire 18 lines
05-17 04:27:48.964 1287 1287 I chatty : uid=1000 system_server expire 19 lines
05-17 04:27:49.020 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 2 lines
05-17 04:27:49.050 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 3 lines
05-17 04:27:49.115 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 6 lines
05-17 04:27:49.116 1287 1366 I chatty : uid=1000(system) android.bg expire 37 lines
05-17 04:27:49.124 1287 1287 I chatty : uid=1000 system_server expire 9 lines
05-17 04:27:49.135 1287 861 I chatty : uid=1000(system) Binder:1287_10 expire 28 lines
05-17 04:27:49.237 1287 1287 I chatty : uid=1000 system_server expire 18 lines
05-17 04:29:19.808 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-17 04:29:19.821 1287 1366 I chatty : uid=1000(system) android.bg expire 15 lines
05-17 04:29:19.842 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 28 lines
05-17 04:31:22.686 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 2 lines
05-17 04:31:22.688 1287 1366 I chatty : uid=1000(system) android.bg expire 30 lines
05-17 04:31:22.704 1287 1287 I chatty : uid=1000 system_server expire 13 lines
05-17 04:31:22.706 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-17 04:31:22.753 1287 861 I chatty : uid=1000(system) Binder:1287_10 expire 15 lines
05-17 04:31:22.764 1287 1287 I chatty : uid=1000 system_server expire 14 lines
05-17 04:31:22.767 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 13 lines
05-17 04:31:22.772 1287 2631 I chatty : uid=1000(system) AsyncTask #150 expire 1 line
05-17 04:34:09.072 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 3 lines
05-17 04:34:09.074 1287 1366 I chatty : uid=1000(system) android.bg expire 15 lines
05-17 04:34:09.156 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 6 lines
05-17 04:34:09.158 1287 1366 I chatty : uid=1000(system) android.bg expire 30 lines
05-17 04:34:09.164 1287 1287 I chatty : uid=1000 system_server expire 16 lines
05-17 04:34:09.176 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 13 lines
05-17 04:34:09.399 1287 1287 I chatty : uid=1000 system_server expire 11 lines
05-17 04:34:09.402 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 13 lines
05-17 04:34:09.703 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 17 lines
05-17 04:34:09.704 1287 1366 I chatty : uid=1000(system) android.bg expire 30 lines
05-17 04:34:09.777 1287 1287 I chatty : uid=1000 system_server expire 10 lines
05-17 04:34:09.788 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 13 lines
05-17 04:51:05.264 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-17 05:10:28.778 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-17 05:20:39.598 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 18 lines
05-17 05:20:39.843 1287 1367 I chatty : uid=1000(system) ActivityManager expire 5 lines
05-17 05:39:01.461 1287 861 I chatty : uid=1000(system) Binder:1287_10 expire 4 lines
05-17 05:39:01.565 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 05:39:01.621 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 17 lines
05-17 05:41:22.935 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 10 lines
05-17 06:15:53.646 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 7 lines
05-17 06:15:53.646 1287 1368 I chatty : uid=1000(system) ActivityManager expire 9 lines
05-17 06:25:58.795 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 1 line
05-17 07:00:01.699 1287 1287 I chatty : uid=1000 system_server expire 6 lines
05-17 07:57:55.389 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 3 lines
05-17 07:58:19.421 1287 1368 I chatty : uid=1000(system) ActivityManager expire 1 line
05-17 07:58:59.968 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 10 lines
05-17 07:59:21.359 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-17 08:02:28.843 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 1 line
05-17 08:42:35.118 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 1 line
05-17 08:42:35.119 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-17 08:42:35.119 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 1 line
05-17 08:42:35.120 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 1 line
05-17 08:42:44.579 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 1 line
05-17 09:22:00.768 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 1 line
05-17 09:36:02.344 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-17 09:36:02.408 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
05-17 09:36:02.415 1287 1350 I chatty : uid=1000(system) android.display expire 3 lines
05-17 09:36:02.456 1287 1367 I chatty : uid=1000(system) ActivityManager expire 11 lines
05-17 09:36:02.506 1287 2415 I chatty : uid=1000(system) Binder:1287_A expire 5 lines
05-17 09:36:02.524 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 09:36:02.905 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 09:36:02.926 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 1 line
05-17 09:36:05.559 1287 1467 I chatty : uid=1000(system) UEventObserver expire 3 lines
05-17 09:36:05.566 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 5 lines
05-17 09:36:05.574 1287 1467 I chatty : uid=1000(system) UEventObserver expire 3 lines
05-17 09:36:05.649 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 12 lines
05-17 09:36:05.705 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 09:36:05.810 1287 1287 I chatty : uid=1000 system_server expire 4 lines
05-17 09:36:05.812 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 09:36:06.139 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
05-17 09:36:06.417 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 4 lines
05-17 09:36:07.940 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 28 lines
05-17 09:36:09.105 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 8 lines
05-17 09:36:14.397 1287 1348 I chatty : uid=1000(system) android.ui expire 17 lines
05-17 09:36:14.824 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-17 09:36:14.902 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 4 lines
05-17 09:36:15.640 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-17 09:36:15.752 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 16 lines
05-17 09:36:15.790 1287 1350 I chatty : uid=1000(system) android.display expire 18 lines
05-17 09:36:16.200 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-17 09:36:17.501 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-17 09:36:17.520 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-17 09:36:17.557 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 4 lines
05-17 09:36:17.568 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 09:36:17.605 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 4 lines
05-17 09:36:17.681 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 09:42:47.950 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 7 lines
05-17 09:45:12.647 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 6 lines
05-17 09:59:31.205 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 4 lines
05-17 09:59:31.205 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-17 10:06:49.874 1287 1287 I chatty : uid=1000 system_server expire 6 lines
05-17 10:08:41.463 1287 1347 I chatty : uid=1000(system) android.fg expire 5 lines
05-17 10:15:30.657 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 1 line
05-17 10:15:32.136 1287 1367 I chatty : uid=1000(system) ActivityManager expire 11 lines
05-17 10:15:32.174 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
05-17 10:15:32.180 1287 1350 I chatty : uid=1000(system) android.display expire 3 lines
05-17 10:15:32.302 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 1 line
05-17 10:15:32.581 1287 1368 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-17 10:15:34.143 1287 1367 I chatty : uid=1000(system) ActivityManager expire 9 lines
05-17 10:15:40.149 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 13 lines
05-17 10:15:40.177 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 6 lines
05-17 10:15:40.203 1287 1350 I chatty : uid=1000(system) android.display expire 9 lines
05-17 10:15:40.225 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 5 lines
05-17 10:15:40.278 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 4 lines
05-17 10:15:40.310 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 10:23:42.881 1287 1287 I chatty : uid=1000 system_server expire 6 lines
05-17 10:26:29.036 1287 1366 I chatty : uid=1000(system) android.bg expire 1 line
05-17 10:48:55.534 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 1 line
05-17 10:48:55.567 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 1 line
05-17 10:48:55.567 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-17 10:48:56.898 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 1 line
05-17 10:48:56.935 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 17 lines
05-17 10:48:56.939 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 10:48:56.942 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-17 10:48:57.181 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 5 lines
05-17 10:48:57.344 1287 1367 I chatty : uid=1000(system) ActivityManager expire 3 lines
05-17 10:48:57.421 1287 1347 I chatty : uid=1000(system) android.fg expire 6 lines
05-17 10:48:57.469 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 6 lines
05-17 10:49:05.014 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 4 lines
05-17 11:00:08.258 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 3 lines
05-17 11:00:08.259 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-17 11:00:09.255 1287 1367 I chatty : uid=1000(system) ActivityManager expire 11 lines
05-17 11:00:09.467 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-17 11:00:09.503 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 6 lines
05-17 11:00:09.533 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 16 lines
05-17 11:00:09.537 1287 1350 I chatty : uid=1000(system) android.display expire 3 lines
05-17 11:00:09.551 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-17 11:00:10.018 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 11:00:10.054 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 1 line
05-17 11:00:11.708 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 3 lines
05-17 11:00:17.541 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 3 lines
05-17 11:00:17.558 1287 1350 I chatty : uid=1000(system) android.display expire 9 lines
05-17 11:00:17.604 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 4 lines
05-17 11:00:17.639 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 2 lines
05-17 11:00:17.641 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 11:00:22.538 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 8 lines
05-17 11:08:19.882 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-17 11:08:23.326 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 1 line
05-17 11:08:23.327 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 8 lines
05-17 11:46:00.295 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 2 lines
05-17 11:46:00.296 1287 1368 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 11:46:00.408 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 2 lines
05-17 11:46:00.412 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 1 line
05-17 11:46:00.422 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 1 line
05-17 12:03:14.222 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 12:03:16.667 1287 2415 I chatty : uid=1000(system) Binder:1287_A expire 6 lines
05-17 12:03:17.235 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 1 line
05-17 12:03:17.237 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 1 line
05-17 12:03:17.862 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-17 12:03:23.246 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 12:03:23.301 1287 1347 I chatty : uid=1000(system) android.fg expire 4 lines
05-17 12:03:23.301 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-17 12:03:23.331 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 1 line
05-17 12:15:32.380 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 11 lines
05-17 12:16:09.000 1287 1467 I chatty : uid=1000(system) UEventObserver expire 11 lines
05-17 12:16:09.042 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
05-17 12:16:09.140 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-17 12:16:09.180 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 12:16:09.264 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 12:16:09.398 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 5 lines
05-17 12:16:09.452 1287 2415 I chatty : uid=1000(system) Binder:1287_A expire 1 line
05-17 12:16:09.489 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-17 12:16:09.489 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
05-17 12:16:09.646 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-17 12:16:09.726 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 12:16:09.841 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 1 line
05-17 12:16:12.285 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 40 lines
05-17 12:16:12.340 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 12 lines
05-17 12:16:12.383 1287 1367 I chatty : uid=1000(system) ActivityManager expire 11 lines
05-17 12:16:12.485 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 5 lines
05-17 12:16:13.462 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-17 12:16:21.448 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 2 lines
05-17 12:16:31.120 1287 1367 I chatty : uid=1000(system) ActivityManager expire 16 lines
05-17 12:16:36.102 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 12:16:38.487 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-17 12:17:14.038 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 1 line
05-17 12:17:14.077 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 1 line
05-17 12:17:18.607 1287 1348 I chatty : uid=1000(system) android.ui expire 17 lines
05-17 12:17:19.061 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-17 12:17:19.098 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 4 lines
05-17 12:17:37.219 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 23 lines
05-17 12:17:37.819 2597 2510 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1111 android.content.ContextWrapper.sendBroadcast:468 com.android.dialer.database.DialerDatabaseHelper.updateSmartDialDatabase:884 com.android.dialer.database.DialerDatabaseHelper.lambda$startSmartDialUpdateThread$0$DialerDatabaseHelper:358 com.android.dialer.database.-$$Lambda$DialerDatabaseHelper$PmaZioZincgK-Q97aU7q5zBCRZ0.call:4
05-17 12:17:38.389 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 12:17:39.762 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 4 lines
05-17 12:18:02.713 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 5 lines
05-17 12:18:02.718 1287 1287 I chatty : uid=1000 system_server expire 27 lines
05-17 12:18:02.792 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 4 lines
05-17 12:18:02.792 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-17 12:18:02.820 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1748 android.content.ContextWrapper.bindService:756 org.codeaurora.ims.QtiImsExtConnector.bindQtiImsExtService:113 org.codeaurora.ims.QtiImsExtConnector.connect:88 com.android.incallui.BottomSheetHelper.setUp:141
05-17 12:18:02.832 1287 1287 I chatty : uid=1000 system_server expire 16 lines
05-17 12:18:02.877 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startActivity:993 android.content.ContextWrapper.startActivity:403 com.android.incallui.InCallPresenter.maybeStartRevealAnimation:2078 com.android.incallui.InCallServiceImpl.onBind:116 android.app.ActivityThread.handleBindService:4224
05-17 12:18:02.877 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startActivity:1005 android.app.ContextImpl.startActivity:994 android.content.ContextWrapper.startActivity:403 com.android.incallui.InCallPresenter.maybeStartRevealAnimation:2078 com.android.incallui.InCallServiceImpl.onBind:116
05-17 12:18:02.879 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 11 lines
05-17 12:18:02.963 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 9 lines
05-17 12:18:03.033 1287 2032 I chatty : uid=1000(system) ConnectionSvrFo expire 2 lines
05-17 12:18:03.035 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 1 line
05-17 12:18:03.036 1287 1287 I chatty : uid=1000 system_server expire 7 lines
05-17 12:18:03.078 1287 2415 I chatty : uid=1000(system) Binder:1287_A expire 12 lines
05-17 12:18:03.096 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 2 lines
05-17 12:18:03.133 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-17 12:18:03.448 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1111 android.content.ContextWrapper.sendBroadcast:468 com.android.incallui.InCallActivity.onCreate:296 android.app.Activity.performCreate:8161 android.app.Activity.performCreate:8145
05-17 12:18:03.454 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-17 12:18:03.548 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 8 lines
05-17 12:18:03.552 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-17 12:18:03.553 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 23 lines
05-17 12:18:03.565 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-17 12:18:03.566 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 12:18:03.569 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 5 lines
05-17 12:18:03.599 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 2 lines
05-17 12:18:03.678 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 1 line
05-17 12:18:03.702 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 6 lines
05-17 12:18:03.711 1795 1795 I TelecomFramework: TelephonyConnectionService: notifyCreateConnectionComplete TC@59_1: (...->CSW.hCCC)->CS.crCoC->H.CS.crCoC(cap/cast)@E-E-E-tzA
05-17 12:18:03.720 1795 1795 I TelecomFramework: TelephonyConnectionService: onAudioStateChanged TC@59_1 [AudioState isMuted: false, route: EARPIECE, supportedRouteMask: EARPIECE, SPEAKER, activeBluetoothDevice: [null], supportedBluetoothDevices: []]: (...->CSW.hCCC->CARSM.pM_UPDATE_SYSTEM_AUDIO_ROUTE)->CS.cASC->H.CS.cASC(cap/cast/cast)@E-E-E-tzA
05-17 12:18:03.969 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 18 lines
05-17 12:18:04.048 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 6 lines
05-17 12:18:04.267 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 12:18:05.106 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 1 line
05-17 12:18:05.108 1287 2023 I chatty : uid=1000(system) BluetoothRouteM expire 1 line
05-17 12:18:05.122 1287 1421 I chatty : uid=1000 system_server expire 1 line
05-17 12:18:05.459 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 12:18:05.833 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 10 lines
05-17 12:18:05.843 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 14 lines
05-17 12:18:05.868 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-17 12:18:05.970 1287 2415 I chatty : uid=1000(system) Binder:1287_A expire 12 lines
05-17 12:18:06.143 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 7 lines
05-17 12:18:06.592 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 11 lines
05-17 12:18:06.601 1795 1795 I TelecomFramework: TelephonyConnectionService: onAudioStateChanged TC@59_1 [AudioState isMuted: false, route: SPEAKER, supportedRouteMask: EARPIECE, SPEAKER, activeBluetoothDevice: [null], supportedBluetoothDevices: []]: (ICA.sAR->CARSM.pM_USER_SWITCH_SPEAKER)->CS.cASC->H.CS.cASC(ocd/cast)@E-uPM
05-17 12:18:12.530 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 1 line
05-17 12:18:12.609 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 1 line
05-17 12:18:12.609 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 1 line
05-17 12:18:12.609 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 1 line
05-17 12:18:12.610 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-17 12:18:12.611 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 1 line
05-17 12:18:12.617 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 6 lines
05-17 12:18:16.597 1287 1367 I chatty : uid=1000(system) ActivityManager expire 16 lines
05-17 12:18:58.976 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 14 lines
05-17 12:19:05.991 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-17 12:19:06.019 1287 1350 I chatty : uid=1000(system) android.display expire 6 lines
05-17 12:19:06.022 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 4 lines
05-17 12:19:06.280 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 12:19:11.016 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 5 lines
05-17 12:30:13.827 1287 1469 I chatty : uid=1000(system) InputReader expire 9 lines
05-17 12:30:13.828 1795 1795 I TelecomFramework: TelephonyConnectionService: disconnect TC@59_1: (TSI.eC)->CS.d->H.CS.d(cast)@E-uXM
05-17 12:30:13.830 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-17 12:30:13.902 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 1 line
05-17 12:30:13.913 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 4 lines
05-17 12:30:13.923 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-17 12:30:13.930 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 12:30:13.953 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 4 lines
05-17 12:30:14.037 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 6 lines
05-17 12:30:14.273 1287 2415 I chatty : uid=1000(system) Binder:1287_A expire 2 lines
05-17 12:30:14.327 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-17 12:30:14.345 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 11 lines
05-17 12:30:14.352 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 14 lines
05-17 12:30:14.390 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 10 lines
05-17 12:30:14.409 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 1 line
05-17 12:30:14.439 1287 1287 I chatty : uid=1000 system_server expire 13 lines
05-17 12:30:14.479 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-17 12:30:14.526 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 12:30:14.527 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 12:30:14.618 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 2 lines
05-17 12:30:14.619 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 12:30:14.801 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1126 android.content.ContextWrapper.sendBroadcast:473 com.android.incallui.MotorolaInCallUiNotifier.sendInCallUiBroadcast:75 com.android.incallui.MotorolaInCallUiNotifier.onStateChange:64 com.android.incallui.InCallPresenter.onCallListChange:1116
05-17 12:30:14.834 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 13 lines
05-17 12:30:14.897 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 1 line
05-17 12:30:14.897 1287 1347 I chatty : uid=1000(system) android.fg expire 2 lines
05-17 12:30:15.234 2597 2689 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1111 android.content.ContextWrapper.sendBroadcast:468 com.android.dialer.database.DialerDatabaseHelper.updateSmartDialDatabase:884 com.android.dialer.database.DialerDatabaseHelper.lambda$startSmartDialUpdateThread$0$DialerDatabaseHelper:358 com.android.dialer.database.-$$Lambda$DialerDatabaseHelper$PmaZioZincgK-Q97aU7q5zBCRZ0.call:4
05-17 12:30:15.377 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 12:30:15.431 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 4 lines
05-17 12:30:16.085 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 12:30:16.105 1287 1469 I chatty : uid=1000(system) InputReader expire 17 lines
05-17 12:30:16.456 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-17 12:30:16.554 1287 3506 I chatty : uid=1000(system) Binder:1287_E expire 4 lines
05-17 12:30:17.794 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-17 12:30:17.924 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 12 lines
05-17 12:30:17.962 1287 1350 I chatty : uid=1000(system) android.display expire 9 lines
05-17 12:30:18.812 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 4 lines
05-17 12:30:19.661 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 14 lines
05-17 12:30:19.692 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-17 12:30:19.716 1287 1350 I chatty : uid=1000(system) android.display expire 10 lines
05-17 12:30:19.722 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 12:30:19.730 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 4 lines
05-17 12:30:19.834 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 12:30:19.838 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 4 lines
05-17 12:30:23.627 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 1 line
05-17 12:30:46.318 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-17 12:30:46.407 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 12:30:46.478 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 5 lines
05-17 12:30:46.533 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 13 lines
05-17 12:30:46.555 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-17 12:30:46.685 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-17 12:30:46.816 1287 1350 I chatty : uid=1000(system) android.display expire 7 lines
05-17 12:30:46.956 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 12:30:47.093 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 4 lines
05-17 12:30:54.688 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 4 lines
05-17 12:30:54.740 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 1 line
05-17 12:30:54.783 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 5 lines
05-17 12:30:54.784 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 12:30:54.885 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-17 12:30:59.683 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-17 12:40:00.931 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-17 12:40:16.779 1287 1467 I chatty : uid=1000(system) UEventObserver expire 9 lines
05-17 12:40:16.785 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 10 lines
05-17 12:40:16.934 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 4 lines
05-17 12:40:16.970 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-17 12:40:17.020 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-17 12:40:17.141 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 5 lines
05-17 12:40:17.284 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
05-17 12:40:17.455 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 12:40:17.472 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 1 line
05-17 12:40:18.496 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 11 lines
05-17 12:40:18.515 1287 3506 I chatty : uid=1000(system) Binder:1287_E expire 8 lines
05-17 12:40:18.954 2597 2682 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1111 android.content.ContextWrapper.sendBroadcast:468 com.android.dialer.database.DialerDatabaseHelper.updateSmartDialDatabase:884 com.android.dialer.database.DialerDatabaseHelper.lambda$startSmartDialUpdateThread$0$DialerDatabaseHelper:358 com.android.dialer.database.-$$Lambda$DialerDatabaseHelper$PmaZioZincgK-Q97aU7q5zBCRZ0.call:4
05-17 12:40:19.002 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-17 12:40:19.026 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 9 lines
05-17 12:40:19.564 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 12:40:20.114 1287 1287 I chatty : uid=1000 system_server expire 17 lines
05-17 12:40:20.169 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 3 lines
05-17 12:40:20.170 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-17 12:40:20.170 1287 1287 I chatty : uid=1000 system_server expire 16 lines
05-17 12:40:20.173 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1748 android.content.ContextWrapper.bindService:756 org.codeaurora.ims.QtiImsExtConnector.bindQtiImsExtService:113 org.codeaurora.ims.QtiImsExtConnector.connect:88 com.android.incallui.BottomSheetHelper.setUp:141
05-17 12:40:20.186 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startActivity:993 android.content.ContextWrapper.startActivity:403 com.android.incallui.InCallPresenter.maybeStartRevealAnimation:2078 com.android.incallui.InCallServiceImpl.onBind:116 android.app.ActivityThread.handleBindService:4224
05-17 12:40:20.186 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startActivity:1005 android.app.ContextImpl.startActivity:994 android.content.ContextWrapper.startActivity:403 com.android.incallui.InCallPresenter.maybeStartRevealAnimation:2078 com.android.incallui.InCallServiceImpl.onBind:116
05-17 12:40:20.188 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 12 lines
05-17 12:40:20.194 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 1 line
05-17 12:40:20.242 1287 2415 I chatty : uid=1000(system) Binder:1287_A expire 12 lines
05-17 12:40:20.318 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-17 12:40:20.402 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1111 android.content.ContextWrapper.sendBroadcast:468 com.android.incallui.InCallActivity.onCreate:296 android.app.Activity.performCreate:8161 android.app.Activity.performCreate:8145
05-17 12:40:20.405 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-17 12:40:20.405 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 9 lines
05-17 12:40:20.485 1287 1287 I chatty : uid=1000 system_server expire 8 lines
05-17 12:40:20.500 1287 2032 I chatty : uid=1000(system) ConnectionSvrFo expire 2 lines
05-17 12:40:20.520 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 2 lines
05-17 12:40:20.572 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 4 lines
05-17 12:40:20.665 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 1 line
05-17 12:40:20.767 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 25 lines
05-17 12:40:20.771 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-17 12:40:20.788 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 15 lines
05-17 12:40:20.799 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 3 lines
05-17 12:40:20.809 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 17 lines
05-17 12:40:20.915 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 4 lines
05-17 12:40:20.916 1795 1795 I TelecomFramework: TelephonyConnectionService: notifyCreateConnectionComplete TC@60_1: (...->CSW.hCCC)->CS.crCoC->H.CS.crCoC(cap/cast)@E-E-E-um4
05-17 12:40:20.922 1795 1795 I TelecomFramework: TelephonyConnectionService: onAudioStateChanged TC@60_1 [AudioState isMuted: false, route: EARPIECE, supportedRouteMask: EARPIECE, SPEAKER, activeBluetoothDevice: [null], supportedBluetoothDevices: []]: (...->CSW.hCCC->CARSM.pM_UPDATE_SYSTEM_AUDIO_ROUTE)->CS.cASC->H.CS.cASC(cap/cast/cast)@E-E-E-um4
05-17 12:40:21.118 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 12:40:22.372 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 1 line
05-17 12:40:22.374 1287 2023 I chatty : uid=1000(system) BluetoothRouteM expire 1 line
05-17 12:40:22.389 1287 1847 I chatty : uid=1000 system_server expire 1 line
05-17 12:40:22.415 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 12:40:22.603 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 1 line
05-17 12:40:22.603 1795 1795 I TelecomFramework: TelephonyConnectionService: onAudioStateChanged TC@60_1 [AudioState isMuted: false, route: SPEAKER, supportedRouteMask: EARPIECE, SPEAKER, activeBluetoothDevice: [null], supportedBluetoothDevices: []]: (ICA.sAR->CARSM.pM_USER_SWITCH_SPEAKER)->CS.cASC->H.CS.cASC(ocd/cast)@E-u08
05-17 12:40:23.157 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 25 lines
05-17 12:40:23.191 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 9 lines
05-17 12:40:23.195 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 10 lines
05-17 12:40:23.243 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-17 12:40:23.341 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 6 lines
05-17 12:40:23.529 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 1 line
05-17 12:40:24.549 1287 1367 I chatty : uid=1000(system) ActivityManager expire 12 lines
05-17 12:41:09.660 1287 1366 I chatty : uid=1000(system) android.bg expire 1 line
05-17 12:41:15.539 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 14 lines
05-17 12:41:22.554 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-17 12:41:22.589 1287 2415 I chatty : uid=1000(system) Binder:1287_A expire 4 lines
05-17 12:41:22.597 1287 1350 I chatty : uid=1000(system) android.display expire 6 lines
05-17 12:41:22.864 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 12:41:41.550 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-17 12:42:48.964 1287 1469 I chatty : uid=1000(system) InputReader expire 9 lines
05-17 12:42:48.966 1795 1795 I TelecomFramework: TelephonyConnectionService: disconnect TC@60_1: (TSI.eC)->CS.d->H.CS.d(cast)@E-vHw
05-17 12:42:48.968 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 4 lines
05-17 12:42:49.019 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-17 12:42:49.020 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 2 lines
05-17 12:42:49.054 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 9 lines
05-17 12:42:49.066 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-17 12:42:49.144 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 1 line
05-17 12:42:49.153 1287 1469 I chatty : uid=1000(system) InputReader expire 16 lines
05-17 12:42:49.177 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-17 12:42:49.276 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 12:42:49.332 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 1 line
05-17 12:42:49.385 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 6 lines
05-17 12:42:49.392 1795 1795 I TelecomFramework: TelephonyConnectionService: disconnect TC@60_1: (TSI.eC)->CS.d->H.CS.d(cast)@E-vII
05-17 12:42:49.444 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 11 lines
05-17 12:42:49.449 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 14 lines
05-17 12:42:49.471 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 2 lines
05-17 12:42:49.480 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 2 lines
05-17 12:42:49.485 1795 1795 I TelecomFramework: TelephonyConnectionService: disconnect TC@60_1: (TSI.eC)->CS.d->H.CS.d(cast)@E-vIU
05-17 12:42:49.485 1795 1795 W TelecomFramework: TelephonyConnectionService: disconnect - Cannot find conference TC@60_1: (TSI.eC)->CS.d->H.CS.d(cast)@E-vIU
05-17 12:42:49.508 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 4 lines
05-17 12:42:49.511 1287 1287 I chatty : uid=1000 system_server expire 12 lines
05-17 12:42:49.575 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-17 12:42:49.587 1287 1469 I chatty : uid=1000(system) InputReader expire 20 lines
05-17 12:42:49.588 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 12:42:49.733 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 12:42:49.751 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 1 line
05-17 12:42:49.953 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 12:42:49.957 1287 1469 I chatty : uid=1000(system) InputReader expire 2 lines
05-17 12:42:49.976 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-17 12:42:50.001 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 31 lines
05-17 12:42:50.051 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 8 lines
05-17 12:42:50.052 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1126 android.content.ContextWrapper.sendBroadcast:473 com.android.incallui.MotorolaInCallUiNotifier.sendInCallUiBroadcast:75 com.android.incallui.MotorolaInCallUiNotifier.onStateChange:64 com.android.incallui.InCallPresenter.onCallListChange:1116
05-17 12:42:50.060 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-17 12:42:50.076 1287 1368 I chatty : uid=1000(system) ActivityManager expire 3 lines
05-17 12:42:50.119 1287 3506 I chatty : uid=1000(system) Binder:1287_E expire 6 lines
05-17 12:42:50.179 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 19 lines
05-17 12:42:50.476 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 12 lines
05-17 12:42:50.548 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 12:42:50.559 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 12:42:50.566 1287 2415 I chatty : uid=1000(system) Binder:1287_A expire 4 lines
05-17 12:42:50.690 1287 1469 I chatty : uid=1000(system) InputReader expire 17 lines
05-17 12:42:50.822 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 8 lines
05-17 12:42:51.088 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-17 12:42:51.139 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 4 lines
05-17 12:42:51.518 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-17 12:42:51.738 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 12:42:52.376 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-17 12:42:52.469 1287 2415 I chatty : uid=1000(system) Binder:1287_A expire 13 lines
05-17 12:42:52.518 1287 1350 I chatty : uid=1000(system) android.display expire 18 lines
05-17 12:42:52.929 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 12:42:53.309 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 8 lines
05-17 12:42:54.262 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-17 12:42:54.280 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 9 lines
05-17 12:42:54.315 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 12:42:54.326 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 4 lines
05-17 12:42:54.428 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 12:50:56.915 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-17 13:18:21.959 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 13:18:25.218 1287 1471 I chatty : uid=1000(system) NetworkWatchlis expire 2 lines
05-17 13:18:33.192 1287 1368 I chatty : uid=1000(system) ActivityManager expire 14 lines
05-17 13:18:33.490 3992 2555 E ActivityThread: Failed to find provider info for androidx.car.app.connection
05-17 13:18:33.599 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 2 lines
05-17 13:18:34.614 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-17 13:18:34.781 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 1 line
05-17 13:18:35.872 2706 2776 E ActivityThread: Failed to find provider info for com.google.android.apps.messaging.shared.datamodel.provider.sharedstorage.SharedStorageProvider
05-17 13:18:38.035 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 8 lines
05-17 13:18:41.275 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 13:18:41.275 1287 1424 I chatty : uid=1000(system) PackageManager expire 1 line
05-17 13:18:42.506 1287 1287 I chatty : uid=1000 system_server expire 8 lines
05-17 13:18:43.194 1287 1347 I chatty : uid=1000(system) android.fg expire 9 lines
05-17 13:18:45.051 1287 1348 I chatty : uid=1000(system) android.ui expire 4 lines
05-17 13:18:47.865 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 3 lines
05-17 13:21:25.849 1287 2415 I chatty : uid=1000(system) Binder:1287_A expire 3 lines
05-17 13:37:23.825 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 1 line
05-17 13:42:53.087 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 1 line
05-17 13:52:35.361 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 1 line
05-17 13:52:35.361 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-17 13:59:29.629 1287 3351 I chatty : uid=1000(system) Binder:1287_19 expire 4 lines
05-17 13:59:29.633 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 4 lines
05-17 13:59:29.660 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-17 13:59:32.023 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 1 line
05-17 13:59:32.042 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 2 lines
05-17 13:59:32.106 1287 1287 I chatty : uid=1000 system_server expire 10 lines
05-17 13:59:32.135 1287 1367 I chatty : uid=1000(system) ActivityManager expire 11 lines
05-17 13:59:32.172 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
05-17 13:59:32.175 1287 1350 I chatty : uid=1000(system) android.display expire 3 lines
05-17 13:59:32.180 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-17 13:59:32.299 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 1 line
05-17 13:59:32.398 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 7 lines
05-17 13:59:32.668 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 13:59:34.270 1287 1368 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-17 13:59:35.880 1287 1366 I chatty : uid=1000(system) android.bg expire 30 lines
05-17 13:59:35.904 1287 1287 I chatty : uid=1000 system_server expire 19 lines
05-17 13:59:35.955 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 15 lines
05-17 13:59:36.254 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 1 line
05-17 13:59:36.255 1287 1368 I chatty : uid=1000(system) ActivityManager expire 12 lines
05-17 13:59:36.390 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 13:59:36.394 1287 3351 I chatty : uid=1000(system) Binder:1287_19 expire 13 lines
05-17 13:59:36.441 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 3 lines
05-17 13:59:37.174 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 4 lines
05-17 13:59:37.920 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 2 lines
05-17 13:59:37.920 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-17 13:59:37.921 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 1 line
05-17 13:59:37.924 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 3 lines
05-17 13:59:37.924 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 11 lines
05-17 13:59:38.459 1287 1467 I chatty : uid=1000(system) UEventObserver expire 6 lines
05-17 13:59:38.470 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 5 lines
05-17 13:59:38.610 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 4 lines
05-17 13:59:38.646 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 13:59:39.345 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 4 lines
05-17 13:59:39.346 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 8 lines
05-17 13:59:39.492 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 1 line
05-17 13:59:42.416 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 14 lines
05-17 13:59:43.038 1287 1368 I chatty : uid=1000(system) ActivityManager expire 3 lines
05-17 13:59:43.567 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 12 lines
05-17 13:59:43.919 1287 3506 I chatty : uid=1000(system) Binder:1287_E expire 2 lines
05-17 13:59:44.017 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 4 lines
05-17 13:59:44.077 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 5 lines
05-17 13:59:44.216 1287 1368 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-17 13:59:44.379 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-17 13:59:44.616 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-17 13:59:44.717 1287 3506 I chatty : uid=1000(system) Binder:1287_E expire 1 line
05-17 13:59:44.823 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 24 lines
05-17 13:59:44.824 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
05-17 13:59:44.924 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 8 lines
05-17 13:59:45.882 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 13:59:47.668 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 5 lines
05-17 13:59:47.679 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 12 lines
05-17 13:59:48.316 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 37 lines
05-17 13:59:53.030 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 4 lines
05-17 13:59:58.406 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 14:00:00.220 1287 1348 I chatty : uid=1000(system) android.ui expire 17 lines
05-17 14:00:00.293 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 1 line
05-17 14:00:00.411 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 14:00:00.645 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-17 14:00:00.705 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 16 lines
05-17 14:00:00.834 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-17 14:00:00.968 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 4 lines
05-17 14:00:00.996 1287 1350 I chatty : uid=1000(system) android.display expire 18 lines
05-17 14:00:01.412 1287 1367 I chatty : uid=1000(system) ActivityManager expire 5 lines
05-17 14:00:01.740 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 6 lines
05-17 14:00:02.693 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-17 14:00:02.712 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-17 14:00:02.744 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 14:00:02.759 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 9 lines
05-17 14:00:02.898 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 14:03:43.007 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 1 line
05-17 14:08:14.960 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 14:08:15.664 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-17 14:08:16.952 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-17 14:08:16.979 1287 1367 I chatty : uid=1000(system) ActivityManager expire 10 lines
05-17 14:08:16.988 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 1 line
05-17 14:08:17.006 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 17 lines
05-17 14:08:17.012 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-17 14:08:17.030 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-17 14:08:17.248 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 10 lines
05-17 14:08:17.419 1287 1368 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-17 14:08:17.524 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 14:08:25.017 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 7 lines
05-17 14:08:25.121 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 16 lines
05-17 14:08:25.122 1287 1347 I chatty : uid=1000(system) android.fg expire 6 lines
05-17 14:08:25.256 1287 1350 I chatty : uid=1000(system) android.display expire 7 lines
05-17 14:08:25.467 1287 1367 I chatty : uid=1000(system) ActivityManager expire 14 lines
05-17 14:08:30.020 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-17 14:16:11.969 1287 1287 I chatty : uid=1000 system_server expire 6 lines
05-17 14:31:52.416 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 1 line
05-17 14:31:52.435 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-17 14:31:53.693 1287 3506 I chatty : uid=1000(system) Binder:1287_E expire 1 line
05-17 14:31:53.949 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 5 lines
05-17 14:31:54.284 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 1 line
05-17 14:32:01.725 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 4 lines
05-17 14:32:01.725 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 10 lines
05-17 14:32:01.726 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 5 lines
05-17 14:32:01.742 1287 1350 I chatty : uid=1000(system) android.display expire 9 lines
05-17 14:32:01.785 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 5 lines
05-17 14:32:01.827 1287 1347 I chatty : uid=1000(system) android.fg expire 5 lines
05-17 14:35:03.000 1287 1287 I chatty : uid=1000 system_server expire 3 lines
05-17 14:54:48.201 1287 1368 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 14:54:48.333 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 1 line
05-17 15:09:56.866 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 1 line
05-17 15:21:55.101 1287 1467 I chatty : uid=1000(system) UEventObserver expire 9 lines
05-17 15:21:55.108 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 12 lines
05-17 15:21:55.203 1287 1467 I chatty : uid=1000(system) UEventObserver expire 2 lines
05-17 15:21:55.211 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 5 lines
05-17 15:21:55.218 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-17 15:21:55.222 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-17 15:21:55.274 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 5 lines
05-17 15:21:55.315 1287 1367 I chatty : uid=1000(system) ActivityManager expire 11 lines
05-17 15:21:55.347 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 15:21:55.398 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 16 lines
05-17 15:21:55.888 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 15:21:56.011 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 6 lines
05-17 15:21:56.070 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 1 line
05-17 15:21:56.092 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 1 line
05-17 15:21:56.093 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-17 15:21:57.683 1287 1287 I chatty : uid=1000 system_server expire 14 lines
05-17 15:21:57.866 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 1 line
05-17 15:22:04.474 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 12 lines
05-17 15:22:04.764 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 15:22:05.141 1287 1287 I chatty : uid=1000 system_server expire 10 lines
05-17 15:22:06.715 1287 1367 I chatty : uid=1000(system) ActivityManager expire 5 lines
05-17 15:22:07.045 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 20 lines
05-17 15:22:08.051 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 32 lines
05-17 15:22:08.077 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 7 lines
05-17 15:22:08.672 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-17 15:22:08.718 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 4 lines
05-17 15:22:08.757 1287 1367 I chatty : uid=1000(system) ActivityManager expire 11 lines
05-17 15:22:15.476 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
05-17 15:22:18.024 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 12 lines
05-17 15:22:18.165 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 4 lines
05-17 15:22:42.990 1287 1367 I chatty : uid=1000(system) ActivityManager expire 23 lines
05-17 15:23:11.492 1287 1366 I chatty : uid=1000(system) android.bg expire 1 line
05-17 15:23:14.593 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 14 lines
05-17 15:23:21.613 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-17 15:23:21.651 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 4 lines
05-17 15:23:21.661 1287 1350 I chatty : uid=1000(system) android.display expire 11 lines
05-17 15:23:21.801 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 8 lines
05-17 15:23:21.906 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 15:23:21.996 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 15:23:23.055 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-17 15:23:23.076 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
05-17 15:23:23.086 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-17 15:23:23.115 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-17 15:23:23.147 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-17 15:23:23.215 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 9 lines
05-17 15:23:23.470 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-17 15:23:23.729 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 15:23:23.764 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 19 lines
05-17 15:23:25.590 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 4 lines
05-17 15:23:25.682 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 4 lines
05-17 15:23:27.610 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-17 15:23:36.138 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 16 lines
05-17 15:23:36.702 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 15:23:36.752 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 27 lines
05-17 15:23:37.908 1287 1367 I chatty : uid=1000(system) ActivityManager expire 12 lines
05-17 15:23:38.609 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 16 lines
05-17 15:23:51.354 1287 1367 I chatty : uid=1000(system) ActivityManager expire 12 lines
05-17 15:24:05.414 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 15:24:19.685 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-17 15:24:19.874 1287 1350 I chatty : uid=1000(system) android.display expire 9 lines
05-17 15:24:20.615 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 4 lines
05-17 15:24:21.556 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 15 lines
05-17 15:24:21.581 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-17 15:24:21.603 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 15:24:21.610 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 15:24:21.624 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 8 lines
05-17 15:24:22.008 1287 1367 I chatty : uid=1000(system) ActivityManager expire 10 lines
05-17 15:26:41.246 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-17 15:26:41.401 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 9 lines
05-17 15:26:41.734 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-17 15:26:41.825 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 16 lines
05-17 15:26:41.827 1287 1347 I chatty : uid=1000(system) android.fg expire 6 lines
05-17 15:26:41.951 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 1 line
05-17 15:26:49.616 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-17 15:26:49.643 1287 1350 I chatty : uid=1000(system) android.display expire 9 lines
05-17 15:26:49.714 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 4 lines
05-17 15:28:27.611 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-17 15:28:27.643 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 6 lines
05-17 15:28:27.660 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 14 lines
05-17 15:28:27.667 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-17 15:28:27.679 1287 1367 I chatty : uid=1000(system) ActivityManager expire 9 lines
05-17 15:28:27.686 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-17 15:28:27.912 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 5 lines
05-17 15:28:28.153 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 15:28:35.689 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 4 lines
05-17 15:28:35.781 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 5 lines
05-17 15:28:35.783 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 15:28:35.893 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-17 15:28:40.682 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 5 lines
05-17 15:31:37.044 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 1 line
05-17 15:52:34.997 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 15:52:43.727 1287 1467 I chatty : uid=1000(system) UEventObserver expire 11 lines
05-17 15:52:43.733 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 14 lines
05-17 15:52:43.860 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-17 15:52:43.885 1287 1367 I chatty : uid=1000(system) ActivityManager expire 18 lines
05-17 15:52:44.043 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 5 lines
05-17 15:52:44.114 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 15:52:44.214 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
05-17 15:52:44.477 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 15:52:44.488 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 13 lines
05-17 15:52:46.500 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 1 line
05-17 15:52:47.235 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-17 15:53:02.440 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 8 lines
05-17 15:53:03.006 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 15:53:04.095 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 15:53:04.515 1287 1348 I chatty : uid=1000(system) android.ui expire 17 lines
05-17 15:53:04.555 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 1 line
05-17 15:53:04.962 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 4 lines
05-17 15:53:06.053 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-17 15:53:06.160 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-17 15:53:06.162 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 12 lines
05-17 15:53:06.581 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-17 15:53:07.053 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 8 lines
05-17 15:53:07.901 1287 1350 I chatty : uid=1000(system) android.display expire 10 lines
05-17 15:53:07.904 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-17 15:53:07.927 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-17 15:53:07.960 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 15:53:07.969 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 4 lines
05-17 15:53:08.076 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 15:53:08.353 1287 1367 I chatty : uid=1000(system) ActivityManager expire 3 lines
05-17 15:56:04.884 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 2 lines
05-17 15:56:04.909 1287 1287 I chatty : uid=1000 system_server expire 7 lines
05-17 15:56:04.923 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 6 lines
05-17 15:56:04.965 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 19 lines
05-17 15:56:05.195 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 6 lines
05-17 15:56:05.212 1287 2511 I chatty : uid=1000 system_server expire 11 lines
05-17 15:56:05.214 1287 1287 I chatty : uid=1000 system_server expire 4 lines
05-17 15:56:05.219 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 12 lines
05-17 15:56:05.229 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-17 15:56:05.230 1795 1795 I TelecomFramework: TelephonyConnectionService: notifyCreateConnectionComplete TC@61_1: (...->CSW.hCCC)->CS.crCoC->H.CS.crCoC(cap/cast)@E-E-E-vbg
05-17 15:56:05.429 1287 2513 I chatty : uid=1000 system_server expire 1 line
05-17 15:56:05.431 1287 2511 I chatty : uid=1000 system_server expire 20 lines
05-17 15:56:05.453 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 4 lines
05-17 15:56:05.453 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 8 lines
05-17 15:56:05.462 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-17 15:56:05.462 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 15:56:05.469 1795 1795 I TelecomFramework: TelephonyConnectionService: onAudioStateChanged TC@61_1 [AudioState isMuted: false, route: EARPIECE, supportedRouteMask: EARPIECE, SPEAKER, activeBluetoothDevice: [null], supportedBluetoothDevices: []]: (...->CSW.hCCC->ICFG.sF->ICFG.sF->ICFG.sF->CILH.sL->CILH.oQC->BCF.gBS->BCF.gBS->ICFG.sF->ICFG.sF->ICFG.sF->ICFG.sF->ICFG.sF->ICFG.sF->ICFG.sF->CARSM.pM_UPDATE_SYSTEM_AUDIO_ROUTE)->CS.cASC->H.CS.cASC(cap/cast/cast)@E-E-E-vbg
05-17 15:56:05.549 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1748 android.content.ContextWrapper.bindService:756 org.codeaurora.ims.QtiImsExtConnector.bindQtiImsExtService:113 org.codeaurora.ims.QtiImsExtConnector.connect:88 com.android.incallui.BottomSheetHelper.setUp:141
05-17 15:56:05.657 1287 1347 I chatty : uid=1000(system) android.fg expire 5 lines
05-17 15:56:05.659 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 1 line
05-17 15:56:05.704 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-17 15:56:05.792 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 2 lines
05-17 15:56:05.965 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 20 lines
05-17 15:56:06.202 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 1 line
05-17 15:56:06.220 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 5 lines
05-17 15:56:06.299 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1111 android.content.ContextWrapper.sendBroadcast:468 com.android.incallui.InCallActivity.onCreate:296 android.app.Activity.performCreate:8161 android.app.Activity.performCreate:8145
05-17 15:56:06.302 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 15:56:06.470 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1126 android.content.ContextWrapper.sendBroadcast:473 com.android.incallui.MotorolaInCallUiNotifier.sendInCallUiBroadcast:75 com.android.incallui.MotorolaInCallUiNotifier.onUiShowing:55 com.android.incallui.InCallPresenter.onUiShowing:1527
05-17 15:56:06.491 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 9 lines
05-17 15:56:06.516 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
05-17 15:56:06.533 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-17 15:56:06.561 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-17 15:56:06.636 1287 1350 I chatty : uid=1000(system) android.display expire 3 lines
05-17 15:56:10.238 1287 1467 I chatty : uid=1000(system) UEventObserver expire 4 lines
05-17 15:56:10.242 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 10 lines
05-17 15:56:10.251 1287 2032 I chatty : uid=1000(system) ConnectionSvrFo expire 1 line
05-17 15:56:10.251 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 5 lines
05-17 15:56:10.253 1287 2032 I chatty : uid=1000(system) ConnectionSvrFo expire 11 lines
05-17 15:56:10.253 1795 1795 I TelecomFramework: TelephonyConnectionService: answer TC@61_1: (TSI.aRC->CSFM.rF)->CS.an->H.CS.an(cast)@E-ve0
05-17 15:56:10.255 1287 1467 I chatty : uid=1000(system) UEventObserver expire 7 lines
05-17 15:56:10.257 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-17 15:56:10.415 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 3 lines
05-17 15:56:10.420 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 5 lines
05-17 15:56:10.446 1287 1350 I chatty : uid=1000(system) android.display expire 2 lines
05-17 15:56:10.461 1287 1351 I chatty : uid=1000(system) android.anim expire 4 lines
05-17 15:56:10.543 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 15 lines
05-17 15:56:10.576 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 1 line
05-17 15:56:10.576 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 2 lines
05-17 15:56:10.606 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 3 lines
05-17 15:56:10.609 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 9 lines
05-17 15:56:10.654 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 9 lines
05-17 15:56:10.732 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1111 android.content.ContextWrapper.sendBroadcast:468 com.android.incallui.InCallActivity.onCreate:296 android.app.Activity.performCreate:8161 android.app.Activity.performCreate:8145
05-17 15:56:10.737 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 15:56:10.796 1795 1795 I TelecomFramework: TelephonyConnectionService: onAudioStateChanged TC@61_1 [AudioState isMuted: false, route: EARPIECE, supportedRouteMask: EARPIECE, SPEAKER, activeBluetoothDevice: [null], supportedBluetoothDevices: []]: (TSI.aRC->CSFM.rF->CAMSM.pM_1002->CARSM.pM_SWITCH_FOCUS)->CS.cASC->H.CS.cASC(cast)@E-ve0
05-17 15:56:10.800 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 15:56:10.867 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1126 android.content.ContextWrapper.sendBroadcast:473 com.android.incallui.MotorolaInCallUiNotifier.sendInCallUiBroadcast:75 com.android.incallui.MotorolaInCallUiNotifier.onUiShowing:55 com.android.incallui.InCallPresenter.onUiShowing:1527
05-17 15:56:10.868 1287 1350 I chatty : uid=1000(system) android.display expire 2 lines
05-17 15:56:10.926 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 15:56:11.205 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 13 lines
05-17 15:56:12.493 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-17 15:56:12.496 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-17 15:56:12.749 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-17 15:56:27.928 1287 1467 I chatty : uid=1000(system) UEventObserver expire 28 lines
05-17 15:56:27.942 1795 1795 I TelecomFramework: TelephonyConnectionService: disconnect TC@61_1: (TSI.eC)->CS.d->H.CS.d(cast)@E-vk8
05-17 15:56:27.943 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 1 line
05-17 15:56:27.957 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 2 lines
05-17 15:56:28.047 1287 1467 I chatty : uid=1000(system) UEventObserver expire 2 lines
05-17 15:56:28.182 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-17 15:56:28.206 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 27 lines
05-17 15:56:28.244 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 2 lines
05-17 15:56:28.573 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 15:56:28.603 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 4 lines
05-17 15:56:28.610 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-17 15:56:28.635 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 8 lines
05-17 15:56:28.636 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 1 line
05-17 15:56:28.653 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 1 line
05-17 15:56:28.662 1287 1287 I chatty : uid=1000 system_server expire 14 lines
05-17 15:56:28.666 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 4 lines
05-17 15:56:28.699 1287 1367 I chatty : uid=1000(system) ActivityManager expire 5 lines
05-17 15:56:28.699 1287 1368 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-17 15:56:28.741 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-17 15:56:28.884 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 4 lines
05-17 15:56:28.891 2597 2597 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1126 android.content.ContextWrapper.sendBroadcast:473 com.android.incallui.MotorolaInCallUiNotifier.sendInCallUiBroadcast:75 com.android.incallui.MotorolaInCallUiNotifier.onStateChange:64 com.android.incallui.InCallPresenter.onCallListChange:1116
05-17 15:56:29.844 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-17 15:56:29.994 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 15:56:30.044 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 9 lines
05-17 15:56:30.071 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-17 15:56:30.239 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 8 lines
05-17 15:56:30.403 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-17 15:56:30.427 1287 1351 I chatty : uid=1000(system) android.anim expire 2 lines
05-17 15:56:30.499 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 4 lines
05-17 15:56:30.614 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-17 15:56:30.669 1287 1287 I chatty : uid=1000 system_server expire 6 lines
05-17 15:56:31.196 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 5 lines
05-17 15:56:31.201 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 15:56:35.177 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-17 15:56:36.995 1287 1467 I chatty : uid=1000(system) UEventObserver expire 11 lines
05-17 15:56:37.022 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 10 lines
05-17 15:56:37.203 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 4 lines
05-17 15:56:37.312 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 5 lines
05-17 15:56:37.422 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
05-17 15:56:37.920 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 15:56:38.059 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 1 line
05-17 15:56:38.897 1287 1467 I chatty : uid=1000(system) UEventObserver expire 31 lines
05-17 15:56:39.003 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 12 lines
05-17 15:56:39.037 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-17 15:56:39.443 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-17 15:56:39.883 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 4 lines
05-17 15:56:40.472 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-17 15:56:40.811 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-17 15:56:40.816 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 4 lines
05-17 15:56:40.866 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-17 15:56:40.907 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 12 lines
05-17 15:56:40.987 1287 1351 I chatty : uid=1000(system) android.anim expire 2 lines
05-17 15:56:41.060 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 1 line
05-17 15:56:41.069 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 8 lines
05-17 15:56:41.091 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 13 lines
05-17 15:56:41.272 1287 1367 I chatty : uid=1000(system) ActivityManager expire 3 lines
05-17 15:56:43.923 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-17 15:56:44.041 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 3 lines
05-17 15:56:44.069 1287 1350 I chatty : uid=1000(system) android.display expire 19 lines
05-17 15:56:44.478 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-17 15:56:44.900 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 9 lines
05-17 15:56:45.759 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 14 lines
05-17 15:56:45.777 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 5 lines
05-17 15:56:45.814 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-17 15:56:45.913 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 15:56:45.915 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 4 lines
05-17 16:04:48.017 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 16:04:50.840 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 5 lines
05-17 16:17:03.646 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-17 16:17:03.736 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 1 line
05-17 16:17:03.759 1287 1367 I chatty : uid=1000(system) ActivityManager expire 8 lines
05-17 16:17:03.826 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 16 lines
05-17 16:17:03.895 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 16:17:04.070 1287 1350 I chatty : uid=1000(system) android.display expire 11 lines
05-17 16:17:04.164 1287 1347 I chatty : uid=1000(system) android.fg expire 4 lines
05-17 16:17:04.296 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 1 line
05-17 16:17:11.814 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-17 16:17:11.853 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 14 lines
05-17 16:17:11.899 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 4 lines
05-17 16:23:55.181 1287 1467 I chatty : uid=1000(system) UEventObserver expire 11 lines
05-17 16:23:55.328 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 5 lines
05-17 16:23:55.337 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-17 16:23:55.339 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 4 lines
05-17 16:23:55.435 1287 1287 I chatty : uid=1000 system_server expire 3 lines
05-17 16:23:55.438 1287 1367 I chatty : uid=1000(system) ActivityManager expire 9 lines
05-17 16:23:55.440 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-17 16:23:55.451 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-17 16:23:55.544 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 5 lines
05-17 16:23:55.947 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-17 16:23:56.091 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 1 line
05-17 16:23:57.102 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 17 lines
05-17 16:23:57.145 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 8 lines
05-17 16:23:58.291 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 11 lines
05-17 16:23:58.314 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 10 lines
05-17 16:23:58.953 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 16:23:59.200 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 27 lines
05-17 16:24:01.029 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 16:24:09.157 1287 1348 I chatty : uid=1000(system) android.ui expire 17 lines
05-17 16:24:12.363 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 4 lines
05-17 16:24:13.858 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 21 lines
05-17 16:24:14.410 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-17 16:24:14.471 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 15 lines
05-17 16:24:17.226 1287 1469 I chatty : uid=1000(system) InputReader expire 17 lines
05-17 16:24:17.713 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 12 lines
05-17 16:24:19.141 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 7 lines
05-17 16:24:19.766 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 5 lines
05-17 16:24:19.774 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-17 16:24:20.089 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-17 16:24:30.027 1287 1348 I chatty : uid=1000(system) android.ui expire 17 lines
05-17 16:24:30.476 1287 1350 I chatty : uid=1000(system) android.display expire 7 lines
05-17 16:24:34.936 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 1 line
05-17 16:25:23.042 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
05-17 16:25:30.061 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-17 16:25:30.097 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 4 lines
05-17 16:25:30.121 1287 1350 W ActivityTaskManager: servicetracker HIDL not available
05-17 16:25:30.121 1287 1350 E ActivityTaskManager: Unable to get servicetracker HAL instance
05-17 16:25:30.157 1287 1310 W ActivityTaskManager: servicetracker HIDL not available
05-17 16:25:30.157 1287 1310 E ActivityTaskManager: Unable to get servicetracker HAL instance
05-17 16:25:30.158 1287 1310 W ActivityTaskManager: servicetracker HIDL not available
05-17 16:25:30.158 1287 1310 E ActivityTaskManager: Unable to get servicetracker HAL instance
05-17 16:25:30.374 1287 1406 I DreamManagerService: Entering dreamland.
05-17 16:25:30.375 1287 1406 I PowerManagerService: Dozing...
05-17 16:25:30.378 1287 1347 I DreamController: Starting dream: name=ComponentInfo{com.android.systemui/com.android.systemui.doze.DozeService}, isTest=false, canDoze=true, userId=0
05-17 16:25:35.056 1287 1350 W ActivityTaskManager: Sleep timeout! Sleeping now.
05-17 16:25:35.087 1287 1379 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
05-17 16:30:52.513 1287 1347 W Looper : Slow delivery took 202ms android.fg h=android.os.Handler c=<recycled PooledLambda@4d328ca> m=0
05-17 16:30:52.636 1287 1347 W Looper : Drained
05-17 16:30:52.910 1287 1287 D NotificationService: 0|com.android.messaging|0|com.android.messaging:sms:|10111: granting content://settings/system/notification_sound
05-17 16:30:52.911 1287 1287 I chatty : uid=1000 system_server identical 2 lines
05-17 16:30:52.911 1287 1287 D NotificationService: 0|com.android.messaging|0|com.android.messaging:sms:|10111: granting content://settings/system/notification_sound
05-17 16:30:52.913 1287 1287 W NotificationHistory: Attempted to add notif for locked/gone/disabled user 0
05-17 16:30:52.934 1287 1367 I DropBoxManagerService: add tag=system_server_wtf isTagEnabled=true flags=0x2
05-17 16:30:52.939 1287 1367 I DropBoxManagerService: add tag=system_server_wtf isTagEnabled=true flags=0x2
05-17 16:30:52.943 1287 1444 I PowerManagerService: Waking up from Dozing (uid=10174, reason=WAKE_REASON_APPLICATION, details=bright)...
05-17 16:30:52.959 1287 1406 I DisplayPowerController: Blocking screen on until initial contents have been drawn.
05-17 16:30:52.965 1287 1379 E KernelCpuSpeedReader: Failed to read cpu-freq: /sys/devices/system/cpu/cpu0/cpufreq/stats/time_in_state: open failed: ENOENT (No such file or directory)
05-17 16:30:52.980 1287 1406 V DisplayPowerController: Brightness [1.0] reason changing to: 'manual', previous reason: 'screen_off'.
05-17 16:30:52.980 1287 1406 D DisplayPowerController: Set keyboard light, setting enabled: 1, /sys/class/leds/keyboard_light/brightness = 255
05-17 16:30:52.982 1287 1350 I DisplayManagerService: Display device changed state: "Built-in Screen", ON
05-17 16:30:52.998 1287 1367 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.USER_PRESENT flg=0x24200010 } to com.android.chrome/org.chromium.chrome.browser.sharing.click_to_call.ClickToCallMessageHandler$PhoneUnlockedReceiver
05-17 16:30:52.998 1287 1367 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.USER_PRESENT flg=0x24200010 } to com.google.android.gms/.auth.setup.devicesignals.LockScreenReceiver
05-17 16:30:52.998 1287 1367 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.USER_PRESENT flg=0x24200010 } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
05-17 16:30:52.998 1287 1367 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.USER_PRESENT flg=0x24200010 } to com.sprint.ms.cdm/.BootReceiver
05-17 16:30:53.194 1287 1486 D ConnectivityService: NetReassign [no changes]
05-17 16:30:53.232 1287 1234 D ActivityTaskManager: Top Process State changed to PROCESS_STATE_TOP
05-17 16:30:53.234 1287 1234 W ActivityTaskManager: servicetracker HIDL not available
05-17 16:30:53.234 1287 1234 E ActivityTaskManager: Unable to get servicetracker HAL instance
05-17 16:30:53.237 1287 1234 W ActivityTaskManager: servicetracker HIDL not available
05-17 16:30:53.237 1287 1234 E ActivityTaskManager: Unable to get servicetracker HAL instance
05-17 16:30:53.266 1287 1485 E AlarmManager: Attempt to decrement existing alarm count 0 by 1 for uid 1000