-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathErrorLog
4969 lines (4969 loc) · 568 KB
/
ErrorLog
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
12-31 19:00:26.925 385 385 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 385 (init), pid 385 (init)
12-31 19:00:26.976 385 385 F libc : crash_dump helper failed to exec
12-31 19:00:33.378 981 981 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 981 (xtra-daemon), pid 981 (xtra-daemon)
12-31 19:00:33.542 1018 1018 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
12-31 19:00:33.542 1018 1018 F DEBUG : Build fingerprint: 'Cat/S22FLIP/S22FLIP:11/RKQ1.210416.002/LTE_S02113.11_N_S22Flip_0.030.03:user/release-keys'
12-31 19:00:33.542 1018 1018 F DEBUG : Revision: '0'
12-31 19:00:33.542 1018 1018 F DEBUG : ABI: 'arm'
12-31 19:00:33.543 1018 1018 F DEBUG : Timestamp: 1969-12-31 19:00:33-0500
12-31 19:00:33.543 1018 1018 F DEBUG : pid: 981, tid: 981, name: xtra-daemon >>> xtra-daemon <<<
12-31 19:00:33.543 1018 1018 F DEBUG : uid: 1021
12-31 19:00:33.543 1018 1018 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
12-31 19:00:33.544 1018 1018 F DEBUG : Abort message: 'ubsan: mul-overflow'
12-31 19:00:33.544 1018 1018 F DEBUG : r0 00000000 r1 000003d5 r2 00000006 r3 be80e148
12-31 19:00:33.544 1018 1018 F DEBUG : r4 be80e15c r5 be80e140 r6 000003d5 r7 0000016b
12-31 19:00:33.544 1018 1018 F DEBUG : r8 be80e148 r9 be80e158 r10 be80e178 r11 be80e168
12-31 19:00:33.544 1018 1018 F DEBUG : ip 000003d5 sp be80e118 lr a90c33a9 pc a90c33bc
12-31 19:00:33.595 1018 1018 F DEBUG : backtrace:
12-31 19:00:33.595 1018 1018 F DEBUG : #00 pc 000653bc /apex/com.android.runtime/lib/bionic/libc.so (abort+172) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
12-31 19:00:33.595 1018 1018 F DEBUG : #01 pc 000314a4 /vendor/bin/xtra-daemon (abort_with_message(char const*)+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:33.595 1018 1018 F DEBUG : #02 pc 00031620 /vendor/bin/xtra-daemon (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:33.596 1018 1018 F DEBUG : #03 pc 0002389f /vendor/bin/xtra-daemon (izat_xtra::XtraTimer::start(long)+118) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:33.596 1018 1018 F DEBUG : #04 pc 0002572d /vendor/bin/xtra-daemon (izat_xtra::XtraNativeClient::XtraNativeClient(izat_xtra::XtraClient&, std::__1::function<void ()>&)+516) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:33.596 1018 1018 F DEBUG : #05 pc 00011dd1 /vendor/bin/xtra-daemon (izat_xtra::XtraClient::XtraClient(std::__1::function<void ()>&)+80) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:33.596 1018 1018 F DEBUG : #06 pc 00014293 /vendor/bin/xtra-daemon (izat_xtra::XtraHolder::XtraHolder()+146) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:33.596 1018 1018 F DEBUG : #07 pc 00014083 /vendor/bin/xtra-daemon (izat_xtra::initAndRunXtra()+62) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:33.596 1018 1018 F DEBUG : #08 pc 0003129f /vendor/bin/xtra-daemon (main+94) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:33.596 1018 1018 F DEBUG : #09 pc 0005fbc1 /apex/com.android.runtime/lib/bionic/libc.so (__libc_init+68) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
12-31 19:00:33.931 1048 1048 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 1048 (xtra-daemon), pid 1048 (xtra-daemon)
12-31 19:00:34.039 1062 1062 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
12-31 19:00:34.039 1062 1062 F DEBUG : Build fingerprint: 'Cat/S22FLIP/S22FLIP:11/RKQ1.210416.002/LTE_S02113.11_N_S22Flip_0.030.03:user/release-keys'
12-31 19:00:34.039 1062 1062 F DEBUG : Revision: '0'
12-31 19:00:34.039 1062 1062 F DEBUG : ABI: 'arm'
12-31 19:00:34.041 1062 1062 F DEBUG : Timestamp: 1969-12-31 19:00:34-0500
12-31 19:00:34.041 1062 1062 F DEBUG : pid: 1048, tid: 1048, name: xtra-daemon >>> xtra-daemon <<<
12-31 19:00:34.041 1062 1062 F DEBUG : uid: 1021
12-31 19:00:34.041 1062 1062 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
12-31 19:00:34.041 1062 1062 F DEBUG : Abort message: 'ubsan: mul-overflow'
12-31 19:00:34.041 1062 1062 F DEBUG : r0 00000000 r1 00000418 r2 00000006 r3 beb12148
12-31 19:00:34.041 1062 1062 F DEBUG : r4 beb1215c r5 beb12140 r6 00000418 r7 0000016b
12-31 19:00:34.042 1062 1062 F DEBUG : r8 beb12148 r9 beb12158 r10 beb12178 r11 beb12168
12-31 19:00:34.042 1062 1062 F DEBUG : ip 00000418 sp beb12118 lr a817a3a9 pc a817a3bc
12-31 19:00:34.080 1062 1062 F DEBUG : backtrace:
12-31 19:00:34.080 1062 1062 F DEBUG : #00 pc 000653bc /apex/com.android.runtime/lib/bionic/libc.so (abort+172) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
12-31 19:00:34.080 1062 1062 F DEBUG : #01 pc 000314a4 /vendor/bin/xtra-daemon (abort_with_message(char const*)+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.081 1062 1062 F DEBUG : #02 pc 00031620 /vendor/bin/xtra-daemon (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.081 1062 1062 F DEBUG : #03 pc 0002389f /vendor/bin/xtra-daemon (izat_xtra::XtraTimer::start(long)+118) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.082 1062 1062 F DEBUG : #04 pc 0002572d /vendor/bin/xtra-daemon (izat_xtra::XtraNativeClient::XtraNativeClient(izat_xtra::XtraClient&, std::__1::function<void ()>&)+516) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.082 1062 1062 F DEBUG : #05 pc 00011dd1 /vendor/bin/xtra-daemon (izat_xtra::XtraClient::XtraClient(std::__1::function<void ()>&)+80) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.082 1062 1062 F DEBUG : #06 pc 00014293 /vendor/bin/xtra-daemon (izat_xtra::XtraHolder::XtraHolder()+146) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.082 1062 1062 F DEBUG : #07 pc 00014083 /vendor/bin/xtra-daemon (izat_xtra::initAndRunXtra()+62) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.082 1062 1062 F DEBUG : #08 pc 0003129f /vendor/bin/xtra-daemon (main+94) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.082 1062 1062 F DEBUG : #09 pc 0005fbc1 /apex/com.android.runtime/lib/bionic/libc.so (__libc_init+68) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
12-31 19:00:34.259 1068 1068 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 1068 (xtra-daemon), pid 1068 (xtra-daemon)
12-31 19:00:34.303 1077 1077 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
12-31 19:00:34.303 1077 1077 F DEBUG : Build fingerprint: 'Cat/S22FLIP/S22FLIP:11/RKQ1.210416.002/LTE_S02113.11_N_S22Flip_0.030.03:user/release-keys'
12-31 19:00:34.303 1077 1077 F DEBUG : Revision: '0'
12-31 19:00:34.303 1077 1077 F DEBUG : ABI: 'arm'
12-31 19:00:34.304 1077 1077 F DEBUG : Timestamp: 1969-12-31 19:00:34-0500
12-31 19:00:34.304 1077 1077 F DEBUG : pid: 1068, tid: 1068, name: xtra-daemon >>> xtra-daemon <<<
12-31 19:00:34.304 1077 1077 F DEBUG : uid: 1021
12-31 19:00:34.304 1077 1077 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
12-31 19:00:34.304 1077 1077 F DEBUG : Abort message: 'ubsan: mul-overflow'
12-31 19:00:34.304 1077 1077 F DEBUG : r0 00000000 r1 0000042c r2 00000006 r3 beefd148
12-31 19:00:34.304 1077 1077 F DEBUG : r4 beefd15c r5 beefd140 r6 0000042c r7 0000016b
12-31 19:00:34.304 1077 1077 F DEBUG : r8 beefd148 r9 beefd158 r10 beefd178 r11 beefd168
12-31 19:00:34.304 1077 1077 F DEBUG : ip 0000042c sp beefd118 lr b0ef53a9 pc b0ef53bc
12-31 19:00:34.324 1077 1077 F DEBUG : backtrace:
12-31 19:00:34.325 1077 1077 F DEBUG : #00 pc 000653bc /apex/com.android.runtime/lib/bionic/libc.so (abort+172) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
12-31 19:00:34.326 1077 1077 F DEBUG : #01 pc 000314a4 /vendor/bin/xtra-daemon (abort_with_message(char const*)+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.326 1077 1077 F DEBUG : #02 pc 00031620 /vendor/bin/xtra-daemon (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.326 1077 1077 F DEBUG : #03 pc 0002389f /vendor/bin/xtra-daemon (izat_xtra::XtraTimer::start(long)+118) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.326 1077 1077 F DEBUG : #04 pc 0002572d /vendor/bin/xtra-daemon (izat_xtra::XtraNativeClient::XtraNativeClient(izat_xtra::XtraClient&, std::__1::function<void ()>&)+516) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.326 1077 1077 F DEBUG : #05 pc 00011dd1 /vendor/bin/xtra-daemon (izat_xtra::XtraClient::XtraClient(std::__1::function<void ()>&)+80) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.327 1077 1077 F DEBUG : #06 pc 00014293 /vendor/bin/xtra-daemon (izat_xtra::XtraHolder::XtraHolder()+146) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.327 1077 1077 F DEBUG : #07 pc 00014083 /vendor/bin/xtra-daemon (izat_xtra::initAndRunXtra()+62) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.328 1077 1077 F DEBUG : #08 pc 0003129f /vendor/bin/xtra-daemon (main+94) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.328 1077 1077 F DEBUG : #09 pc 0005fbc1 /apex/com.android.runtime/lib/bionic/libc.so (__libc_init+68) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
12-31 19:00:34.493 1086 1086 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 1086 (xtra-daemon), pid 1086 (xtra-daemon)
12-31 19:00:34.591 1096 1096 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
12-31 19:00:34.592 1096 1096 F DEBUG : Build fingerprint: 'Cat/S22FLIP/S22FLIP:11/RKQ1.210416.002/LTE_S02113.11_N_S22Flip_0.030.03:user/release-keys'
12-31 19:00:34.592 1096 1096 F DEBUG : Revision: '0'
12-31 19:00:34.592 1096 1096 F DEBUG : ABI: 'arm'
12-31 19:00:34.593 1096 1096 F DEBUG : Timestamp: 1969-12-31 19:00:34-0500
12-31 19:00:34.593 1096 1096 F DEBUG : pid: 1086, tid: 1086, name: xtra-daemon >>> xtra-daemon <<<
12-31 19:00:34.593 1096 1096 F DEBUG : uid: 1021
12-31 19:00:34.593 1096 1096 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
12-31 19:00:34.593 1096 1096 F DEBUG : Abort message: 'ubsan: mul-overflow'
12-31 19:00:34.593 1096 1096 F DEBUG : r0 00000000 r1 0000043e r2 00000006 r3 bef7a148
12-31 19:00:34.593 1096 1096 F DEBUG : r4 bef7a15c r5 bef7a140 r6 0000043e r7 0000016b
12-31 19:00:34.593 1096 1096 F DEBUG : r8 bef7a148 r9 bef7a158 r10 bef7a178 r11 bef7a168
12-31 19:00:34.593 1096 1096 F DEBUG : ip 0000043e sp bef7a118 lr b57473a9 pc b57473bc
12-31 19:00:34.645 1096 1096 F DEBUG : backtrace:
12-31 19:00:34.646 1096 1096 F DEBUG : #00 pc 000653bc /apex/com.android.runtime/lib/bionic/libc.so (abort+172) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
12-31 19:00:34.646 1096 1096 F DEBUG : #01 pc 000314a4 /vendor/bin/xtra-daemon (abort_with_message(char const*)+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.646 1096 1096 F DEBUG : #02 pc 00031620 /vendor/bin/xtra-daemon (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.646 1096 1096 F DEBUG : #03 pc 0002389f /vendor/bin/xtra-daemon (izat_xtra::XtraTimer::start(long)+118) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.646 1096 1096 F DEBUG : #04 pc 0002572d /vendor/bin/xtra-daemon (izat_xtra::XtraNativeClient::XtraNativeClient(izat_xtra::XtraClient&, std::__1::function<void ()>&)+516) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.647 1096 1096 F DEBUG : #05 pc 00011dd1 /vendor/bin/xtra-daemon (izat_xtra::XtraClient::XtraClient(std::__1::function<void ()>&)+80) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.648 1096 1096 F DEBUG : #06 pc 00014293 /vendor/bin/xtra-daemon (izat_xtra::XtraHolder::XtraHolder()+146) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.648 1096 1096 F DEBUG : #07 pc 00014083 /vendor/bin/xtra-daemon (izat_xtra::initAndRunXtra()+62) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.649 1096 1096 F DEBUG : #08 pc 0003129f /vendor/bin/xtra-daemon (main+94) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:34.650 1096 1096 F DEBUG : #09 pc 0005fbc1 /apex/com.android.runtime/lib/bionic/libc.so (__libc_init+68) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
12-31 19:00:34.922 1127 1127 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 1127 (xtra-daemon), pid 1127 (xtra-daemon)
12-31 19:00:35.078 1160 1160 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
12-31 19:00:35.078 1160 1160 F DEBUG : Build fingerprint: 'Cat/S22FLIP/S22FLIP:11/RKQ1.210416.002/LTE_S02113.11_N_S22Flip_0.030.03:user/release-keys'
12-31 19:00:35.078 1160 1160 F DEBUG : Revision: '0'
12-31 19:00:35.078 1160 1160 F DEBUG : ABI: 'arm'
12-31 19:00:35.079 1160 1160 F DEBUG : Timestamp: 1969-12-31 19:00:35-0500
12-31 19:00:35.079 1160 1160 F DEBUG : pid: 1127, tid: 1127, name: xtra-daemon >>> xtra-daemon <<<
12-31 19:00:35.079 1160 1160 F DEBUG : uid: 1021
12-31 19:00:35.079 1160 1160 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
12-31 19:00:35.079 1160 1160 F DEBUG : Abort message: 'ubsan: mul-overflow'
12-31 19:00:35.079 1160 1160 F DEBUG : r0 00000000 r1 00000467 r2 00000006 r3 bece6148
12-31 19:00:35.079 1160 1160 F DEBUG : r4 bece615c r5 bece6140 r6 00000467 r7 0000016b
12-31 19:00:35.080 1160 1160 F DEBUG : r8 bece6148 r9 bece6158 r10 bece6178 r11 bece6168
12-31 19:00:35.080 1160 1160 F DEBUG : ip 00000467 sp bece6118 lr b146f3a9 pc b146f3bc
12-31 19:00:35.093 1160 1160 F DEBUG : backtrace:
12-31 19:00:35.093 1160 1160 F DEBUG : #00 pc 000653bc /apex/com.android.runtime/lib/bionic/libc.so (abort+172) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
12-31 19:00:35.093 1160 1160 F DEBUG : #01 pc 000314a4 /vendor/bin/xtra-daemon (abort_with_message(char const*)+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.093 1160 1160 F DEBUG : #02 pc 00031620 /vendor/bin/xtra-daemon (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.093 1160 1160 F DEBUG : #03 pc 0002389f /vendor/bin/xtra-daemon (izat_xtra::XtraTimer::start(long)+118) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.093 1160 1160 F DEBUG : #04 pc 0002572d /vendor/bin/xtra-daemon (izat_xtra::XtraNativeClient::XtraNativeClient(izat_xtra::XtraClient&, std::__1::function<void ()>&)+516) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.094 1160 1160 F DEBUG : #05 pc 00011dd1 /vendor/bin/xtra-daemon (izat_xtra::XtraClient::XtraClient(std::__1::function<void ()>&)+80) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.094 1160 1160 F DEBUG : #06 pc 00014293 /vendor/bin/xtra-daemon (izat_xtra::XtraHolder::XtraHolder()+146) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.094 1160 1160 F DEBUG : #07 pc 00014083 /vendor/bin/xtra-daemon (izat_xtra::initAndRunXtra()+62) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.094 1160 1160 F DEBUG : #08 pc 0003129f /vendor/bin/xtra-daemon (main+94) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.095 1160 1160 F DEBUG : #09 pc 0005fbc1 /apex/com.android.runtime/lib/bionic/libc.so (__libc_init+68) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
12-31 19:00:35.230 1169 1169 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 1169 (xtra-daemon), pid 1169 (xtra-daemon)
12-31 19:00:35.326 1196 1196 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
12-31 19:00:35.326 1196 1196 F DEBUG : Build fingerprint: 'Cat/S22FLIP/S22FLIP:11/RKQ1.210416.002/LTE_S02113.11_N_S22Flip_0.030.03:user/release-keys'
12-31 19:00:35.326 1196 1196 F DEBUG : Revision: '0'
12-31 19:00:35.326 1196 1196 F DEBUG : ABI: 'arm'
12-31 19:00:35.327 1196 1196 F DEBUG : Timestamp: 1969-12-31 19:00:35-0500
12-31 19:00:35.327 1196 1196 F DEBUG : pid: 1169, tid: 1169, name: xtra-daemon >>> xtra-daemon <<<
12-31 19:00:35.327 1196 1196 F DEBUG : uid: 1021
12-31 19:00:35.327 1196 1196 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
12-31 19:00:35.327 1196 1196 F DEBUG : Abort message: 'ubsan: mul-overflow'
12-31 19:00:35.328 1196 1196 F DEBUG : r0 00000000 r1 00000491 r2 00000006 r3 be958148
12-31 19:00:35.328 1196 1196 F DEBUG : r4 be95815c r5 be958140 r6 00000491 r7 0000016b
12-31 19:00:35.328 1196 1196 F DEBUG : r8 be958148 r9 be958158 r10 be958178 r11 be958168
12-31 19:00:35.328 1196 1196 F DEBUG : ip 00000491 sp be958118 lr b36763a9 pc b36763bc
12-31 19:00:35.347 1196 1196 F DEBUG : backtrace:
12-31 19:00:35.347 1196 1196 F DEBUG : #00 pc 000653bc /apex/com.android.runtime/lib/bionic/libc.so (abort+172) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
12-31 19:00:35.347 1196 1196 F DEBUG : #01 pc 000314a4 /vendor/bin/xtra-daemon (abort_with_message(char const*)+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.347 1196 1196 F DEBUG : #02 pc 00031620 /vendor/bin/xtra-daemon (__ubsan_handle_mul_overflow_minimal_abort+24) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.348 1196 1196 F DEBUG : #03 pc 0002389f /vendor/bin/xtra-daemon (izat_xtra::XtraTimer::start(long)+118) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.348 1196 1196 F DEBUG : #04 pc 0002572d /vendor/bin/xtra-daemon (izat_xtra::XtraNativeClient::XtraNativeClient(izat_xtra::XtraClient&, std::__1::function<void ()>&)+516) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.348 1196 1196 F DEBUG : #05 pc 00011dd1 /vendor/bin/xtra-daemon (izat_xtra::XtraClient::XtraClient(std::__1::function<void ()>&)+80) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.348 1196 1196 F DEBUG : #06 pc 00014293 /vendor/bin/xtra-daemon (izat_xtra::XtraHolder::XtraHolder()+146) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.348 1196 1196 F DEBUG : #07 pc 00014083 /vendor/bin/xtra-daemon (izat_xtra::initAndRunXtra()+62) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.348 1196 1196 F DEBUG : #08 pc 0003129f /vendor/bin/xtra-daemon (main+94) (BuildId: d9e1c22d3c80c60c96f38736b120880c)
12-31 19:00:35.348 1196 1196 F DEBUG : #09 pc 0005fbc1 /apex/com.android.runtime/lib/bionic/libc.so (__libc_init+68) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
04-27 15:13:56.706 2233 2233 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 2233 (init), pid 2233 (init)
04-27 15:13:57.277 2233 2233 F libc : crash_dump helper failed to exec
04-28 13:17:50.323 3854 3854 F libc : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 3854 (dex2oat), pid 3854 (dex2oat)
04-28 13:17:50.379 3865 3865 F DEBUG : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
04-28 13:17:50.379 3865 3865 F DEBUG : Build fingerprint: 'Cat/S22FLIP/S22FLIP:11/RKQ1.210416.002/LTE_S02113.11_N_S22Flip_0.030.03:user/release-keys'
04-28 13:17:50.379 3865 3865 F DEBUG : Revision: '0'
04-28 13:17:50.379 3865 3865 F DEBUG : ABI: 'arm'
04-28 13:17:50.385 3865 3865 F DEBUG : Timestamp: 2023-04-28 13:17:50-0400
04-28 13:17:50.385 3865 3865 F DEBUG : pid: 3854, tid: 3854, name: dex2oat >>> /apex/com.android.art/bin/dex2oat32 <<<
04-28 13:17:50.385 3865 3865 F DEBUG : uid: 1001
04-28 13:17:50.385 3865 3865 F DEBUG : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
04-28 13:17:50.386 3865 3865 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>(0x12e563f8) vs java.lang.Class<vendor.qti.ims.rcsconfig.V1_0.IRcsConfig,dalvik.system.PathClassLoader>(0x12ed5dc0) (declaration of 'com.gsma.rcs.cm.qcom.config.a' appears in RcsSDK.apk)
04-28 13:17:50.386 3865 3865 F DEBUG : (Throwable with empty stack trace)
04-28 13:17:50.386 3865 3865 F DEBUG : '
04-28 13:17:50.386 3865 3865 F DEBUG : r0 00000000 r1 00000f0e r2 00000006 r3 beba0098
04-28 13:17:50.386 3865 3865 F DEBUG : r4 beba00ac r5 beba0090 r6 00000f0e r7 0000016b
04-28 13:17:50.386 3865 3865 F DEBUG : r8 beba0098 r9 beba00a8 r10 beba00c8 r11 beba00b8
04-28 13:17:50.386 3865 3865 F DEBUG : ip 00000f0e sp beba0068 lr b56463a9 pc b56463bc
04-28 13:17:50.445 3865 3865 F DEBUG : backtrace:
04-28 13:17:50.445 3865 3865 F DEBUG : #00 pc 000653bc /apex/com.android.runtime/lib/bionic/libc.so (abort+172) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
04-28 13:17:50.445 3865 3865 F DEBUG : #01 pc 003e2363 /apex/com.android.art/lib/libart.so (art::Runtime::Abort(char const*)+1802) (BuildId: 6f9494214cd0abf066dbd5579cf09128)
04-28 13:17:50.445 3865 3865 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)
04-28 13:17:50.445 3865 3865 F DEBUG : #03 pc 0000d149 /system/lib/libbase.so (android::base::LogMessage::~LogMessage()+224) (BuildId: f974f7275c0f2e8b2fc7449714ec7456)
04-28 13:17:50.445 3865 3865 F DEBUG : #04 pc 004268bb /apex/com.android.art/lib/libart.so (art::Thread::AssertNoPendingException() const+1306) (BuildId: 6f9494214cd0abf066dbd5579cf09128)
04-28 13:17:50.446 3865 3865 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)
04-28 13:17:50.446 3865 3865 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)
04-28 13:17:50.446 3865 3865 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)
04-28 13:17:50.446 3865 3865 F DEBUG : #08 pc 000617df /apex/com.android.art/bin/dex2oat32 (art::InitializeClassVisitor::ResolveTypesOfMethods(art::Thread*, art::ArtMethod*)+306) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
04-28 13:17:50.446 3865 3865 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)
04-28 13:17:50.446 3865 3865 F DEBUG : #10 pc 0005f5e5 /apex/com.android.art/bin/dex2oat32 (art::InitializeClassVisitor::Visit(unsigned int)+692) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
04-28 13:17:50.446 3865 3865 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)
04-28 13:17:50.447 3865 3865 F DEBUG : #12 pc 0043be51 /apex/com.android.art/lib/libart.so (art::ThreadPool::Wait(art::Thread*, bool, bool)+116) (BuildId: 6f9494214cd0abf066dbd5579cf09128)
04-28 13:17:50.447 3865 3865 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)
04-28 13:17:50.447 3865 3865 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)
04-28 13:17:50.447 3865 3865 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)
04-28 13:17:50.447 3865 3865 F DEBUG : #16 pc 0004e1bd /apex/com.android.art/bin/dex2oat32 (art::Dex2Oat::Compile()+4660) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
04-28 13:17:50.447 3865 3865 F DEBUG : #17 pc 00041461 /apex/com.android.art/bin/dex2oat32 (art::Dex2oat(int, char**)+4336) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
04-28 13:17:50.448 3865 3865 F DEBUG : #18 pc 00040367 /apex/com.android.art/bin/dex2oat32 (main+2) (BuildId: 2671f785ef1a1d5fce53d33d3de41988)
04-28 13:17:50.448 3865 3865 F DEBUG : #19 pc 0005fbc1 /apex/com.android.runtime/lib/bionic/libc.so (__libc_init+68) (BuildId: ebf64c5ac10e1302b1c8e5b0260f6438)
--------- beginning of system
04-28 15:17:26.894 1348 1413 I chatty : uid=1000(system) android.ui expire 17 lines
04-28 15:17:27.403 1348 1415 I chatty : uid=1000(system) android.display expire 4 lines
04-28 15:17:27.480 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 19 lines
04-28 15:17:28.068 1348 2110 I chatty : uid=1000(system) Binder:1348_1D expire 17 lines
04-28 15:17:28.194 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 3 lines
04-28 15:17:28.195 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
04-28 15:17:28.618 1348 1432 I chatty : uid=1000(system) ActivityManager expire 24 lines
04-28 15:17:29.427 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 9 lines
04-28 15:17:31.960 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
04-28 15:17:32.794 1348 1348 I chatty : uid=1000 system_server expire 2 lines
04-28 15:17:33.054 1348 2110 I chatty : uid=1000(system) Binder:1348_1D expire 4 lines
04-28 15:17:33.099 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 5 lines
04-28 15:17:35.224 1348 1432 I chatty : uid=1000(system) ActivityManager expire 17 lines
04-28 15:17:35.734 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 6 lines
04-28 15:17:40.579 1348 1431 I chatty : uid=1000(system) ActivityManager expire 12 lines
04-28 15:17:42.233 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 1 line
04-28 15:17:50.453 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 2 lines
04-28 15:19:02.897 1348 1593 I chatty : uid=1000(system) Binder:1348_5 expire 39 lines
04-28 15:19:08.010 1065 1065 W ViewRootImpl[Main]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_STAR, scanCode=522, metaState=0, flags=0x8, repeatCount=2, eventTime=7065024, downTime=7064572, deviceId=4, source=0x101, displayId=-1 }
04-28 15:19:08.011 1065 1065 W ViewRootImpl[Main]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_STAR, scanCode=522, metaState=0, flags=0x28, repeatCount=0, eventTime=7065148, downTime=7064572, deviceId=4, source=0x101, displayId=-1 }
04-28 15:19:08.013 1065 1065 I chatty : uid=10163(com.android.chrome) SyncHandler-2 identical 4 lines
04-28 15:19:08.013 1065 1065 W ViewRootImpl[Main]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_STAR, scanCode=522, metaState=0, flags=0x28, repeatCount=0, eventTime=7065148, downTime=7064572, deviceId=4, source=0x101, displayId=-1 }
04-28 15:19:08.271 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 8 lines
04-28 15:19:08.397 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 15:19:08.481 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
04-28 15:19:09.355 1348 2110 I chatty : uid=1000(system) Binder:1348_1D expire 4 lines
04-28 15:19:09.367 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 18 lines
04-28 15:19:09.415 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 1 line
04-28 15:19:09.875 1348 1348 I chatty : uid=1000 system_server expire 3 lines
04-28 15:19:10.735 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 6 lines
04-28 15:19:10.771 1348 2110 I chatty : uid=1000(system) Binder:1348_1D expire 12 lines
04-28 15:19:10.890 1065 1065 W ViewRootImpl[Main]: Dropping event due to no window focus: KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_STAR, scanCode=522, metaState=0, flags=0x8, repeatCount=2, eventTime=7068132, downTime=7067680, deviceId=4, source=0x101, displayId=-1 }
04-28 15:19:10.890 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 10 lines
04-28 15:19:10.894 1065 1065 W ViewRootImpl[Main]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_STAR, scanCode=522, metaState=0, flags=0x28, repeatCount=0, eventTime=7068190, downTime=7067680, deviceId=4, source=0x101, displayId=-1 }
04-28 15:19:10.894 1065 1065 I chatty : uid=10163(com.android.chrome) SyncHandler-2 identical 2 lines
04-28 15:19:10.894 1065 1065 W ViewRootImpl[Main]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_STAR, scanCode=522, metaState=0, flags=0x28, repeatCount=0, eventTime=7068190, downTime=7067680, deviceId=4, source=0x101, displayId=-1 }
04-28 15:19:10.897 1065 1065 W ViewRootImpl[Main]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_STAR, scanCode=522, metaState=0, flags=0x28, repeatCount=0, eventTime=7068190, downTime=7067680, deviceId=4, source=0x101, displayId=-1 }
04-28 15:19:10.897 1065 1065 W ViewRootImpl[Main]: Cancelling event due to no window focus: KeyEvent { action=ACTION_UP, keyCode=KEYCODE_STAR, scanCode=522, metaState=0, flags=0x28, repeatCount=0, eventTime=7068190, downTime=7067680, deviceId=4, source=0x101, displayId=-1 }
04-28 15:19:10.921 1348 1413 I chatty : uid=1000(system) android.ui expire 1 line
04-28 15:19:10.947 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 15:19:11.417 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 15:19:11.487 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
04-28 15:19:11.847 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 29 lines
04-28 15:19:14.120 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 12 lines
04-28 15:19:15.686 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 26 lines
04-28 15:19:16.105 1348 1348 I chatty : uid=1000 system_server expire 1 line
04-28 15:19:19.932 1348 1432 I chatty : uid=1000(system) ActivityManager expire 4 lines
04-28 15:19:25.249 1348 1593 I chatty : uid=1000(system) Binder:1348_5 expire 1 line
04-28 15:19:25.266 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 2 lines
04-28 15:19:36.082 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 25 lines
04-28 15:19:37.655 1348 1593 I chatty : uid=1000(system) Binder:1348_5 expire 8 lines
04-28 15:19:37.671 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 18 lines
04-28 15:19:38.076 1348 1348 I chatty : uid=1000 system_server expire 1 line
04-28 15:19:40.754 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 2 lines
04-28 15:19:40.835 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 5 lines
04-28 15:19:41.363 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 2 lines
04-28 15:19:42.175 1348 1432 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:19:42.240 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 14 lines
04-28 15:19:46.040 1348 1431 I chatty : uid=1000(system) ActivityManager expire 14 lines
04-28 15:20:41.117 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 10 lines
04-28 15:20:41.405 3500 2421 E ActivityThread: Failed to find provider info for com.qti.smq.Feedback.provider
04-28 15:20:41.502 1348 1593 I chatty : uid=1000(system) Binder:1348_5 expire 39 lines
04-28 15:20:41.593 3500 2421 E ActivityThread: Failed to find provider info for com.qti.smq.Feedback.provider
04-28 15:20:41.950 1348 1431 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:20:42.038 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 1 line
04-28 15:20:42.039 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
04-28 15:20:42.827 1348 1415 I chatty : uid=1000(system) android.display expire 4 lines
04-28 15:20:43.111 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 4 lines
04-28 15:20:47.174 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 23 lines
04-28 15:20:47.307 3500 1403 E ActivityThread: Failed to find provider info for com.qti.smq.Feedback.provider
04-28 15:20:47.467 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 13 lines
04-28 15:20:47.469 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 1 line
04-28 15:20:47.747 1348 1431 I chatty : uid=1000(system) ActivityManager expire 6 lines
04-28 15:20:48.035 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 15:20:49.091 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 4 lines
04-28 15:20:50.672 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 17 lines
04-28 15:20:50.908 1348 1528 I chatty : uid=1000(system) WifiHandlerThre expire 1 line
04-28 15:20:50.951 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 1 line
04-28 15:20:51.029 901 901 W wificond: Scan aborted
04-28 15:20:51.340 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'INTERFACE' not found
04-28 15:20:51.340 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'STATE' not found
04-28 15:20:51.340 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
04-28 15:20:51.340 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
04-28 15:20:51.397 1348 1593 I chatty : uid=1000(system) Binder:1348_5 expire 9 lines
04-28 15:20:51.611 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 7 lines
04-28 15:20:51.731 1348 1412 I chatty : uid=1000(system) android.fg expire 1 line
04-28 15:20:51.745 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 5 lines
04-28 15:20:51.993 1348 1431 I chatty : uid=1000(system) ActivityManager expire 5 lines
04-28 15:20:53.106 1348 1507 I chatty : uid=1000(system) AlarmManager expire 1 line
04-28 15:20:54.633 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 23 lines
04-28 15:20:54.700 3500 1510 E ActivityThread: Failed to find provider info for com.qti.smq.Feedback.provider
04-28 15:20:55.532 1348 1348 I chatty : uid=1000 system_server expire 1 line
04-28 15:20:55.541 1348 1415 I chatty : uid=1000(system) android.display expire 4 lines
04-28 15:20:55.620 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 15 lines
04-28 15:21:06.970 1348 1593 I chatty : uid=1000(system) Binder:1348_5 expire 23 lines
04-28 15:21:09.627 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 4 lines
04-28 15:21:09.724 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 4 lines
04-28 15:21:10.976 1348 1348 I chatty : uid=1000 system_server expire 8 lines
04-28 15:21:11.133 1348 1507 I chatty : uid=1000(system) AlarmManager expire 1 line
04-28 15:21:11.136 1348 1431 I chatty : uid=1000(system) ActivityManager expire 32 lines
04-28 15:21:22.840 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 2 lines
04-28 15:21:48.755 1348 1373 I chatty : uid=1000(system) Binder:1348_2 expire 1 line
04-28 15:21:55.107 1348 2110 I chatty : uid=1000(system) Binder:1348_1D expire 16 lines
04-28 15:21:55.162 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 36 lines
04-28 15:21:55.162 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 1 line
04-28 15:21:55.231 1348 1528 I chatty : uid=1000(system) WifiHandlerThre expire 2 lines
04-28 15:21:55.336 901 901 W wificond: Scan aborted
04-28 15:21:55.452 1348 1431 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:21:55.497 901 901 W wificond: Scan is not started. Ignore abort request
04-28 15:21:55.620 901 901 E wificond: NL80211_CMD_TRIGGER_SCAN failed: Device or resource busy
04-28 15:21:55.630 1348 1415 I chatty : uid=1000(system) android.display expire 8 lines
04-28 15:21:55.702 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 4 lines
04-28 15:21:55.804 901 901 E wificond: NL80211_CMD_TRIGGER_SCAN failed: Device or resource busy
04-28 15:21:57.839 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'INTERFACE' not found
04-28 15:21:57.839 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'STATE' not found
04-28 15:21:57.839 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
04-28 15:21:57.839 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
04-28 15:21:57.951 1348 1412 I chatty : uid=1000(system) android.fg expire 1 line
04-28 15:21:58.199 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 15:21:58.644 1348 1415 I chatty : uid=1000(system) android.display expire 6 lines
04-28 15:21:58.682 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 1 line
04-28 15:21:58.704 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 27 lines
04-28 15:21:59.791 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 4 lines
04-28 15:22:00.590 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 27 lines
04-28 15:22:01.396 1348 1415 I chatty : uid=1000(system) android.display expire 14 lines
04-28 15:22:01.464 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 8 lines
04-28 15:22:02.560 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 12 lines
04-28 15:22:04.492 1348 1431 I chatty : uid=1000(system) ActivityManager expire 7 lines
04-28 15:22:04.861 1348 1430 I chatty : uid=1000(system) android.bg expire 2 lines
04-28 15:22:05.106 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 23 lines
04-28 15:22:07.631 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 1 line
04-28 15:22:08.502 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 5 lines
04-28 15:22:08.649 1348 1348 I chatty : uid=1000 system_server expire 4 lines
04-28 15:22:10.320 1348 1432 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:22:14.573 1348 1431 I chatty : uid=1000(system) ActivityManager expire 27 lines
04-28 15:22:27.838 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
04-28 15:22:52.600 1348 1630 I chatty : uid=1000(system) Binder:1348_15 expire 1 line
04-28 15:22:54.116 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 1 line
04-28 15:22:54.984 1348 1373 I chatty : uid=1000(system) Binder:1348_2 expire 39 lines
04-28 15:22:55.067 1348 1630 I chatty : uid=1000(system) Binder:1348_15 expire 18 lines
04-28 15:22:55.606 1348 1415 I chatty : uid=1000(system) android.display expire 13 lines
04-28 15:22:58.483 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 15:23:02.522 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 1 line
04-28 15:23:02.534 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 27 lines
04-28 15:23:02.543 1348 1415 I chatty : uid=1000(system) android.display expire 4 lines
04-28 15:23:02.754 1348 2379 I chatty : uid=1000(system) Binder:1348_B expire 4 lines
04-28 15:23:02.773 1348 3777 I chatty : uid=1000(system) Binder:1348_1A expire 4 lines
04-28 15:23:03.062 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 13 lines
04-28 15:23:03.181 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 5 lines
04-28 15:23:03.247 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 1 line
04-28 15:23:03.247 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
04-28 15:23:03.250 1348 3580 I chatty : uid=1000(system) Binder:1348_1F expire 1 line
04-28 15:23:03.251 1348 2590 I chatty : uid=1000(system) Binder:1348_17 expire 1 line
04-28 15:23:03.252 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 1 line
04-28 15:23:03.253 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 1 line
04-28 15:23:03.278 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 6 lines
04-28 15:23:03.286 1348 1913 I chatty : uid=1000(system) Binder:1348_6 expire 1 line
04-28 15:23:03.287 1348 1158 I chatty : uid=1000(system) Binder:1348_1B expire 1 line
04-28 15:23:03.287 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
04-28 15:23:03.287 1348 1544 I chatty : uid=1000(system) Binder:1348_3 expire 1 line
04-28 15:23:03.288 1348 1415 I chatty : uid=1000(system) android.display expire 2 lines
04-28 15:23:03.433 1348 1373 I chatty : uid=1000(system) Binder:1348_2 expire 30 lines
04-28 15:23:03.746 1348 2590 I chatty : uid=1000(system) Binder:1348_17 expire 12 lines
04-28 15:23:03.866 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 1 line
04-28 15:23:03.982 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 1 line
04-28 15:23:03.988 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 14 lines
04-28 15:23:04.400 1348 1431 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:23:04.488 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 17 lines
04-28 15:23:04.503 1348 1415 I chatty : uid=1000(system) android.display expire 3 lines
04-28 15:23:04.624 1348 2049 I chatty : uid=1000(system) Binder:1348_1C expire 1 line
04-28 15:23:04.624 1348 1993 I chatty : uid=1000(system) Binder:1348_9 expire 1 line
04-28 15:23:04.625 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 1 line
04-28 15:23:04.625 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 4 lines
04-28 15:23:04.626 1348 1373 I chatty : uid=1000(system) Binder:1348_2 expire 1 line
04-28 15:23:04.630 1348 1372 I chatty : uid=1000(system) Binder:1348_1 expire 1 line
04-28 15:23:04.631 1348 2379 I chatty : uid=1000(system) Binder:1348_B expire 1 line
04-28 15:23:04.635 1348 3777 I chatty : uid=1000(system) Binder:1348_1A expire 1 line
04-28 15:23:04.638 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 1 line
04-28 15:23:04.654 1348 2590 I chatty : uid=1000(system) Binder:1348_17 expire 20 lines
04-28 15:23:05.247 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 11 lines
04-28 15:23:05.277 1348 1432 I chatty : uid=1000(system) ActivityManager expire 12 lines
04-28 15:23:05.346 1348 2590 I chatty : uid=1000(system) Binder:1348_17 expire 10 lines
04-28 15:23:05.696 1348 1687 I chatty : uid=1000(system) Binder:1348_16 expire 2 lines
04-28 15:23:06.039 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 1 line
04-28 15:23:06.435 1348 1431 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:23:06.641 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 6 lines
04-28 15:23:06.713 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 11 lines
04-28 15:23:34.584 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 7 lines
04-28 15:23:57.697 1348 1348 I chatty : uid=1000 system_server expire 1 line
04-28 15:24:13.325 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 2 lines
04-28 15:24:14.497 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 1 line
04-28 15:24:18.052 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 15:24:18.481 1348 1415 I chatty : uid=1000(system) android.display expire 5 lines
04-28 15:24:18.574 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 1 line
04-28 15:24:18.611 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 8 lines
04-28 15:24:19.460 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 19 lines
04-28 15:24:19.491 1348 1432 I chatty : uid=1000(system) ActivityManager expire 7 lines
04-28 15:24:19.497 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 19 lines
04-28 15:24:19.684 3071 3071 E LoadedApk: Unable to instantiate appComponentFactory
04-28 15:24:19.684 3071 3071 E LoadedApk: java.lang.ClassNotFoundException: Didn't find class "com.android.messaging.Test" on path: DexPathList[[zip file "/system/app/messaging/messaging.apk"],nativeLibraryDirectories=[/system/app/messaging/lib/arm, /system/app/messaging/messaging.apk!/lib/armeabi-v7a, /system/lib, /system/system_ext/lib, /product/lib, /system/lib, /system/system_ext/lib, /product/lib]]
04-28 15:24:19.684 3071 3071 E LoadedApk: at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:207)
04-28 15:24:19.684 3071 3071 E LoadedApk: at java.lang.ClassLoader.loadClass(ClassLoader.java:379)
04-28 15:24:19.684 3071 3071 E LoadedApk: at java.lang.ClassLoader.loadClass(ClassLoader.java:312)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.app.LoadedApk.createAppFactory(LoadedApk.java:260)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.app.LoadedApk.createOrUpdateClassLoaderLocked(LoadedApk.java:902)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.app.LoadedApk.getClassLoader(LoadedApk.java:982)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.app.LoadedApk.getResources(LoadedApk.java:1214)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.app.ContextImpl.createAppContext(ContextImpl.java:2663)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.app.ContextImpl.createAppContext(ContextImpl.java:2655)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6618)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.app.ActivityThread.access$1300(ActivityThread.java:238)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1914)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.os.Handler.dispatchMessage(Handler.java:106)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.os.Looper.loop(Looper.java:223)
04-28 15:24:19.684 3071 3071 E LoadedApk: at android.app.ActivityThread.main(ActivityThread.java:7711)
04-28 15:24:19.684 3071 3071 E LoadedApk: at java.lang.reflect.Method.invoke(Native Method)
04-28 15:24:19.684 3071 3071 E LoadedApk: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
04-28 15:24:19.684 3071 3071 E LoadedApk: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:952)
04-28 15:24:21.601 1348 1687 I chatty : uid=1000(system) Binder:1348_16 expire 16 lines
04-28 15:24:22.226 1348 1415 I chatty : uid=1000(system) android.display expire 9 lines
04-28 15:24:23.643 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 16 lines
04-28 15:24:25.031 1348 1348 I chatty : uid=1000 system_server expire 1 line
04-28 15:24:29.697 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 15:24:30.934 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 15 lines
04-28 15:24:30.976 1348 1432 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:24:31.683 3184 3184 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
04-28 15:24:31.687 3184 3184 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
04-28 15:24:31.691 3184 3184 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
04-28 15:24:31.694 3184 3184 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
04-28 15:24:31.697 3184 3184 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
04-28 15:24:31.701 3184 3184 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
04-28 15:24:31.997 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 3 lines
04-28 15:24:32.105 3184 3184 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
04-28 15:24:32.479 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 9 lines
04-28 15:24:32.584 3184 3219 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
04-28 15:24:34.694 3184 3184 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.dialpadview.DialpadFragment.bindPTTHelperService:224 com.android.dialer.dialpadview.DialpadFragment.onCreate:520 android.app.Fragment.performCreate:2486
04-28 15:24:34.866 3184 3184 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.dialpadview.DialpadFragment.bindPTTHelperService:224 com.android.dialer.dialpadview.DialpadFragment.onStart:950 android.app.Fragment.performStart:2531
04-28 15:24:43.425 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 15:24:43.861 1348 1415 I chatty : uid=1000(system) android.display expire 4 lines
04-28 15:24:45.152 1348 1514 I chatty : uid=1000(system) UEventObserver expire 22 lines
04-28 15:24:45.369 1348 2110 I chatty : uid=1000(system) Binder:1348_1D expire 16 lines
04-28 15:24:45.467 1348 1415 I chatty : uid=1000(system) android.display expire 14 lines
04-28 15:24:45.877 1348 1431 I chatty : uid=1000(system) ActivityManager expire 3 lines
04-28 15:24:46.259 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 4 lines
04-28 15:24:47.105 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
04-28 15:24:47.124 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 4 lines
04-28 15:24:47.157 1348 1412 I chatty : uid=1000(system) android.fg expire 1 line
04-28 15:24:47.311 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 15:24:47.316 1348 2379 I chatty : uid=1000(system) Binder:1348_B expire 4 lines
04-28 15:24:47.346 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 15:24:47.348 1348 1431 I chatty : uid=1000(system) ActivityManager expire 15 lines
04-28 15:24:52.149 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 4 lines
04-28 15:25:43.852 1348 1516 I chatty : uid=1000(system) InputReader expire 1 line
04-28 15:25:43.900 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 16 lines
04-28 15:25:44.034 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 5 lines
04-28 15:25:44.405 1348 1412 I chatty : uid=1000(system) android.fg expire 3 lines
04-28 15:25:44.528 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 1 line
04-28 15:25:51.992 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 4 lines
04-28 15:25:52.034 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 4 lines
04-28 15:25:52.084 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 8 lines
04-28 15:25:52.085 1348 1412 I chatty : uid=1000(system) android.fg expire 4 lines
04-28 15:25:52.198 1348 1415 I chatty : uid=1000(system) android.display expire 5 lines
04-28 15:25:56.978 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 2 lines
04-28 15:27:57.947 1348 1514 I chatty : uid=1000(system) UEventObserver expire 11 lines
04-28 15:27:57.955 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 15 lines
04-28 15:27:58.094 1348 1413 I chatty : uid=1000(system) android.ui expire 1 line
04-28 15:27:58.122 1348 1431 I chatty : uid=1000(system) ActivityManager expire 8 lines
04-28 15:27:58.205 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 15:27:58.255 1348 2110 I chatty : uid=1000(system) Binder:1348_1D expire 5 lines
04-28 15:28:01.024 1348 1413 I chatty : uid=1000(system) android.ui expire 10 lines
04-28 15:28:02.110 1348 1412 I chatty : uid=1000(system) android.fg expire 2 lines
04-28 15:28:02.355 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 1 line
04-28 15:28:02.388 1348 2049 I chatty : uid=1000(system) Binder:1348_1C expire 2 lines
04-28 15:28:02.389 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
04-28 15:28:02.541 1348 1431 I chatty : uid=1000(system) ActivityManager expire 5 lines
04-28 15:28:03.590 1348 1348 I chatty : uid=1000 system_server expire 5 lines
04-28 15:28:05.982 1348 2590 I chatty : uid=1000(system) Binder:1348_17 expire 36 lines
04-28 15:28:06.040 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 12 lines
04-28 15:28:06.097 1348 2590 I chatty : uid=1000(system) Binder:1348_17 expire 4 lines
04-28 15:28:06.121 1348 1372 I chatty : uid=1000(system) Binder:1348_1 expire 4 lines
04-28 15:28:06.535 1348 1415 I chatty : uid=1000(system) android.display expire 8 lines
04-28 15:28:06.553 1348 2049 I chatty : uid=1000(system) Binder:1348_1C expire 4 lines
04-28 15:28:11.607 1348 1431 I chatty : uid=1000(system) ActivityManager expire 12 lines
04-28 15:28:33.727 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 15:28:34.208 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 5 lines
04-28 15:28:35.224 1348 1514 I chatty : uid=1000(system) UEventObserver expire 22 lines
04-28 15:28:35.328 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 12 lines
04-28 15:28:35.381 1348 1415 I chatty : uid=1000(system) android.display expire 18 lines
04-28 15:28:35.791 1348 1431 I chatty : uid=1000(system) ActivityManager expire 5 lines
04-28 15:28:36.239 1348 2590 I chatty : uid=1000(system) Binder:1348_17 expire 4 lines
04-28 15:28:37.088 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
04-28 15:28:37.106 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 7 lines
04-28 15:28:37.139 1348 1412 I chatty : uid=1000(system) android.fg expire 3 lines
04-28 15:28:37.148 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 4 lines
04-28 15:28:37.275 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 15:28:37.279 1348 2049 I chatty : uid=1000(system) Binder:1348_1C expire 5 lines
04-28 15:30:59.055 1348 1348 I chatty : uid=1000 system_server expire 7 lines
04-28 15:30:59.078 1348 1431 I chatty : uid=1000(system) ActivityManager expire 9 lines
04-28 15:30:59.122 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
04-28 15:30:59.126 1348 1415 I chatty : uid=1000(system) android.display expire 3 lines
04-28 15:30:59.133 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 15:30:59.364 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 9 lines
04-28 15:31:02.364 1348 1514 I chatty : uid=1000(system) UEventObserver expire 4 lines
04-28 15:31:02.380 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 16 lines
04-28 15:31:36.384 1348 1418 I chatty : uid=1000(system) watchdog expire 6 lines
04-28 15:31:38.246 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 15:31:38.329 1348 1430 I chatty : uid=1000(system) android.bg expire 2 lines
04-28 15:31:38.343 1348 1413 I chatty : uid=1000(system) android.ui expire 1 line
04-28 15:31:38.423 1348 1348 I chatty : uid=1000 system_server expire 4 lines
04-28 15:31:38.543 1348 1418 I chatty : uid=1000(system) watchdog expire 8 lines
04-28 15:31:42.113 1348 1514 I chatty : uid=1000(system) UEventObserver expire 17 lines
04-28 15:31:42.151 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 29 lines
04-28 15:31:42.238 1348 1514 I chatty : uid=1000(system) UEventObserver expire 1 line
04-28 15:31:42.374 1348 1418 I chatty : uid=1000(system) watchdog expire 1 line
04-28 15:31:42.428 1348 1158 I chatty : uid=1000(system) Binder:1348_1B expire 23 lines
04-28 15:31:42.592 1348 2620 I chatty : uid=1000(system) Binder:1348_1E expire 17 lines
04-28 15:31:43.087 1348 1418 I chatty : uid=1000(system) watchdog expire 14 lines
04-28 15:31:43.218 396 396 F libc : crash_dump helper failed to exec
04-28 15:31:46.537 1348 1412 I chatty : uid=1000(system) android.fg expire 6 lines
04-28 15:31:46.543 1348 1416 I chatty : uid=1000(system) android.anim expire 4 lines
04-28 15:31:46.564 1348 1415 I chatty : uid=1000(system) android.display expire 1 line
04-28 15:31:50.118 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
04-28 15:31:50.144 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 15:31:59.418 1348 1516 I chatty : uid=1000(system) InputReader expire 1 line
04-28 15:32:23.647 1348 1514 I chatty : uid=1000(system) UEventObserver expire 1 line
04-28 15:32:23.673 1348 1515 I chatty : uid=1000(system) InputDispatcher expire 19 lines
04-28 15:32:24.047 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 5 lines
04-28 15:32:24.065 1348 1413 I chatty : uid=1000(system) android.ui expire 2 lines
04-28 15:32:24.071 1348 1412 I chatty : uid=1000(system) android.fg expire 1 line
04-28 15:32:24.114 1348 1514 I chatty : uid=1000(system) UEventObserver expire 4 lines
04-28 15:32:24.130 1348 1416 I chatty : uid=1000(system) android.anim expire 2 lines
04-28 15:32:24.131 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 13 lines
04-28 15:32:24.139 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 15:32:24.143 1348 1515 I chatty : uid=1000(system) InputDispatcher expire 7 lines
04-28 15:32:24.333 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 20 lines
04-28 15:32:24.399 1348 2620 I chatty : uid=1000(system) Binder:1348_1E expire 10 lines
04-28 15:32:24.458 1348 1348 I chatty : uid=1000 system_server expire 3 lines
04-28 15:32:24.465 1348 1412 I chatty : uid=1000(system) android.fg expire 3 lines
04-28 15:32:24.465 1348 1430 I chatty : uid=1000(system) android.bg expire 3 lines
04-28 15:32:24.469 1348 2049 I chatty : uid=1000(system) Binder:1348_1C expire 2 lines
04-28 15:32:24.502 1348 1413 I chatty : uid=1000(system) android.ui expire 4 lines
04-28 15:32:24.530 1348 3710 I chatty : uid=1000 system_server expire 14 lines
04-28 15:32:24.615 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 1 line
04-28 15:32:24.630 1348 1431 I chatty : uid=1000(system) ActivityManager expire 9 lines
04-28 15:32:24.638 1348 1415 I chatty : uid=1000(system) android.display expire 3 lines
04-28 15:32:24.640 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 4 lines
04-28 15:32:24.696 1348 2110 I chatty : uid=1000(system) Binder:1348_1D expire 16 lines
04-28 15:32:25.439 1348 3710 I chatty : uid=1000 system_server expire 20 lines
04-28 15:32:26.217 1348 1415 I chatty : uid=1000(system) android.display expire 9 lines
04-28 15:32:26.950 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 1 line
04-28 15:32:26.979 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 4 lines
04-28 15:32:27.080 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 5 lines
04-28 15:32:27.085 1348 1431 I chatty : uid=1000(system) ActivityManager expire 1 line
04-28 15:32:29.982 1348 3580 I chatty : uid=1000(system) Binder:1348_1F expire 15 lines
04-28 15:32:30.517 1348 3710 I chatty : uid=1000 system_server expire 17 lines
04-28 15:32:30.604 1348 1431 I chatty : uid=1000(system) ActivityManager expire 6 lines
04-28 15:32:30.797 1348 1348 I chatty : uid=1000 system_server expire 5 lines
04-28 15:32:33.307 1348 2110 I chatty : uid=1000(system) Binder:1348_1D expire 4 lines
04-28 15:32:33.328 1348 1158 I chatty : uid=1000(system) Binder:1348_1B expire 16 lines
04-28 15:32:34.068 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 15:32:34.390 1348 3710 I chatty : uid=1000 system_server expire 13 lines
04-28 15:32:34.955 1348 2620 I chatty : uid=1000(system) Binder:1348_1E expire 15 lines
04-28 15:32:34.977 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 12 lines
04-28 15:32:38.624 1348 3950 I chatty : uid=1000 system_server expire 1 line
04-28 15:32:38.658 1348 1431 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:32:44.142 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 15:32:44.583 1348 1415 I chatty : uid=1000(system) android.display expire 8 lines
04-28 15:32:44.630 1348 2049 I chatty : uid=1000(system) Binder:1348_1C expire 15 lines
04-28 15:32:51.792 1348 2620 I chatty : uid=1000(system) Binder:1348_1E expire 9 lines
04-28 15:32:52.096 1348 1591 I chatty : uid=1000(system) Binder:1348_4 expire 5 lines
04-28 15:33:28.531 1348 1348 I chatty : uid=1000 system_server expire 5 lines
04-28 15:33:34.173 1348 1431 I chatty : uid=1000(system) ActivityManager expire 6 lines
04-28 15:33:36.115 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 6 lines
04-28 15:33:45.044 1348 1412 I chatty : uid=1000(system) android.fg expire 2 lines
04-28 15:33:45.330 1348 3580 I chatty : uid=1000(system) Binder:1348_1F expire 1 line
04-28 15:33:46.458 1348 1348 I chatty : uid=1000 system_server expire 7 lines
04-28 15:33:46.487 1348 1431 I chatty : uid=1000(system) ActivityManager expire 5 lines
04-28 15:33:48.392 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
04-28 15:33:48.562 1348 1158 I chatty : uid=1000(system) Binder:1348_1B expire 11 lines
04-28 15:33:48.609 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 34 lines
04-28 15:33:49.399 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 4 lines
04-28 15:34:00.890 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 50 lines
04-28 15:34:00.974 1348 1158 I chatty : uid=1000(system) Binder:1348_1B expire 4 lines
04-28 15:34:01.434 1348 1431 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:34:01.501 1348 1415 I chatty : uid=1000(system) android.display expire 8 lines
04-28 15:34:01.558 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 4 lines
04-28 15:34:02.068 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 9 lines
04-28 15:34:02.647 1348 1415 I chatty : uid=1000(system) android.display expire 4 lines
04-28 15:34:02.769 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 4 lines
04-28 15:34:03.451 1348 1431 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:34:04.450 1348 1348 I chatty : uid=1000 system_server expire 1 line
04-28 15:34:18.411 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 1 line
04-28 15:34:18.448 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
04-28 15:34:19.484 1348 1514 I chatty : uid=1000(system) UEventObserver expire 22 lines
04-28 15:34:19.604 1348 1158 I chatty : uid=1000(system) Binder:1348_1B expire 12 lines
04-28 15:34:19.620 1348 1430 I chatty : uid=1000(system) android.bg expire 4 lines
04-28 15:34:19.710 1348 1415 I chatty : uid=1000(system) android.display expire 18 lines
04-28 15:34:19.744 1348 1431 I chatty : uid=1000(system) ActivityManager expire 10 lines
04-28 15:34:19.881 1348 1348 I chatty : uid=1000 system_server expire 6 lines
04-28 15:34:20.509 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 4 lines
04-28 15:34:21.356 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
04-28 15:34:21.374 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 3 lines
04-28 15:34:21.401 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 4 lines
04-28 15:34:21.412 1348 1412 I chatty : uid=1000(system) android.fg expire 3 lines
04-28 15:34:21.456 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 5 lines
04-28 15:34:21.547 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 15:34:48.142 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 18 lines
04-28 15:34:48.147 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 15:34:48.156 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 3 lines
04-28 15:34:48.164 1348 1431 I chatty : uid=1000(system) ActivityManager expire 10 lines
04-28 15:34:48.317 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 1 line
04-28 15:34:48.372 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 6 lines
04-28 15:34:48.630 1348 1412 I chatty : uid=1000(system) android.fg expire 4 lines
04-28 15:34:56.185 1348 1158 I chatty : uid=1000(system) Binder:1348_1B expire 8 lines
04-28 15:37:54.614 1348 1412 I chatty : uid=1000(system) android.fg expire 5 lines
04-28 15:37:54.752 1348 1431 I chatty : uid=1000(system) ActivityManager expire 11 lines
04-28 15:37:54.955 1348 1348 I chatty : uid=1000 system_server expire 5 lines
04-28 15:37:54.989 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 1 line
04-28 15:37:55.006 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 17 lines
04-28 15:37:55.012 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 2 lines
04-28 15:37:55.028 1348 1415 I chatty : uid=1000(system) android.display expire 8 lines
04-28 15:37:55.251 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 5 lines
04-28 15:37:55.573 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 1 line
04-28 15:38:03.027 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 8 lines
04-28 15:38:03.132 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 7 lines
04-28 15:38:03.133 1348 1412 I chatty : uid=1000(system) android.fg expire 4 lines
04-28 15:38:03.258 1348 1415 I chatty : uid=1000(system) android.display expire 8 lines
04-28 15:38:06.000 1348 1516 I chatty : uid=1000(system) InputReader expire 1 line
04-28 15:38:06.041 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 15:38:06.064 1348 1431 I chatty : uid=1000(system) ActivityManager expire 11 lines
04-28 15:38:06.088 1348 1158 I chatty : uid=1000(system) Binder:1348_1B expire 5 lines
04-28 15:38:06.322 1348 1348 I chatty : uid=1000 system_server expire 6 lines
04-28 15:38:06.664 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 1 line
04-28 15:38:09.214 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
04-28 15:38:14.228 1348 1514 I chatty : uid=1000(system) UEventObserver expire 9 lines
04-28 15:38:15.307 1348 1507 I chatty : uid=1000(system) AlarmManager expire 1 line
04-28 15:38:15.324 1348 1687 I chatty : uid=1000(system) Binder:1348_16 expire 4 lines
04-28 15:38:15.329 1348 1413 I chatty : uid=1000(system) android.ui expire 1 line
04-28 15:38:15.443 1348 1348 I chatty : uid=1000 system_server expire 6 lines
04-28 15:38:15.443 1348 1432 I chatty : uid=1000(system) ActivityManager expire 3 lines
04-28 15:38:15.476 1348 1687 I chatty : uid=1000(system) Binder:1348_16 expire 12 lines
04-28 15:38:15.598 1348 1415 I chatty : uid=1000(system) android.display expire 9 lines
04-28 15:38:15.640 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 15:38:15.683 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 8 lines
04-28 15:38:15.696 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 20 lines
04-28 15:38:19.385 1348 1431 I chatty : uid=1000(system) ActivityManager expire 9 lines
04-28 15:38:25.131 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 15:38:25.199 1348 1687 I chatty : uid=1000(system) Binder:1348_16 expire 24 lines
04-28 15:38:25.492 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 23 lines
04-28 15:38:33.172 1348 1348 I chatty : uid=1000 system_server expire 2 lines
04-28 15:38:59.448 1348 1415 I chatty : uid=1000(system) android.display expire 6 lines
04-28 15:38:59.504 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 4 lines
04-28 15:39:01.157 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 15:39:01.643 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 4 lines
04-28 15:39:17.137 1348 1431 I chatty : uid=1000(system) ActivityManager expire 12 lines
04-28 15:39:26.293 589 589 W [email protected]: No active wlan interfaces in use! Using default
04-28 15:39:26.625 901 901 I wificond: Unsubscribe scan result for interface with index: 26
04-28 15:39:26.751 589 589 E [email protected]: Failed to open directory: Permission denied
04-28 15:39:26.751 589 589 E [email protected]: Error occurred while deleting old tombstone files
04-28 15:39:26.751 589 589 E [email protected]: Error writing files to flash
04-28 15:39:26.753 589 589 E [email protected]: Stopping legacy HAL
04-28 15:39:26.753 589 589 E [email protected]: Legacy HAL trigger wifi cleanup
04-28 15:39:26.754 589 1604 I [email protected]: Legacy HAL stop complete callback received
04-28 15:39:26.754 589 1604 E [email protected]: SetWifiUpState(false) completed
04-28 15:39:26.754 589 1604 E [email protected]: Legacy HAL Wifi event loop exited
04-28 15:39:26.755 589 1604 E [email protected]: Legacy HAL event loop terminated
04-28 15:39:27.011 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 12 lines
04-28 15:39:27.027 1348 2071 I chatty : uid=1000 system_server expire 1 line
04-28 15:39:27.059 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'INTERFACE' not found
04-28 15:39:27.060 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'STATE' not found
04-28 15:39:27.060 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'TIME_NS' not found
04-28 15:39:27.060 487 540 E NetlinkEvent: NetlinkEvent::FindParam(): Parameter 'UID' not found
04-28 15:39:27.206 1348 1725 I chatty : uid=1000(system) NetworkTimeUpda expire 1 line
04-28 15:39:27.214 1348 1412 I chatty : uid=1000(system) android.fg expire 1 line
04-28 15:39:27.812 589 589 I [email protected]: Wifi HAL stopped
04-28 15:39:28.531 1348 1431 I chatty : uid=1000(system) ActivityManager expire 4 lines
04-28 15:39:35.394 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 21 lines
04-28 15:39:35.434 1348 1415 I chatty : uid=1000(system) android.display expire 1 line
04-28 15:39:35.460 1348 1432 I chatty : uid=1000(system) ActivityManager expire 1 line
04-28 15:39:36.083 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 2 lines
04-28 15:39:36.666 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 8 lines
04-28 15:39:39.024 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 34 lines
04-28 15:39:39.099 1098 1152 E ActivityThread: Failed to find provider info for com.qti.smq.Feedback.provider
04-28 15:39:39.239 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 18 lines
04-28 15:39:39.772 1348 1415 I chatty : uid=1000(system) android.display expire 9 lines
04-28 15:39:42.897 1348 1432 I chatty : uid=1000(system) ActivityManager expire 4 lines
04-28 15:39:44.763 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 4 lines
04-28 15:39:51.482 1348 1514 I chatty : uid=1000(system) UEventObserver expire 23 lines
04-28 15:39:51.509 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
04-28 15:39:51.530 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 15:39:51.655 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 16 lines
04-28 15:39:51.711 1348 1348 I chatty : uid=1000 system_server expire 3 lines
04-28 15:39:51.731 1348 1415 I chatty : uid=1000(system) android.display expire 9 lines
04-28 15:39:51.768 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 15:39:51.863 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 4 lines
04-28 15:39:51.901 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 4 lines
04-28 15:39:51.906 1348 1415 I chatty : uid=1000(system) android.display expire 9 lines
04-28 15:39:52.164 1348 1431 I chatty : uid=1000(system) ActivityManager expire 17 lines
04-28 15:39:52.372 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
04-28 15:39:52.376 1348 1412 I chatty : uid=1000(system) android.fg expire 5 lines
04-28 15:39:52.390 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 4 lines
04-28 15:39:52.502 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 15:39:56.648 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 3 lines
04-28 15:50:14.860 1348 1348 I chatty : uid=1000 system_server expire 11 lines
04-28 15:50:14.894 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 1 line
04-28 15:50:15.284 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 1 line
04-28 15:50:15.300 1348 1687 I chatty : uid=1000(system) Binder:1348_16 expire 5 lines
04-28 15:50:15.381 1348 1415 I chatty : uid=1000(system) android.display expire 16 lines
04-28 15:50:15.887 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 1 line
04-28 15:50:15.920 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 1 line
04-28 15:50:15.921 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
04-28 15:50:16.895 1348 1431 I chatty : uid=1000(system) ActivityManager expire 6 lines
04-28 15:50:17.027 1348 1158 I chatty : uid=1000(system) Binder:1348_1B expire 1 line
04-28 15:50:17.806 1348 1348 I chatty : uid=1000 system_server expire 5 lines
04-28 15:50:22.899 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 20 lines
04-28 15:50:22.939 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 4 lines
04-28 15:50:28.197 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 1 line
04-28 15:50:29.233 1348 1413 I chatty : uid=1000(system) android.ui expire 1 line
04-28 15:50:29.235 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 15:50:32.435 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 3 lines
04-28 15:50:36.252 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 17 lines
04-28 15:50:36.513 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 4 lines
04-28 15:50:36.521 1348 1415 I chatty : uid=1000(system) android.display expire 14 lines
04-28 15:50:41.260 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 4 lines
04-28 15:50:48.596 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 1 line
04-28 15:50:54.347 1348 1431 I chatty : uid=1000(system) ActivityManager expire 12 lines
04-28 15:50:57.273 1348 1412 I chatty : uid=1000(system) android.fg expire 5 lines
04-28 15:51:14.836 1348 1432 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:51:15.013 1348 1348 I chatty : uid=1000 system_server expire 10 lines
04-28 15:51:15.325 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 1 line
04-28 15:51:15.509 1348 1415 I chatty : uid=1000(system) android.display expire 10 lines
04-28 15:51:15.512 1348 1431 I chatty : uid=1000(system) ActivityManager expire 11 lines
04-28 15:51:16.136 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 1 line
04-28 15:51:16.137 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 5 lines
04-28 15:51:16.453 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 1 line
04-28 15:51:21.076 1348 1514 I chatty : uid=1000(system) UEventObserver expire 6 lines
04-28 15:51:21.085 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 4 lines
04-28 15:51:21.171 1348 1687 I chatty : uid=1000(system) Binder:1348_16 expire 17 lines
04-28 15:51:36.392 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 1 line
04-28 15:51:41.437 1348 1412 I chatty : uid=1000(system) android.fg expire 2 lines
04-28 15:51:41.965 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 1 line
04-28 15:51:43.101 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 1 line
04-28 15:51:43.830 1348 1348 I chatty : uid=1000 system_server expire 5 lines
04-28 15:51:54.087 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 15 lines
04-28 15:51:54.087 1348 1415 I chatty : uid=1000(system) android.display expire 11 lines
04-28 15:51:54.496 1348 1431 I chatty : uid=1000(system) ActivityManager expire 3 lines
04-28 15:52:21.116 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 2 lines
04-28 15:52:21.171 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 4 lines
04-28 15:52:21.216 1348 1687 I chatty : uid=1000(system) Binder:1348_16 expire 4 lines
04-28 15:52:21.412 1348 1412 I chatty : uid=1000(system) android.fg expire 1 line
04-28 15:52:58.397 1348 1514 I chatty : uid=1000(system) UEventObserver expire 31 lines
04-28 15:52:58.527 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 17 lines
04-28 15:52:58.533 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 2 lines
04-28 15:52:58.621 1348 1431 I chatty : uid=1000(system) ActivityManager expire 5 lines
04-28 15:52:58.664 1348 1415 I chatty : uid=1000(system) android.display expire 14 lines
04-28 15:52:58.676 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 4 lines
04-28 15:52:58.731 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 15:52:58.767 1348 911 I chatty : uid=1000(system) Binder:1348_13 expire 7 lines
04-28 15:52:59.131 1348 1412 I chatty : uid=1000(system) android.fg expire 4 lines
04-28 15:52:59.588 1348 1630 I chatty : uid=1000(system) Binder:1348_15 expire 4 lines
04-28 15:52:59.692 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 18 lines
04-28 15:52:59.984 1348 1415 I chatty : uid=1000(system) android.display expire 3 lines
04-28 15:52:59.986 1348 1431 I chatty : uid=1000(system) ActivityManager expire 10 lines
04-28 15:53:02.361 1348 1514 I chatty : uid=1000(system) UEventObserver expire 11 lines
04-28 15:53:02.378 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
04-28 15:53:02.384 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 15:53:02.519 1348 1348 I chatty : uid=1000 system_server expire 2 lines
04-28 15:53:02.593 1348 3432 I chatty : uid=1000(system) Binder:1348_19 expire 1 line
04-28 15:53:02.712 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 5 lines
04-28 15:53:03.164 1348 1412 I chatty : uid=1000(system) android.fg expire 3 lines
04-28 15:53:03.307 1348 3335 I chatty : uid=1000(system) Binder:1348_F expire 1 line
04-28 15:53:05.651 1348 1413 I chatty : uid=1000(system) android.ui expire 17 lines
04-28 15:53:06.065 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 15:53:06.126 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 15 lines
04-28 15:53:06.890 1348 1630 I chatty : uid=1000(system) Binder:1348_15 expire 19 lines
04-28 15:53:07.202 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 4 lines
04-28 15:53:07.349 1348 1431 I chatty : uid=1000(system) ActivityManager expire 6 lines
04-28 15:53:08.042 1348 3580 I chatty : uid=1000(system) Binder:1348_1F expire 12 lines
04-28 15:53:08.680 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 12 lines
04-28 15:53:15.922 1348 1431 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 15:53:17.462 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 23 lines
04-28 15:53:49.808 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 18 lines
04-28 15:53:55.735 1348 1950 I chatty : uid=1000(system) Binder:1348_7 expire 11 lines
04-28 15:53:55.774 1348 3580 I chatty : uid=1000(system) Binder:1348_1F expire 12 lines
04-28 15:54:03.519 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 15:54:03.942 1348 1415 I chatty : uid=1000(system) android.display expire 10 lines
04-28 15:54:04.002 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 8 lines
04-28 15:54:06.084 1348 1515 I chatty : uid=1000(system) InputDispatcher expire 6 lines
04-28 15:54:09.327 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 21 lines
04-28 15:54:09.390 1348 3580 I chatty : uid=1000(system) Binder:1348_1F expire 14 lines
04-28 15:54:09.592 1348 1431 I chatty : uid=1000(system) ActivityManager expire 6 lines
04-28 15:54:09.595 1348 3580 I chatty : uid=1000(system) Binder:1348_1F expire 27 lines
04-28 15:54:09.624 1348 1415 I chatty : uid=1000(system) android.display expire 3 lines
04-28 15:54:09.685 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 15:54:09.724 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 8 lines
04-28 15:54:10.061 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 13 lines
04-28 15:54:50.042 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 11 lines
04-28 15:54:50.094 1348 1432 I chatty : uid=1000(system) ActivityManager expire 1 line
04-28 15:54:50.163 1348 2590 I chatty : uid=1000(system) Binder:1348_17 expire 5 lines
04-28 15:54:53.883 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 49 lines
04-28 15:54:54.140 3184 3184 E ActivityThread: Activity com.android.dialer.main.impl.MainActivity has leaked IntentReceiver com.android.dialer.main.impl.OldMainActivityPeer$2@120654c that was originally registered here. Are you missing a call to unregisterReceiver()?
04-28 15:54:54.140 3184 3184 E ActivityThread: android.app.IntentReceiverLeaked: Activity com.android.dialer.main.impl.MainActivity has leaked IntentReceiver com.android.dialer.main.impl.OldMainActivityPeer$2@120654c that was originally registered here. Are you missing a call to unregisterReceiver()?
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.LoadedApk$ReceiverDispatcher.<init>(LoadedApk.java:1618)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.LoadedApk.getReceiverDispatcher(LoadedApk.java:1398)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.ContextImpl.registerReceiverInternal(ContextImpl.java:1614)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.ContextImpl.registerReceiver(ContextImpl.java:1580)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.ContextImpl.registerReceiver(ContextImpl.java:1568)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.content.ContextWrapper.registerReceiver(ContextWrapper.java:668)
04-28 15:54:54.140 3184 3184 E ActivityThread: at com.android.dialer.main.impl.OldMainActivityPeer.<init>(OldMainActivityPeer.java:262)
04-28 15:54:54.140 3184 3184 E ActivityThread: at com.android.dialer.main.impl.MainActivity.getNewPeer(MainActivity.java:566)
04-28 15:54:54.140 3184 3184 E ActivityThread: at com.android.dialer.main.impl.MainActivity.onCreate(MainActivity.java:259)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.Activity.performCreate(Activity.java:8161)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.Activity.performCreate(Activity.java:8145)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1310)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3405)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3596)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:85)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2067)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.os.Handler.dispatchMessage(Handler.java:106)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.os.Looper.loop(Looper.java:223)
04-28 15:54:54.140 3184 3184 E ActivityThread: at android.app.ActivityThread.main(ActivityThread.java:7711)
04-28 15:54:54.140 3184 3184 E ActivityThread: at java.lang.reflect.Method.invoke(Native Method)
04-28 15:54:54.140 3184 3184 E ActivityThread: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:592)
04-28 15:54:54.140 3184 3184 E ActivityThread: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:952)
04-28 15:54:54.249 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 8 lines
04-28 15:54:55.699 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 15:54:55.774 1348 3580 I chatty : uid=1000(system) Binder:1348_1F expire 4 lines
04-28 15:54:55.780 1348 2590 I chatty : uid=1000(system) Binder:1348_17 expire 12 lines
04-28 15:54:56.777 1348 1431 I chatty : uid=1000(system) ActivityManager expire 20 lines
04-28 15:54:59.430 1348 1348 I chatty : uid=1000 system_server expire 1 line
04-28 15:55:12.224 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 10 lines
04-28 15:55:12.266 1348 1630 I chatty : uid=1000(system) Binder:1348_15 expire 1 line
04-28 15:55:12.267 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
04-28 15:55:22.780 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 15:56:11.886 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 4 lines
04-28 15:56:11.905 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 18 lines
04-28 15:56:11.979 1348 1158 I chatty : uid=1000(system) Binder:1348_1B expire 12 lines
04-28 15:56:13.058 1348 2620 I chatty : uid=1000(system) Binder:1348_1E expire 11 lines
04-28 15:56:13.098 1348 3580 I chatty : uid=1000(system) Binder:1348_1F expire 12 lines
04-28 15:57:07.146 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 17 lines
04-28 15:57:14.177 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 2 lines
04-28 15:57:14.206 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 15:57:14.297 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 4 lines
04-28 15:57:14.468 1348 1412 I chatty : uid=1000(system) android.fg expire 1 line
04-28 15:57:14.552 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 15:59:35.394 1348 1516 I chatty : uid=1000(system) InputReader expire 1 line
04-28 15:59:35.439 1348 1415 I chatty : uid=1000(system) android.display expire 7 lines
04-28 15:59:35.446 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 2 lines
04-28 15:59:35.510 1348 1431 I chatty : uid=1000(system) ActivityManager expire 4 lines
04-28 15:59:35.560 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 29 lines
04-28 15:59:35.708 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 1 line
04-28 15:59:36.185 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
04-28 15:59:36.188 1348 1412 I chatty : uid=1000(system) android.fg expire 3 lines
04-28 15:59:36.213 1348 3335 I chatty : uid=1000(system) Binder:1348_F expire 45 lines
04-28 15:59:40.950 1348 1415 I chatty : uid=1000(system) android.display expire 14 lines
04-28 15:59:40.992 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 5 lines
04-28 15:59:41.774 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 4 lines
04-28 15:59:42.070 1348 1431 I chatty : uid=1000(system) ActivityManager expire 1 line
04-28 15:59:42.263 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 15 lines
04-28 15:59:43.772 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 4 lines
04-28 15:59:45.003 1348 1431 I chatty : uid=1000(system) ActivityManager expire 6 lines
04-28 15:59:45.490 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 15:59:45.891 1348 1415 I chatty : uid=1000(system) android.display expire 4 lines
04-28 15:59:45.938 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 43 lines
04-28 15:59:47.418 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 12 lines
04-28 15:59:47.555 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 3 lines
04-28 15:59:47.944 1348 1415 I chatty : uid=1000(system) android.display expire 8 lines
04-28 15:59:48.813 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 24 lines
04-28 15:59:48.884 1098 1152 E ActivityThread: Failed to find provider info for com.qti.smq.Feedback.provider
04-28 15:59:49.555 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 15 lines
04-28 15:59:51.795 1348 3335 I chatty : uid=1000(system) Binder:1348_F expire 19 lines
04-28 15:59:51.827 1098 2909 E ActivityThread: Failed to find provider info for com.qti.smq.Feedback.provider
04-28 15:59:52.310 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 3 lines
04-28 15:59:52.383 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 6 lines
04-28 15:59:52.897 1348 1415 I chatty : uid=1000(system) android.display expire 8 lines
04-28 15:59:57.526 1348 1412 I chatty : uid=1000(system) android.fg expire 4 lines
04-28 15:59:59.581 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 16:00:00.047 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 2 lines
04-28 16:00:12.116 1348 1414 I chatty : uid=1000(system) android.io expire 1 line
04-28 16:00:12.126 1348 1431 I chatty : uid=1000(system) ActivityManager expire 21 lines
04-28 16:00:12.138 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 16:00:12.562 1348 1348 I chatty : uid=1000 system_server expire 6 lines
04-28 16:00:12.607 1348 1432 I chatty : uid=1000(system) ActivityManager expire 6 lines
04-28 16:00:12.761 1348 1412 I chatty : uid=1000(system) android.fg expire 1 line
04-28 16:00:14.349 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 1 line
04-28 16:00:15.096 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 1 line
04-28 16:00:36.404 1348 1630 I chatty : uid=1000(system) Binder:1348_15 expire 49 lines
04-28 16:00:36.479 1098 2909 E ActivityThread: Failed to find provider info for com.qti.smq.Feedback.provider
04-28 16:00:36.494 1348 1415 I chatty : uid=1000(system) android.display expire 1 line
04-28 16:00:38.722 1348 1412 I chatty : uid=1000(system) android.fg expire 19 lines
04-28 16:00:38.774 1348 2942 I chatty : uid=1000(system) AdbDebuggingMan expire 3 lines
04-28 16:00:39.402 1348 1348 I chatty : uid=1000 system_server expire 1 line
04-28 16:00:43.910 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 4 lines
04-28 16:00:43.929 1348 1630 I chatty : uid=1000(system) Binder:1348_15 expire 14 lines
04-28 16:00:43.974 1348 2590 I chatty : uid=1000(system) Binder:1348_17 expire 8 lines
04-28 16:00:46.810 1348 1431 I chatty : uid=1000(system) ActivityManager expire 9 lines
04-28 16:01:04.295 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 16:01:04.686 1348 1415 I chatty : uid=1000(system) android.display expire 4 lines
04-28 16:01:06.455 1348 1514 I chatty : uid=1000(system) UEventObserver expire 32 lines
04-28 16:01:06.584 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 16 lines
04-28 16:01:06.602 1348 2590 I chatty : uid=1000(system) Binder:1348_17 expire 4 lines
04-28 16:01:06.640 1348 1415 I chatty : uid=1000(system) android.display expire 9 lines
04-28 16:01:07.045 1348 1431 I chatty : uid=1000(system) ActivityManager expire 1 line
04-28 16:01:08.316 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 9 lines
04-28 16:01:08.327 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 5 lines
04-28 16:01:08.344 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 4 lines
04-28 16:01:08.345 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 3 lines
04-28 16:01:08.348 1348 1415 I chatty : uid=1000(system) android.display expire 9 lines
04-28 16:01:08.348 1348 1412 I chatty : uid=1000(system) android.fg expire 1 line
04-28 16:01:08.466 1348 1431 I chatty : uid=1000(system) ActivityManager expire 18 lines
04-28 16:01:08.495 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 16:01:08.498 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 4 lines
04-28 16:01:30.836 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 6 lines
04-28 16:02:38.307 1348 2904 I chatty : uid=1000(system) NetworkMonitor/ expire 1 line
04-28 16:02:51.687 1348 1430 I chatty : uid=1000(system) android.bg expire 1 line
04-28 16:03:33.641 1348 1348 I chatty : uid=1000 system_server expire 3 lines
04-28 16:05:58.345 1348 1432 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 16:05:58.620 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 1 line
04-28 16:12:37.999 1348 1514 I chatty : uid=1000(system) UEventObserver expire 3 lines
04-28 16:12:38.007 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 15 lines
04-28 16:12:38.009 1348 1514 I chatty : uid=1000(system) UEventObserver expire 17 lines
04-28 16:12:38.019 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 16:12:38.101 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 5 lines
04-28 16:12:38.143 1348 1348 I chatty : uid=1000 system_server expire 1 line
04-28 16:12:38.162 1348 1431 I chatty : uid=1000(system) ActivityManager expire 11 lines
04-28 16:12:38.171 1348 1415 I chatty : uid=1000(system) android.display expire 1 line
04-28 16:12:38.185 1348 2410 I chatty : uid=1000(system) backup-0 expire 5 lines
04-28 16:12:38.257 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 16:12:38.301 1348 3335 I chatty : uid=1000(system) Binder:1348_F expire 5 lines
04-28 16:12:38.450 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 1 line
04-28 16:12:38.756 1348 1412 I chatty : uid=1000(system) android.fg expire 4 lines
04-28 16:12:44.152 1348 1514 I chatty : uid=1000(system) UEventObserver expire 13 lines
04-28 16:12:44.254 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 16 lines
04-28 16:12:44.297 1348 1415 I chatty : uid=1000(system) android.display expire 14 lines
04-28 16:12:45.510 1348 1431 I chatty : uid=1000(system) ActivityManager expire 2 lines
04-28 16:12:45.986 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
04-28 16:12:45.996 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 16:12:46.016 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 4 lines
04-28 16:12:46.144 1348 1416 I chatty : uid=1000(system) android.anim expire 1 line
04-28 16:12:46.147 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 4 lines
04-28 16:12:46.175 1348 1415 I chatty : uid=1000(system) android.display expire 7 lines
04-28 16:19:00.020 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 3 lines
04-28 16:22:46.093 1348 1431 I chatty : uid=1000(system) ActivityManager expire 13 lines
04-28 16:22:51.841 1348 1430 I chatty : uid=1000(system) android.bg expire 1 line
04-28 16:29:34.876 1348 1412 I chatty : uid=1000(system) android.fg expire 5 lines
04-28 16:29:35.068 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 1 line
04-28 16:29:35.099 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 2 lines
04-28 16:29:35.099 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 3 lines
04-28 16:29:35.545 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 10 lines
04-28 16:29:36.217 1348 1348 I chatty : uid=1000 system_server expire 6 lines
04-28 16:29:36.265 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
04-28 16:29:36.437 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 1 line
04-28 16:29:36.869 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 1 line
04-28 16:29:42.309 1348 1514 I chatty : uid=1000(system) UEventObserver expire 6 lines
04-28 16:29:42.424 1348 3927 I chatty : uid=1000(system) Binder:1348_12 expire 12 lines
04-28 16:29:42.463 1348 1415 I chatty : uid=1000(system) android.display expire 16 lines
04-28 16:29:42.874 1348 1431 I chatty : uid=1000(system) ActivityManager expire 6 lines
04-28 16:29:43.376 1348 3580 I chatty : uid=1000(system) Binder:1348_1F expire 15 lines
04-28 16:29:45.732 1348 2620 I chatty : uid=1000(system) Binder:1348_1E expire 8 lines
04-28 16:29:46.078 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 4 lines
04-28 16:29:46.323 1348 1348 I chatty : uid=1000 system_server expire 5 lines
04-28 16:29:48.352 1348 1431 I chatty : uid=1000(system) ActivityManager expire 7 lines
04-28 16:29:48.966 1348 3580 I chatty : uid=1000(system) Binder:1348_1F expire 16 lines
04-28 16:29:49.541 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 16:29:49.580 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 16 lines
04-28 16:29:51.928 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 11 lines
04-28 16:29:52.561 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 23 lines
04-28 16:29:55.599 1348 1431 I chatty : uid=1000(system) ActivityManager expire 7 lines
04-28 16:30:16.087 1348 2471 I chatty : uid=1000(system) Binder:1348_D expire 16 lines
04-28 16:30:16.117 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 4 lines
04-28 16:30:16.648 1348 1415 I chatty : uid=1000(system) android.display expire 8 lines
04-28 16:30:16.688 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 19 lines
04-28 16:30:17.153 1348 3858 I chatty : uid=1000(system) Binder:1348_10 expire 12 lines
04-28 16:30:17.708 1348 1415 I chatty : uid=1000(system) android.display expire 12 lines
04-28 16:30:17.811 1348 1431 I chatty : uid=1000(system) ActivityManager expire 3 lines
04-28 16:30:23.356 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 16 lines
04-28 16:30:23.974 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 4 lines
04-28 16:30:24.772 1348 1516 I chatty : uid=1000(system) InputReader expire 17 lines
04-28 16:30:25.192 1348 1415 I chatty : uid=1000(system) android.display expire 7 lines
04-28 16:30:25.255 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 4 lines
04-28 16:30:27.347 1348 1514 I chatty : uid=1000(system) UEventObserver expire 19 lines
04-28 16:30:27.377 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 25 lines
04-28 16:30:27.513 1348 1415 I chatty : uid=1000(system) android.display expire 17 lines
04-28 16:30:27.762 1348 1416 I chatty : uid=1000(system) android.anim expire 2 lines
04-28 16:30:28.032 1348 1431 I chatty : uid=1000(system) ActivityManager expire 5 lines
04-28 16:30:29.266 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
04-28 16:30:29.280 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 16:30:29.295 1348 3926 I chatty : uid=1000(system) Binder:1348_11 expire 4 lines
04-28 16:30:29.310 1348 1412 I chatty : uid=1000(system) android.fg expire 3 lines
04-28 16:31:03.360 1348 3335 I chatty : uid=1000(system) Binder:1348_F expire 2 lines
04-28 16:31:03.395 1348 994 I chatty : uid=1000(system) Binder:1348_14 expire 1 line
04-28 16:31:03.396 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 2 lines
04-28 16:31:04.418 1348 1348 I chatty : uid=1000 system_server expire 6 lines
04-28 16:31:04.452 1348 1431 I chatty : uid=1000(system) ActivityManager expire 10 lines
04-28 16:31:04.455 1348 2662 I chatty : uid=1000(system) Binder:1348_E expire 1 line
04-28 16:31:04.473 1348 1469 I chatty : uid=1000(system) PowerManagerSer expire 6 lines
04-28 16:31:04.477 1348 1415 I chatty : uid=1000(system) android.display expire 13 lines
04-28 16:31:04.500 1348 1446 I chatty : uid=1000(system) batterystats-wo expire 1 line
04-28 16:31:04.633 1348 1532 I chatty : uid=1000(system) ConnectivitySer expire 1 line
04-28 16:31:04.683 1348 1630 I chatty : uid=1000(system) Binder:1348_15 expire 7 lines
04-28 16:31:04.965 1348 1412 I chatty : uid=1000(system) android.fg expire 3 lines
04-28 16:31:11.308 1348 1514 I chatty : uid=1000(system) UEventObserver expire 10 lines
04-28 16:31:13.066 1348 1413 I chatty : uid=1000(system) android.ui expire 1 line
04-28 16:31:13.072 1348 3856 I chatty : uid=1000(system) Binder:1348_20 expire 13 lines
04-28 16:31:13.087 1348 3335 I chatty : uid=1000(system) Binder:1348_F expire 4 lines