-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspeakerissue.txt
3122 lines (3122 loc) · 343 KB
/
speakerissue.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)
--------- beginning of system
05-02 00:32:26.143 1287 1349 I chatty : uid=1000(system) android.io expire 2 lines
05-02 00:32:26.354 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 00:32:26.423 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 4 lines
05-02 00:32:27.694 1287 1366 I chatty : uid=1000(system) android.bg expire 1 line
05-02 00:32:28.195 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 00:32:31.056 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 12 lines
05-02 00:32:32.083 1287 1467 I chatty : uid=1000(system) UEventObserver expire 19 lines
05-02 00:32:32.293 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 12 lines
05-02 00:32:32.351 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 1 line
05-02 00:32:32.359 1287 1350 I chatty : uid=1000(system) android.display expire 14 lines
05-02 00:32:32.671 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 00:32:32.913 1287 1367 I chatty : uid=1000(system) ActivityManager expire 3 lines
05-02 00:32:33.245 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 00:32:33.245 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 1 line
05-02 00:32:34.092 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-02 00:32:34.109 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 00:32:34.141 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-02 00:32:34.154 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 10 lines
05-02 00:32:34.331 1287 1350 I chatty : uid=1000(system) android.display expire 10 lines
05-02 00:32:34.923 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-02 00:32:39.129 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-02 00:33:01.975 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 00:33:02.382 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 1 line
05-02 00:33:02.383 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 7 lines
05-02 00:33:02.784 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 1 line
05-02 00:33:03.661 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 3 lines
05-02 00:33:03.819 1287 1287 I chatty : uid=1000 system_server expire 8 lines
05-02 00:33:04.226 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
05-02 00:33:05.437 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 00:33:05.709 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 1 line
05-02 00:33:57.417 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 4 lines
05-02 00:33:57.418 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 12 lines
05-02 00:33:57.433 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-02 00:33:57.443 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 3 lines
05-02 00:33:58.507 1287 1367 I chatty : uid=1000(system) ActivityManager expire 8 lines
05-02 00:33:58.721 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 3 lines
05-02 00:33:59.027 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 00:33:59.210 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
05-02 00:33:59.214 1287 1350 I chatty : uid=1000(system) android.display expire 6 lines
05-02 00:33:59.215 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 6 lines
05-02 00:53:11.945 1287 1366 I chatty : uid=1000(system) android.bg expire 1 line
05-02 01:08:15.024 1287 1368 I chatty : uid=1000(system) ActivityManager expire 8 lines
05-02 01:08:15.703 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 2 lines
05-02 01:08:18.193 1287 1471 I chatty : uid=1000(system) NetworkWatchlis expire 2 lines
05-02 01:08:19.583 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 12 lines
05-02 01:23:21.422 1287 1287 I chatty : uid=1000 system_server expire 3 lines
05-02 01:23:23.657 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 1 line
05-02 01:23:23.658 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 11 lines
05-02 01:23:27.748 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 3 lines
05-02 01:23:27.841 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 4 lines
05-02 02:27:28.017 1287 1478 I chatty : uid=1000(system) NetworkStats expire 2 lines
05-02 02:27:31.438 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 1 line
05-02 02:27:32.649 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 1 line
05-02 02:27:32.649 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 2 lines
05-02 02:27:32.675 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-02 04:27:44.600 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 1 line
05-02 04:27:46.024 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 5 lines
05-02 05:03:16.553 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 8 lines
05-02 05:03:16.758 1287 1367 I chatty : uid=1000(system) ActivityManager expire 8 lines
05-02 05:46:21.596 1287 1467 I chatty : uid=1000(system) UEventObserver expire 11 lines
05-02 05:46:21.602 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 10 lines
05-02 05:46:21.633 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
05-02 05:46:21.731 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-02 05:46:21.733 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-02 05:46:21.746 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 4 lines
05-02 05:46:21.809 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 05:46:21.857 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-02 05:46:22.048 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
05-02 05:46:22.056 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 7 lines
05-02 05:46:22.057 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 5 lines
05-02 05:46:22.174 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 1 line
05-02 05:46:22.215 1287 1287 I chatty : uid=1000 system_server expire 4 lines
05-02 05:46:22.215 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-02 05:46:22.493 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 05:46:22.632 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-02 05:46:24.653 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 11 lines
05-02 05:46:24.685 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 8 lines
05-02 05:46:25.348 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 9 lines
05-02 05:46:25.797 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-02 05:46:25.816 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 11 lines
05-02 05:46:31.127 1287 1348 I chatty : uid=1000(system) android.ui expire 17 lines
05-02 05:46:31.540 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 05:46:31.598 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 4 lines
05-02 05:46:32.920 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-02 05:46:33.026 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 12 lines
05-02 05:46:33.051 1287 1350 I chatty : uid=1000(system) android.display expire 10 lines
05-02 05:46:33.938 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 4 lines
05-02 05:46:34.791 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
05-02 05:46:34.806 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 05:46:34.830 1287 2390 I chatty : uid=1000(system) backup-0 expire 5 lines
05-02 05:46:34.833 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 1 line
05-02 05:46:34.836 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 05:46:34.837 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 5 lines
05-02 05:46:34.859 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 05:46:34.951 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 05:46:34.954 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 5 lines
05-02 05:46:39.828 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 10 lines
05-02 05:58:30.256 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 3 lines
05-02 05:58:30.261 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-02 06:29:43.127 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-02 06:29:43.128 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 06:51:15.287 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-02 07:39:18.117 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 3 lines
05-02 07:39:18.117 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 8 lines
05-02 07:39:18.745 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 3 lines
05-02 07:39:19.334 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 1 line
05-02 07:39:19.706 1287 1287 I chatty : uid=1000 system_server expire 6 lines
05-02 07:39:19.931 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-02 07:39:19.935 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-02 07:39:19.960 1287 1350 I chatty : uid=1000(system) android.display expire 6 lines
05-02 07:39:20.364 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-02 07:51:32.401 1287 1347 I chatty : uid=1000(system) android.fg expire 2 lines
05-02 07:51:32.781 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 1 line
05-02 07:51:34.500 1287 1350 I chatty : uid=1000(system) android.display expire 10 lines
05-02 07:51:34.504 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-02 07:51:34.551 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 13 lines
05-02 07:51:34.907 1287 1367 I chatty : uid=1000(system) ActivityManager expire 9 lines
05-02 07:57:30.754 1287 1347 I chatty : uid=1000(system) android.fg expire 2 lines
05-02 07:57:31.045 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 2 lines
05-02 07:57:31.081 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 6 lines
05-02 07:57:31.136 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 1 line
05-02 07:57:31.448 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 2 lines
05-02 07:57:32.540 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-02 07:57:38.416 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 6 lines
05-02 07:59:02.217 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 07:59:02.220 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-02 09:28:42.818 1287 1347 I chatty : uid=1000(system) android.fg expire 4 lines
05-02 09:28:43.142 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 2 lines
05-02 09:28:43.179 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 2 lines
05-02 09:28:43.180 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 7 lines
05-02 09:28:43.205 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 1 line
05-02 09:28:44.365 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-02 09:28:44.890 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
05-02 09:32:57.873 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 1 line
05-02 09:32:57.909 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 4 lines
05-02 09:32:57.965 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 11 lines
05-02 09:32:58.005 1287 1367 I chatty : uid=1000(system) ActivityManager expire 8 lines
05-02 09:32:58.294 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 1 line
05-02 09:32:59.184 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 2 lines
05-02 09:32:59.497 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-02 09:32:59.748 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-02 09:32:59.752 1287 1350 I chatty : uid=1000(system) android.display expire 6 lines
05-02 09:32:59.752 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 09:36:49.216 1287 1347 I chatty : uid=1000(system) android.fg expire 2 lines
05-02 09:36:50.769 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-02 09:36:51.370 1287 1350 I chatty : uid=1000(system) android.display expire 6 lines
05-02 09:36:51.372 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-02 09:36:51.421 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 5 lines
05-02 09:36:51.775 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-02 09:39:46.397 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 3 lines
05-02 09:39:46.399 1287 1368 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 09:39:47.119 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 1 line
05-02 09:39:47.120 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 12 lines
05-02 09:39:54.940 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 2 lines
05-02 09:40:08.794 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 1 line
05-02 09:40:09.608 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 1 line
05-02 09:42:10.523 1287 1347 I chatty : uid=1000(system) android.fg expire 2 lines
05-02 09:42:10.990 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 3 lines
05-02 09:42:12.758 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-02 09:42:13.067 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
05-02 09:42:13.071 1287 1350 I chatty : uid=1000(system) android.display expire 9 lines
05-02 09:42:13.072 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-02 09:42:13.475 1287 1367 I chatty : uid=1000(system) ActivityManager expire 8 lines
05-02 09:48:40.947 1287 1347 I chatty : uid=1000(system) android.fg expire 2 lines
05-02 09:48:41.266 1287 3351 I chatty : uid=1000(system) Binder:1287_19 expire 2 lines
05-02 09:48:41.301 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 3 lines
05-02 09:48:41.301 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 9 lines
05-02 09:48:42.493 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 1 line
05-02 09:48:45.471 1287 1367 I chatty : uid=1000(system) ActivityManager expire 8 lines
05-02 09:48:48.680 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
05-02 09:48:48.697 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 5 lines
05-02 09:48:48.698 1287 1350 I chatty : uid=1000(system) android.display expire 9 lines
05-02 10:06:07.960 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 10:06:08.442 1287 3351 I chatty : uid=1000(system) Binder:1287_19 expire 2 lines
05-02 10:06:08.477 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 2 lines
05-02 10:06:08.478 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 6 lines
05-02 10:06:10.040 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 1 line
05-02 10:06:10.298 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-02 10:06:55.571 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 4 lines
05-02 10:06:55.606 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 10 lines
05-02 10:06:55.612 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 10:06:55.677 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 1 line
05-02 10:06:56.555 1287 1367 I chatty : uid=1000(system) ActivityManager expire 8 lines
05-02 10:06:57.124 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-02 10:06:57.343 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
05-02 10:06:57.347 1287 1350 I chatty : uid=1000(system) android.display expire 9 lines
05-02 10:06:57.348 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-02 10:07:14.874 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 3 lines
05-02 10:07:15.419 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 4 lines
05-02 10:07:17.146 1287 1367 I chatty : uid=1000(system) ActivityManager expire 10 lines
05-02 10:07:18.385 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 2 lines
05-02 10:07:18.385 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 10 lines
05-02 10:07:22.361 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
05-02 10:07:22.380 1287 1350 I chatty : uid=1000(system) android.display expire 9 lines
05-02 10:07:22.387 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-02 10:08:03.123 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 10:08:03.522 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 1 line
05-02 10:08:05.024 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 10:08:41.892 1287 1916 I chatty : uid=1000(system) Binder:1287_8 expire 1 line
05-02 10:08:41.926 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 1 line
05-02 10:08:41.934 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-02 10:08:41.988 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 2 lines
05-02 10:08:41.989 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 7 lines
05-02 10:08:42.315 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 1 line
05-02 10:08:43.034 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-02 10:08:43.163 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 1 line
05-02 10:08:43.386 1287 3351 I chatty : uid=1000(system) Binder:1287_19 expire 1 line
05-02 10:08:43.387 1287 1916 I chatty : uid=1000(system) Binder:1287_8 expire 1 line
05-02 10:08:43.388 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 11 lines
05-02 10:08:43.456 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 10:08:43.700 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
05-02 10:08:43.705 1287 1350 I chatty : uid=1000(system) android.display expire 6 lines
05-02 10:08:43.707 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-02 10:13:36.295 1287 1467 I chatty : uid=1000(system) UEventObserver expire 11 lines
05-02 10:13:36.413 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 4 lines
05-02 10:13:36.431 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 4 lines
05-02 10:13:36.456 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-02 10:13:36.457 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-02 10:13:36.549 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 10:13:36.650 1287 1916 I chatty : uid=1000(system) Binder:1287_8 expire 5 lines
05-02 10:13:36.790 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
05-02 10:13:36.946 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-02 10:13:37.060 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 10:13:37.173 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 1 line
05-02 10:13:38.265 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 16 lines
05-02 10:13:38.287 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 8 lines
05-02 10:13:39.973 1287 1368 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 10:13:57.069 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 1 line
05-02 10:14:14.645 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-02 10:14:15.193 1287 1367 I chatty : uid=1000(system) ActivityManager expire 13 lines
05-02 10:14:17.160 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-02 10:14:57.460 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 2 lines
05-02 10:14:57.618 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 1 line
05-02 10:14:59.917 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-02 10:15:00.039 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 10:15:00.075 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 12 lines
05-02 10:15:00.300 1287 1348 I chatty : uid=1000(system) android.ui expire 3 lines
05-02 10:15:00.469 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 5 lines
05-02 10:15:00.469 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-02 10:15:00.469 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 1 line
05-02 10:15:00.469 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 1 line
05-02 10:15:00.470 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-02 10:15:00.472 1287 2474 I chatty : uid=1000(system) Binder:1287_C expire 11 lines
05-02 10:15:00.473 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 1 line
05-02 10:15:00.478 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 1 line
05-02 10:15:00.620 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 10:15:00.781 1287 1350 I chatty : uid=1000(system) android.display expire 14 lines
05-02 10:15:01.769 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-02 10:15:01.786 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-02 10:15:01.813 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-02 10:15:01.946 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 10:15:02.462 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 10:16:54.747 1287 1467 I chatty : uid=1000(system) UEventObserver expire 11 lines
05-02 10:16:54.751 1287 2474 I chatty : uid=1000(system) Binder:1287_C expire 9 lines
05-02 10:16:54.798 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
05-02 10:16:54.801 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 10:16:54.828 1287 1287 I chatty : uid=1000 system_server expire 3 lines
05-02 10:16:54.887 1287 3506 I chatty : uid=1000(system) Binder:1287_E expire 5 lines
05-02 10:16:54.942 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 10:16:54.945 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-02 10:16:54.995 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 6 lines
05-02 10:16:55.106 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 6 lines
05-02 10:16:55.490 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 10:16:55.671 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 2 lines
05-02 10:16:56.052 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 10:16:56.850 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 2 lines
05-02 10:16:58.226 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-02 10:16:58.980 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 1 line
05-02 10:16:58.981 1287 1368 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-02 10:16:59.249 1287 1469 I chatty : uid=1000(system) InputReader expire 17 lines
05-02 10:16:59.684 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-02 10:16:59.753 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 4 lines
05-02 10:17:01.167 1287 1287 I chatty : uid=1000 system_server expire 3 lines
05-02 10:17:01.171 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-02 10:17:04.243 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-02 10:17:19.928 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-02 10:17:20.063 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 12 lines
05-02 10:17:20.108 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-02 10:17:20.521 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-02 10:17:20.968 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 8 lines
05-02 10:17:21.819 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-02 10:17:21.835 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 10:17:21.867 1287 1347 I chatty : uid=1000(system) android.fg expire 4 lines
05-02 10:17:21.882 1287 1350 I chatty : uid=1000(system) android.display expire 9 lines
05-02 10:17:21.943 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 4 lines
05-02 10:17:21.999 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 10:17:22.173 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 1 line
05-02 10:17:22.263 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-02 10:17:26.855 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 10:19:33.586 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 3 lines
05-02 10:19:33.624 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 4 lines
05-02 10:19:35.071 1287 3506 I chatty : uid=1000(system) Binder:1287_E expire 1 line
05-02 10:19:35.413 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-02 10:19:35.634 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 7 lines
05-02 10:19:38.665 1287 1467 I chatty : uid=1000(system) UEventObserver expire 4 lines
05-02 10:19:38.670 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 10 lines
05-02 10:19:38.683 1287 1467 I chatty : uid=1000(system) UEventObserver expire 3 lines
05-02 10:19:38.828 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 10:19:38.836 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 9 lines
05-02 10:19:38.838 1287 1347 I chatty : uid=1000(system) android.fg expire 2 lines
05-02 10:19:38.839 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 4 lines
05-02 10:19:38.860 1287 1367 I chatty : uid=1000(system) ActivityManager expire 5 lines
05-02 10:19:38.880 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 10:19:38.945 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 5 lines
05-02 10:19:40.681 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 15 lines
05-02 10:19:41.297 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 10:19:51.472 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 10:20:03.845 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 1 line
05-02 10:20:03.846 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 4 lines
05-02 10:20:04.758 1287 2474 I chatty : uid=1000(system) Binder:1287_C expire 1 line
05-02 10:20:39.696 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 23 lines
05-02 10:20:40.877 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 26 lines
05-02 10:20:43.024 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 4 lines
05-02 10:20:43.025 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 8 lines
05-02 10:20:44.435 1287 1367 I chatty : uid=1000(system) ActivityManager expire 12 lines
05-02 10:21:20.502 1287 1347 I chatty : uid=1000(system) android.fg expire 2 lines
05-02 10:21:21.018 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 1 line
05-02 10:21:21.470 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 5 lines
05-02 10:21:22.388 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 1 line
05-02 10:21:35.274 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
05-02 10:21:42.301 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 10:21:42.333 1287 1350 I chatty : uid=1000(system) android.display expire 7 lines
05-02 10:21:42.485 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 6 lines
05-02 10:21:42.588 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
05-02 10:21:42.590 1287 1347 I chatty : uid=1000(system) android.fg expire 6 lines
05-02 10:21:43.210 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-02 10:21:43.234 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 10:21:43.259 1287 1367 I chatty : uid=1000(system) ActivityManager expire 11 lines
05-02 10:21:43.302 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 5 lines
05-02 10:21:43.511 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 9 lines
05-02 10:21:43.882 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 2 lines
05-02 10:21:51.232 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 1 line
05-02 10:21:52.094 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 1 line
05-02 10:22:16.518 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 9 lines
05-02 10:22:20.718 1287 1367 I chatty : uid=1000(system) ActivityManager expire 10 lines
05-02 10:22:27.019 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 10:22:27.382 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 2 lines
05-02 10:22:27.418 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 1 line
05-02 10:22:27.419 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 6 lines
05-02 10:22:27.753 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-02 10:22:28.685 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 1 line
05-02 10:22:36.216 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 14 lines
05-02 10:22:43.238 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 10:22:43.269 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 10:22:47.171 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 1 line
05-02 10:22:47.172 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 9 lines
05-02 10:22:48.265 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 10:22:48.959 1287 1347 I chatty : uid=1000(system) android.fg expire 7 lines
05-02 10:22:49.393 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 2 lines
05-02 10:22:49.572 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-02 10:22:49.588 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
05-02 10:22:49.633 1287 1367 I chatty : uid=1000(system) ActivityManager expire 10 lines
05-02 10:22:49.674 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 7 lines
05-02 10:22:50.415 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 3 lines
05-02 10:22:51.571 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 3 lines
05-02 10:22:52.599 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 10:22:55.074 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 22 lines
05-02 10:22:55.867 1287 1367 I chatty : uid=1000(system) ActivityManager expire 15 lines
05-02 10:22:57.588 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 3 lines
05-02 10:22:58.363 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 1 line
05-02 10:23:18.221 1287 1347 I chatty : uid=1000(system) android.fg expire 4 lines
05-02 10:23:18.691 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 2 lines
05-02 10:23:18.736 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 5 lines
05-02 10:23:24.639 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 3 lines
05-02 10:23:35.324 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 5 lines
05-02 10:23:43.422 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 17 lines
05-02 10:23:43.730 1287 1367 I chatty : uid=1000(system) ActivityManager expire 17 lines
05-02 10:23:49.854 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 3 lines
05-02 10:23:56.609 1287 1347 I chatty : uid=1000(system) android.fg expire 6 lines
05-02 10:23:57.390 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 3 lines
05-02 10:23:58.269 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 1 line
05-02 10:24:01.211 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 2 lines
05-02 10:24:02.133 1287 1834 I chatty : uid=1000(system) Binder:1287_6 expire 1 line
05-02 10:24:08.719 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 5 lines
05-02 10:24:11.370 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 20 lines
05-02 10:24:12.895 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 2 lines
05-02 10:24:20.383 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 4 lines
05-02 10:24:20.476 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 1 line
05-02 10:24:21.672 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-02 10:26:40.360 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
05-02 10:26:46.653 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 10:26:47.402 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 4 lines
05-02 10:26:47.406 1287 1350 I chatty : uid=1000(system) android.display expire 10 lines
05-02 10:26:47.529 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 4 lines
05-02 10:26:47.611 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-02 10:26:47.649 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 20 lines
05-02 10:26:47.650 1287 1347 I chatty : uid=1000(system) android.fg expire 4 lines
05-02 10:26:52.381 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-02 10:31:19.070 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-02 10:31:19.214 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 10:31:19.285 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 5 lines
05-02 10:31:19.660 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-02 10:31:19.836 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 1 line
05-02 10:32:46.264 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 4 lines
05-02 10:32:46.286 1287 1350 I chatty : uid=1000(system) android.display expire 6 lines
05-02 10:32:46.341 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 9 lines
05-02 10:32:46.505 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
05-02 10:32:46.507 1287 1347 I chatty : uid=1000(system) android.fg expire 4 lines
05-02 10:32:51.225 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 10:33:35.568 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-02 10:33:35.636 1287 1367 I chatty : uid=1000(system) ActivityManager expire 12 lines
05-02 10:33:35.980 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-02 10:33:36.367 1287 1310 I chatty : uid=1000(system) Binder:1287_1 expire 1 line
05-02 10:33:48.693 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-02 10:35:02.560 1287 1366 I chatty : uid=1000(system) android.bg expire 1 line
05-02 10:36:24.601 1287 1467 I chatty : uid=1000(system) UEventObserver expire 23 lines
05-02 10:36:24.626 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
05-02 10:36:24.648 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 10:36:24.731 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 20 lines
05-02 10:36:24.839 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-02 10:36:24.861 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-02 10:36:24.880 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 10:36:24.953 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 4 lines
05-02 10:36:25.038 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 5 lines
05-02 10:36:25.270 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 10:36:25.486 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-02 10:36:25.587 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 2 lines
05-02 10:36:25.589 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-02 10:36:25.671 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 10:39:11.324 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-02 10:52:16.193 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 1 line
05-02 10:52:16.193 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 2 lines
05-02 10:52:16.194 1287 2474 I chatty : uid=1000(system) Binder:1287_C expire 1 line
05-02 10:52:16.194 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-02 10:59:26.704 1287 1368 I chatty : uid=1000(system) ActivityManager expire 22 lines
05-02 10:59:27.047 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 6 lines
05-02 10:59:28.424 1287 1916 I chatty : uid=1000(system) Binder:1287_8 expire 4 lines
05-02 10:59:30.389 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 13 lines
05-02 10:59:30.745 1287 1368 I chatty : uid=1000(system) ActivityManager expire 19 lines
05-02 10:59:31.132 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 10:59:31.357 1287 1916 I chatty : uid=1000(system) Binder:1287_8 expire 4 lines
05-02 11:09:20.638 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 2 lines
05-02 11:09:20.640 1287 1366 I chatty : uid=1000(system) android.bg expire 14 lines
05-02 11:09:20.649 1287 1287 I chatty : uid=1000 system_server expire 11 lines
05-02 11:09:20.702 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 4 lines
05-02 11:09:21.091 1287 1871 I chatty : uid=1000(system) Binder:1287_17 expire 5 lines
05-02 11:09:21.092 1287 1366 I chatty : uid=1000(system) android.bg expire 14 lines
05-02 11:09:21.097 1287 1287 I chatty : uid=1000 system_server expire 9 lines
05-02 11:09:21.116 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 10 lines
05-02 11:09:21.535 1287 1368 I chatty : uid=1000(system) ActivityManager expire 10 lines
05-02 11:09:22.461 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 1 line
05-02 11:09:23.124 1287 2474 I chatty : uid=1000(system) Binder:1287_C expire 5 lines
05-02 11:09:23.400 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 11:09:23.955 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 1 line
05-02 11:09:23.955 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-02 11:09:25.209 1287 3506 I chatty : uid=1000(system) Binder:1287_E expire 4 lines
05-02 11:09:25.239 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 11:09:25.246 1287 1368 I chatty : uid=1000(system) ActivityManager expire 17 lines
05-02 11:09:25.315 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 7 lines
05-02 11:09:25.316 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 1 line
05-02 11:09:25.316 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 1 line
05-02 11:09:25.316 1287 3506 I chatty : uid=1000(system) Binder:1287_E expire 1 line
05-02 11:09:25.317 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 15 lines
05-02 11:09:25.317 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 1 line
05-02 11:09:25.750 1287 1916 I chatty : uid=1000(system) Binder:1287_8 expire 4 lines
05-02 11:09:26.145 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 1 line
05-02 11:09:26.287 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 4 lines
05-02 11:09:26.292 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 11:09:26.884 1287 1773 I chatty : uid=1000(system) Binder:1287_5 expire 3 lines
05-02 11:09:28.047 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 2 lines
05-02 11:09:28.466 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 2 lines
05-02 11:09:28.469 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 1 line
05-02 11:15:29.461 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 2 lines
05-02 11:15:31.310 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 11:15:33.385 1287 2474 I chatty : uid=1000(system) Binder:1287_C expire 5 lines
05-02 11:18:55.539 1287 1467 I chatty : uid=1000(system) UEventObserver expire 11 lines
05-02 11:18:55.549 1287 4037 I chatty : uid=1000(system) Binder:1287_1B expire 10 lines
05-02 11:18:55.633 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 4 lines
05-02 11:18:55.658 1287 1287 I chatty : uid=1000 system_server expire 6 lines
05-02 11:18:55.735 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-02 11:18:55.835 1287 1367 I chatty : uid=1000(system) ActivityManager expire 5 lines
05-02 11:18:55.841 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-02 11:18:55.931 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 11:18:55.993 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 5 lines
05-02 11:18:56.076 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 1 line
05-02 11:18:56.079 1287 1368 I chatty : uid=1000(system) ActivityManager expire 14 lines
05-02 11:18:56.436 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
05-02 11:18:56.481 1287 1287 I chatty : uid=1000 system_server expire 3 lines
05-02 11:18:56.482 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 11:18:56.484 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-02 11:18:56.564 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 1 line
05-02 11:18:57.029 2401 2401 D ActivityThread: Loading provider contacts;com.android.contacts: com.android.providers.contacts.ContactsProvider2
05-02 11:18:57.177 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 11:19:04.752 1287 1469 I chatty : uid=1000(system) InputReader expire 17 lines
05-02 11:19:05.165 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 11:19:05.200 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 4 lines
05-02 11:19:06.285 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 2 lines
05-02 11:19:06.444 1287 3935 I chatty : uid=1000(system) Binder:1287_F expire 27 lines
05-02 11:19:07.169 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 28 lines
05-02 11:19:07.237 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 21 lines
05-02 11:19:07.295 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-02 11:19:07.296 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 11:19:07.381 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 26 lines
05-02 11:19:08.001 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 26 lines
05-02 11:19:08.054 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-02 11:19:09.113 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
05-02 11:19:09.426 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 11:19:10.443 1287 861 I chatty : uid=1000(system) Binder:1287_10 expire 7 lines
05-02 11:19:10.444 1287 1368 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 11:19:19.909 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 1 line
05-02 11:19:20.103 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 11:19:20.533 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 3 lines
05-02 11:19:20.699 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 2 lines
05-02 11:19:20.700 1287 1368 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-02 11:19:20.740 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 4 lines
05-02 11:19:22.107 1287 1367 I chatty : uid=1000(system) ActivityManager expire 17 lines
05-02 11:19:31.129 1287 861 I chatty : uid=1000(system) Binder:1287_10 expire 6 lines
05-02 11:19:31.170 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 2 lines
05-02 11:19:42.567 1287 1287 I chatty : uid=1000 system_server expire 8 lines
05-02 11:19:55.471 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 6 lines
05-02 11:19:55.471 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 1 line
05-02 11:19:55.475 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 11 lines
05-02 11:19:55.488 1287 1350 I chatty : uid=1000(system) android.display expire 16 lines
05-02 11:20:10.851 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 11 lines
05-02 11:20:10.893 1287 1368 I chatty : uid=1000(system) ActivityManager expire 1 line
05-02 11:20:11.156 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 16 lines
05-02 11:20:11.423 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 13 lines
05-02 11:20:17.180 1287 1916 I chatty : uid=1000(system) Binder:1287_8 expire 10 lines
05-02 11:20:18.450 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 22 lines
05-02 11:20:18.508 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 17 lines
05-02 11:20:19.617 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 6 lines
05-02 11:20:19.980 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 11:20:20.559 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 1 line
05-02 11:20:21.673 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-02 11:20:22.161 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 11:20:24.597 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 4 lines
05-02 11:20:24.597 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 19 lines
05-02 11:20:24.700 1287 3535 I chatty : uid=1000(system) Binder:1287_1A expire 2 lines
05-02 11:20:26.015 1287 1367 I chatty : uid=1000(system) ActivityManager expire 23 lines
05-02 11:20:27.621 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 11:20:39.280 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 2 lines
05-02 11:20:39.403 1287 1916 I chatty : uid=1000(system) Binder:1287_8 expire 1 line
05-02 11:20:57.576 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 2 lines
05-02 11:20:57.721 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 3 lines
05-02 11:20:57.881 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 2 lines
05-02 11:20:57.881 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 2 lines
05-02 11:21:41.081 1287 1469 I chatty : uid=1000(system) InputReader expire 17 lines
05-02 11:21:41.527 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-02 11:21:41.541 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-02 11:21:41.599 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 17 lines
05-02 11:21:41.914 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 11 lines
05-02 11:21:42.006 1287 1368 I chatty : uid=1000(system) ActivityManager expire 1 line
05-02 11:21:42.538 3579 3579 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1748 android.content.ContextWrapper.bindService:756 com.gsma.services.rcs.capability.CapabilityService.connect:98 com.gsma.services.rcs.RcsServiceApi.connect:192 com.gsma.services.rcs.RcsServiceApi.init:187
05-02 11:21:42.541 3579 3579 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1748 android.content.ContextWrapper.bindService:756 com.gsma.services.rcs.chat.ChatService.connect:83 com.gsma.services.rcs.RcsServiceApi.connect:193 com.gsma.services.rcs.RcsServiceApi.init:187
05-02 11:21:42.544 3579 3579 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1748 android.content.ContextWrapper.bindService:756 com.gsma.services.rcs.contact.ContactService.connect:79 com.gsma.services.rcs.RcsServiceApi.connect:194 com.gsma.services.rcs.RcsServiceApi.init:187
05-02 11:21:42.547 3579 3579 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1748 android.content.ContextWrapper.bindService:756 com.gsma.services.rcs.filetransfer.FileTransferService.connect:91 com.gsma.services.rcs.RcsServiceApi.connect:195 com.gsma.services.rcs.RcsServiceApi.init:187
05-02 11:21:42.549 3579 3579 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1748 android.content.ContextWrapper.bindService:756 com.gsma.services.rcs.chatbot.ChatbotService.connect:58 com.gsma.services.rcs.RcsServiceApi.connect:196 com.gsma.services.rcs.RcsServiceApi.init:187
05-02 11:21:42.552 3579 3579 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1748 android.content.ContextWrapper.bindService:756 com.gsma.services.rcs.enrichedcall.EnrichedCallService.connect:63 com.gsma.services.rcs.RcsServiceApi.connect:197 com.gsma.services.rcs.RcsServiceApi.init:187
05-02 11:21:42.801 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 2 lines
05-02 11:21:42.869 3579 3579 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1748 android.content.ContextWrapper.bindService:756 com.android.dialer.main.impl.MainActivity.connectService:353 com.android.dialer.main.impl.MainActivity.onCreate:305 android.app.Activity.performCreate:8161
05-02 11:21:43.333 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-02 11:21:43.546 1287 1350 I chatty : uid=1000(system) android.display expire 13 lines
05-02 11:21:43.635 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 16 lines
05-02 11:21:43.811 3579 3663 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-02 11:21:43.849 1287 1366 I chatty : uid=1000(system) android.bg expire 4 lines
05-02 11:21:43.883 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 11:21:43.883 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 11:21:44.130 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 5 lines
05-02 11:21:45.316 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 7 lines
05-02 11:21:45.333 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-02 11:21:45.352 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
05-02 11:21:45.355 1287 1350 I chatty : uid=1000(system) android.display expire 12 lines
05-02 11:21:45.360 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 11:21:45.373 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 5 lines
05-02 11:21:45.483 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 11:21:45.484 1287 1367 I chatty : uid=1000(system) ActivityManager expire 11 lines
05-02 11:21:45.486 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 4 lines
05-02 11:23:20.770 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 1 line
05-02 11:23:20.771 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 4 lines
05-02 11:23:21.201 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 1 line
05-02 11:23:22.145 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 1 line
05-02 11:23:22.508 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-02 11:23:25.452 1287 1467 I chatty : uid=1000(system) UEventObserver expire 7 lines
05-02 11:23:25.457 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 10 lines
05-02 11:23:25.460 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
05-02 11:23:25.462 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 11:23:25.462 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 11:23:25.476 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 6 lines
05-02 11:23:25.629 1287 1287 I chatty : uid=1000 system_server expire 3 lines
05-02 11:23:25.653 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 4 lines
05-02 11:23:25.690 1287 1367 I chatty : uid=1000(system) ActivityManager expire 5 lines
05-02 11:23:26.157 3579 3795 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-02 11:23:27.340 1287 1469 I chatty : uid=1000(system) InputReader expire 18 lines
05-02 11:23:27.761 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 11:23:27.818 1287 1620 I chatty : uid=1000(system) Binder:1287_16 expire 5 lines
05-02 11:23:27.888 1287 1367 I chatty : uid=1000(system) ActivityManager expire 10 lines
05-02 11:23:28.476 1287 2474 I chatty : uid=1000(system) Binder:1287_C expire 12 lines
05-02 11:23:28.522 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 8 lines
05-02 11:23:28.639 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-02 11:23:28.828 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 4 lines
05-02 11:23:31.333 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 11:23:50.975 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 1 line
05-02 11:24:07.984 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 11:24:17.204 1287 1469 I chatty : uid=1000(system) InputReader expire 16 lines
05-02 11:24:17.656 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 11:24:17.683 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-02 11:24:17.729 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 4 lines
05-02 11:24:20.019 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-02 11:24:20.134 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 13 lines
05-02 11:24:20.250 1287 1350 I chatty : uid=1000(system) android.display expire 18 lines
05-02 11:24:20.655 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 11:24:21.079 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 9 lines
05-02 11:24:21.920 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-02 11:24:21.936 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-02 11:24:21.967 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 11:24:22.085 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 11:24:22.089 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 5 lines
05-02 11:27:23.193 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 11:27:23.332 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 6 lines
05-02 11:45:13.983 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 2 lines
05-02 11:45:14.009 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 5 lines
05-02 11:45:14.575 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 1 line
05-02 11:45:15.032 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 11:45:15.471 1287 2474 I chatty : uid=1000(system) Binder:1287_C expire 11 lines
05-02 11:45:15.812 1287 1287 I chatty : uid=1000 system_server expire 6 lines
05-02 11:45:16.040 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 7 lines
05-02 11:45:16.069 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-02 11:45:16.473 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-02 11:45:19.101 1287 1467 I chatty : uid=1000(system) UEventObserver expire 7 lines
05-02 11:45:19.114 1287 1347 I chatty : uid=1000(system) android.fg expire 4 lines
05-02 11:45:19.121 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 1 line
05-02 11:45:19.273 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-02 11:45:19.321 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-02 11:45:19.346 1287 1287 I chatty : uid=1000 system_server expire 3 lines
05-02 11:45:19.449 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 17 lines
05-02 11:45:19.509 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-02 11:45:19.635 1287 1350 I chatty : uid=1000(system) android.display expire 6 lines
05-02 11:45:21.421 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 9 lines
05-02 11:45:21.539 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 1 line
05-02 11:45:21.752 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 5 lines
05-02 11:45:22.089 1287 1368 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 11:45:28.772 1287 1347 I chatty : uid=1000(system) android.fg expire 4 lines
05-02 11:45:29.294 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 1 line
05-02 11:45:29.333 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 6 lines
05-02 11:45:29.333 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 23 lines
05-02 11:45:29.731 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 2 lines
05-02 11:45:30.302 1287 1367 I chatty : uid=1000(system) ActivityManager expire 16 lines
05-02 11:45:30.662 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 1 line
05-02 11:45:36.936 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 3 lines
05-02 11:45:37.433 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 4 lines
05-02 11:45:43.559 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 11:46:08.097 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-02 11:46:09.079 1287 1367 I chatty : uid=1000(system) ActivityManager expire 12 lines
05-02 11:46:22.811 1287 1348 I chatty : uid=1000(system) android.ui expire 17 lines
05-02 11:46:23.247 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 11:46:23.331 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 4 lines
05-02 11:46:24.314 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-02 11:46:24.444 1287 861 I chatty : uid=1000(system) Binder:1287_10 expire 12 lines
05-02 11:46:24.513 1287 1350 I chatty : uid=1000(system) android.display expire 18 lines
05-02 11:46:24.614 1287 1367 I chatty : uid=1000(system) ActivityManager expire 5 lines
05-02 11:46:25.335 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 4 lines
05-02 11:46:26.183 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-02 11:46:26.200 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 11:46:26.228 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-02 11:46:26.234 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 8 lines
05-02 11:46:26.346 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 11:54:32.305 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 5 lines
05-02 11:54:33.185 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 3 lines
05-02 11:54:33.251 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 2 lines
05-02 12:20:17.883 1287 1347 I chatty : uid=1000(system) android.fg expire 5 lines
05-02 12:20:18.384 1287 1356 I chatty : uid=1000(system) Binder:1287_13 expire 2 lines
05-02 12:20:18.426 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 1 line
05-02 12:20:18.426 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 6 lines
05-02 12:20:19.826 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 12 lines
05-02 12:20:20.175 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-02 12:20:20.420 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 7 lines
05-02 12:20:20.426 1287 1350 I chatty : uid=1000(system) android.display expire 3 lines
05-02 12:20:20.580 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-02 12:20:22.936 1287 1467 I chatty : uid=1000(system) UEventObserver expire 7 lines
05-02 12:20:22.954 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 6 lines
05-02 12:20:22.958 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 12:20:23.099 1287 1287 I chatty : uid=1000 system_server expire 7 lines
05-02 12:20:23.099 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 12:20:23.145 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-02 12:20:23.223 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 5 lines
05-02 12:20:23.348 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
05-02 12:20:24.373 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 12 lines
05-02 12:20:24.413 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 3 lines
05-02 12:20:24.418 1287 861 I chatty : uid=1000(system) Binder:1287_10 expire 1 line
05-02 12:20:26.182 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 13 lines
05-02 12:20:26.284 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 1 line
05-02 12:20:26.284 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-02 12:20:26.493 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 12:20:31.424 1287 1348 I chatty : uid=1000(system) android.ui expire 17 lines
05-02 12:20:31.942 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 4 lines
05-02 12:20:31.997 1287 1469 I chatty : uid=1000(system) InputReader expire 5 lines
05-02 12:20:34.094 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-02 12:20:34.221 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 12 lines
05-02 12:20:34.280 1287 1350 I chatty : uid=1000(system) android.display expire 18 lines
05-02 12:20:34.689 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 12:20:35.105 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 4 lines
05-02 12:20:35.956 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-02 12:20:35.972 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 12:20:36.003 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-02 12:20:36.011 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 4 lines
05-02 12:20:36.045 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 4 lines
05-02 12:20:36.127 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 12:23:37.490 1287 1287 I chatty : uid=1000 system_server expire 6 lines
05-02 12:30:52.171 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 5 lines
05-02 12:30:52.320 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 2 lines
05-02 12:30:52.321 1287 1368 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 12:33:09.289 1287 1347 I chatty : uid=1000(system) android.fg expire 2 lines
05-02 12:33:09.472 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 1 line
05-02 12:33:10.386 1287 2474 I chatty : uid=1000(system) Binder:1287_C expire 11 lines
05-02 12:33:10.386 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-02 12:33:10.701 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 9 lines
05-02 12:33:10.727 1287 1350 I chatty : uid=1000(system) android.display expire 6 lines
05-02 12:33:11.132 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 12:33:47.550 1287 1467 I chatty : uid=1000(system) UEventObserver expire 11 lines
05-02 12:33:47.671 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-02 12:33:47.675 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 5 lines
05-02 12:33:47.686 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 4 lines
05-02 12:33:47.777 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 12:33:47.793 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-02 12:33:47.799 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-02 12:33:47.863 1287 861 I chatty : uid=1000(system) Binder:1287_10 expire 5 lines
05-02 12:33:47.891 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-02 12:33:48.296 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 12:33:48.449 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 21 lines
05-02 12:33:49.754 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-02 12:33:49.988 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 4 lines
05-02 12:33:50.008 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 8 lines
05-02 12:34:05.396 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 12:34:21.665 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 12:34:29.497 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-02 12:34:29.498 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
05-02 12:34:37.231 1287 1367 I chatty : uid=1000(system) ActivityManager expire 8 lines
05-02 12:35:17.314 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 1 line
05-02 12:35:17.819 1287 1469 I chatty : uid=1000(system) InputReader expire 17 lines
05-02 12:35:18.259 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 12:35:19.547 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-02 12:35:19.667 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 12 lines
05-02 12:35:19.709 1287 1350 I chatty : uid=1000(system) android.display expire 17 lines
05-02 12:35:20.124 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-02 12:35:20.480 1287 1366 I chatty : uid=1000(system) android.bg expire 1 line
05-02 12:35:20.544 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 4 lines
05-02 12:35:21.394 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
05-02 12:35:21.411 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 12:35:21.439 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 4 lines
05-02 12:35:21.442 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-02 12:35:21.557 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 12:35:21.560 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 4 lines
05-02 12:35:21.840 1287 1367 I chatty : uid=1000(system) ActivityManager expire 9 lines
05-02 12:35:26.412 1287 1350 I chatty : uid=1000(system) android.display expire 7 lines
05-02 12:35:26.430 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-02 12:36:53.791 1287 1347 I chatty : uid=1000(system) android.fg expire 2 lines
05-02 12:36:54.372 1287 1369 I chatty : uid=1000(system) Binder:1287_14 expire 11 lines
05-02 12:36:54.373 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-02 12:36:54.504 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-02 12:36:54.754 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 9 lines
05-02 12:37:03.007 1287 1467 I chatty : uid=1000(system) UEventObserver expire 11 lines
05-02 12:37:03.143 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 5 lines
05-02 12:37:03.147 1287 1348 I chatty : uid=1000(system) android.ui expire 1 line
05-02 12:37:03.198 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 12 lines
05-02 12:37:03.235 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 12:37:03.246 1287 1367 I chatty : uid=1000(system) ActivityManager expire 6 lines
05-02 12:37:03.252 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-02 12:37:03.281 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 6 lines
05-02 12:37:03.487 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-02 12:37:03.766 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 12:37:05.128 1287 2725 I chatty : uid=1000(system) Binder:1287_1E expire 12 lines
05-02 12:37:05.475 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 4 lines
05-02 12:37:08.272 1287 1367 I chatty : uid=1000(system) ActivityManager expire 27 lines
05-02 12:37:24.188 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 1 line
05-02 12:37:24.188 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 4 lines
05-02 12:37:36.024 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 12:38:44.703 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 5 lines
05-02 12:39:36.682 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
05-02 12:39:43.701 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 12:39:43.742 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 12:39:43.782 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 3 lines
05-02 12:39:43.823 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
05-02 12:39:43.878 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 4 lines
05-02 12:39:44.020 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
05-02 12:39:44.022 1287 1347 I chatty : uid=1000(system) android.fg expire 4 lines
05-02 12:39:44.032 1287 1287 I chatty : uid=1000 system_server expire 7 lines
05-02 12:39:48.727 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-02 12:51:01.867 1287 1469 I chatty : uid=1000(system) InputReader expire 5 lines
05-02 12:51:01.945 1287 1367 I chatty : uid=1000(system) ActivityManager expire 9 lines
05-02 12:51:02.043 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 5 lines
05-02 12:51:02.156 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 1 line
05-02 12:51:08.714 1287 1469 I chatty : uid=1000(system) InputReader expire 13 lines
05-02 12:51:09.121 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 12:51:09.140 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-02 12:51:09.167 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 23 lines
05-02 12:51:09.978 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 1 line
05-02 12:51:10.227 1287 2474 I chatty : uid=1000(system) Binder:1287_C expire 4 lines
05-02 12:51:11.272 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 4 lines
05-02 12:51:11.335 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 12:51:11.364 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 12:51:12.191 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-02 12:51:19.477 1287 1367 I chatty : uid=1000(system) ActivityManager expire 16 lines
05-02 12:52:21.060 1287 1348 I chatty : uid=1000(system) android.ui expire 17 lines
05-02 12:52:21.128 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 1 line
05-02 12:52:21.550 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-02 12:52:21.578 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 6 lines
05-02 12:52:23.081 1287 1467 I chatty : uid=1000(system) UEventObserver expire 22 lines
05-02 12:52:23.192 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 12:52:23.200 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 12 lines
05-02 12:52:23.609 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 12:52:23.966 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 2 lines
05-02 12:52:24.912 1287 1350 I chatty : uid=1000(system) android.display expire 11 lines
05-02 12:52:24.913 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 14 lines
05-02 12:52:24.929 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-02 12:52:24.956 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 4 lines
05-02 12:52:24.956 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-02 12:52:25.031 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 4 lines
05-02 12:52:25.081 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 12:52:40.964 1287 1469 I chatty : uid=1000(system) InputReader expire 1 line
05-02 12:52:41.088 1287 1367 I chatty : uid=1000(system) ActivityManager expire 9 lines
05-02 12:52:41.098 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 13 lines
05-02 12:52:41.127 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 5 lines
05-02 12:52:41.249 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-02 12:52:41.434 1287 1350 I chatty : uid=1000(system) android.display expire 6 lines
05-02 12:52:41.532 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 12:52:41.710 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 1 line
05-02 12:52:48.965 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 1 line
05-02 12:52:49.019 1287 1444 I chatty : uid=1000(system) Binder:1287_4 expire 5 lines
05-02 12:52:49.024 1287 1350 I chatty : uid=1000(system) android.display expire 5 lines
05-02 12:52:49.054 1287 3110 I chatty : uid=1000(system) Binder:1287_1F expire 4 lines
05-02 12:52:49.111 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 2 lines
05-02 12:52:49.112 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-02 12:52:49.400 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 12:52:50.423 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 1 line
05-02 12:52:51.426 1287 1368 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 12:52:53.994 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-02 13:00:53.334 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 3 lines
05-02 13:01:39.688 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 9 lines
05-02 13:01:39.697 926 926 I wificond: Pno scan started for frequencies: 2437,
05-02 13:01:39.831 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'INTERFACE' not found
05-02 13:01:39.831 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'STATE' not found
05-02 13:01:39.831 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
05-02 13:01:39.831 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
05-02 13:01:39.840 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 3 lines
05-02 13:01:39.940 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-02 13:01:40.049 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 13:01:40.170 1287 1347 I chatty : uid=1000(system) android.fg expire 2 lines
05-02 13:01:40.435 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 26 lines
05-02 13:02:01.510 926 926 I wificond: Pno scan result ready event
05-02 13:02:01.560 926 926 W wificond: Scan is not started. Ignore abort request
05-02 13:02:02.047 1287 1482 I chatty : uid=1000(system) WifiHandlerThre expire 1 line
05-02 13:02:02.058 926 926 I wificond: Pno scan stopped
05-02 13:02:03.689 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'INTERFACE' not found
05-02 13:02:03.689 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'STATE' not found
05-02 13:02:03.689 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
05-02 13:02:03.689 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
05-02 13:02:03.732 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 8 lines
05-02 13:02:04.157 1287 1367 I chatty : uid=1000(system) ActivityManager expire 4 lines
05-02 13:02:04.228 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 13:02:04.872 1287 1467 I chatty : uid=1000(system) UEventObserver expire 11 lines
05-02 13:02:04.880 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 10 lines
05-02 13:02:04.957 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
05-02 13:02:05.077 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 4 lines
05-02 13:02:05.083 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 13:02:05.117 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-02 13:02:05.153 1287 1367 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-02 13:02:05.194 1287 1351 I chatty : uid=1000(system) android.anim expire 1 line
05-02 13:02:05.247 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
05-02 13:02:05.262 1287 1917 I chatty : uid=1000(system) Binder:1287_9 expire 5 lines
05-02 13:02:05.673 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 13:02:05.801 1287 1347 I chatty : uid=1000(system) android.fg expire 3 lines
05-02 13:02:05.944 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 1 line
05-02 13:02:08.163 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 11 lines
05-02 13:02:08.216 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 8 lines
05-02 13:02:08.523 1287 1367 I chatty : uid=1000(system) ActivityManager expire 2 lines
05-02 13:02:08.609 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 9 lines
05-02 13:02:08.628 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 4 lines
05-02 13:02:08.835 3579 2460 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-02 13:02:11.039 1287 1287 I chatty : uid=1000 system_server expire 17 lines
05-02 13:02:11.125 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 3 lines
05-02 13:02:11.125 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-02 13:02:11.128 1287 1287 I chatty : uid=1000 system_server expire 18 lines
05-02 13:02:11.144 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 9 lines
05-02 13:02:11.149 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 12 lines
05-02 13:02:11.253 3579 3579 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-02 13:02:11.299 3579 3579 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-02 13:02:11.300 3579 3579 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-02 13:02:11.349 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 12 lines
05-02 13:02:11.352 1287 1287 I chatty : uid=1000 system_server expire 5 lines
05-02 13:02:11.354 1287 2032 I chatty : uid=1000(system) ConnectionSvrFo expire 2 lines
05-02 13:02:11.410 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 13:02:11.444 1287 1434 I chatty : uid=1000(system) Binder:1287_15 expire 2 lines
05-02 13:02:11.517 3579 3579 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-02 13:02:11.735 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 14 lines
05-02 13:02:11.774 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-02 13:02:11.779 1287 2473 I chatty : uid=1000(system) Binder:1287_B expire 12 lines
05-02 13:02:11.792 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 1 line
05-02 13:02:11.819 1287 1367 I chatty : uid=1000(system) ActivityManager expire 1 line
05-02 13:02:11.820 1287 1368 I chatty : uid=1000(system) ActivityManager expire 7 lines
05-02 13:02:11.827 1287 2027 I chatty : uid=1000(system) uteStateMachine expire 5 lines
05-02 13:02:11.841 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 4 lines
05-02 13:02:11.856 1287 1382 I chatty : uid=1000(system) Binder:1287_1C expire 7 lines
05-02 13:02:11.913 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 6 lines
05-02 13:02:11.988 1795 1795 I TelecomFramework: TelephonyConnectionService: notifyCreateConnectionComplete TC@4_1: (...->CSW.hCCC)->CS.crCoC->H.CS.crCoC(cap/cast)@E-E-E-DrQ
05-02 13:02:11.994 1795 1795 I TelecomFramework: TelephonyConnectionService: onAudioStateChanged TC@4_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-DrQ
05-02 13:02:12.217 1287 1780 I chatty : uid=1000(system) Binder:1287_1D expire 4 lines
05-02 13:02:12.285 1287 1287 I chatty : uid=1000 system_server expire 1 line
05-02 13:02:13.253 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 9 lines
05-02 13:02:13.269 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-02 13:02:13.275 1287 1350 I chatty : uid=1000(system) android.display expire 3 lines
05-02 13:02:17.427 1287 1191 I chatty : uid=1000(system) Binder:1287_11 expire 17 lines
05-02 13:02:18.049 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 1 line
05-02 13:02:18.056 1287 2023 I chatty : uid=1000(system) BluetoothRouteM expire 1 line
05-02 13:02:18.075 1287 2653 I chatty : uid=1000 system_server expire 1 line
05-02 13:02:26.000 1287 1234 I chatty : uid=1000(system) Binder:1287_12 expire 15 lines
05-02 13:02:26.042 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 20 lines
05-02 13:02:26.066 1287 2028 I chatty : uid=1000(system) CallAudioModeSt expire 2 lines
05-02 13:02:34.108 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 1 line
05-02 13:02:34.274 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 2 lines
05-02 13:02:38.503 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
05-02 13:02:38.542 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 13:02:39.872 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 9 lines
05-02 13:02:40.191 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 25 lines
05-02 13:03:07.319 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
05-02 13:03:33.797 1287 1367 I chatty : uid=1000(system) ActivityManager expire 10 lines
05-02 13:03:39.673 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
05-02 13:03:39.678 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 3 lines
05-02 13:03:40.758 1287 1350 I chatty : uid=1000(system) android.display expire 1 line
05-02 13:03:45.105 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 6 lines
05-02 13:03:48.171 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'INTERFACE' not found
05-02 13:03:48.171 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'STATE' not found
05-02 13:03:48.171 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
05-02 13:03:48.172 487 538 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
05-02 13:03:48.274 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 2 lines
05-02 13:03:48.302 1287 1347 I chatty : uid=1000(system) android.fg expire 1 line
05-02 13:03:48.391 1287 1443 I chatty : uid=1000(system) Binder:1287_3 expire 1 line
05-02 13:03:48.394 1287 3448 I chatty : uid=1000(system) Binder:1287_D expire 1 line
05-02 13:03:48.417 1287 1287 I chatty : uid=1000 system_server expire 2 lines
05-02 13:03:48.419 1287 1368 I chatty : uid=1000(system) ActivityManager expire 15 lines
05-02 13:03:48.565 1287 1912 I chatty : uid=1000(system) Binder:1287_7 expire 1 line
05-02 13:03:50.695 1287 1367 I chatty : uid=1000(system) ActivityManager expire 13 lines
05-02 13:03:51.161 1287 2451 I chatty : uid=1000(system) Binder:1287_18 expire 1 line
05-02 13:03:51.162 1287 1486 I chatty : uid=1000(system) ConnectivitySer expire 11 lines
05-02 13:03:51.778 1287 3250 I chatty : uid=1000(system) Binder:1287_20 expire 1 line
05-02 13:03:52.424 588 588 E [email protected]: Failed to open directory: Permission denied
05-02 13:03:52.424 588 588 E [email protected]: Error occurred while deleting old tombstone files
05-02 13:03:52.424 588 588 E [email protected]: Error writing files to flash
05-02 13:03:52.662 588 588 E [email protected]: Failed to open directory: Permission denied
05-02 13:03:52.662 588 588 E [email protected]: Error occurred while deleting old tombstone files
05-02 13:03:52.662 588 588 E [email protected]: Error writing files to flash
05-02 13:03:55.516 588 588 E [email protected]: Failed to open directory: Permission denied
05-02 13:03:55.516 588 588 E [email protected]: Error occurred while deleting old tombstone files
05-02 13:03:55.516 588 588 E [email protected]: Error writing files to flash
05-02 13:03:59.766 1287 1916 I chatty : uid=1000(system) Binder:1287_8 expire 1 line
05-02 13:03:59.849 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 13:04:00.509 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
05-02 13:04:00.532 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 13 lines
05-02 13:04:19.071 1287 1350 I chatty : uid=1000(system) android.display expire 8 lines
05-02 13:04:23.772 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 26 lines
05-02 13:04:25.883 1287 1367 I chatty : uid=1000(system) ActivityManager expire 35 lines
05-02 13:05:30.624 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 8 lines
05-02 13:05:30.625 1287 1406 I chatty : uid=1000(system) PowerManagerSer expire 13 lines
05-02 13:05:42.091 1287 1350 I chatty : uid=1000(system) android.display expire 4 lines
05-02 13:08:51.258 1287 1367 I chatty : uid=1000(system) ActivityManager expire 11 lines
05-02 13:09:00.770 1287 1379 I chatty : uid=1000(system) batterystats-wo expire 4 lines
05-02 13:11:41.150 1287 1461 I chatty : uid=1000(system) AlarmManager expire 1 line
05-02 13:11:43.977 1287 1311 I chatty : uid=1000(system) Binder:1287_2 expire 1 line