-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlogs.txt
5871 lines (5828 loc) · 795 KB
/
logs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--------- beginning of system
11-24 06:32:19.190 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 06:32:19.205 3924 3924 V KeyguardDisplayManager: show
11-24 06:33:02.468 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 06:37:40.032 1575 4233 I chatty : uid=1000(system) Binder:1575_7 expire 10 lines
11-24 06:38:03.412 1575 1782 I chatty : uid=1000(system) ActivityManager expire 10 lines
11-24 06:40:16.442 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 06:40:21.723 1575 1782 I chatty : uid=1000(system) ActivityManager expire 36 lines
11-24 06:41:25.844 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 11 lines
11-24 06:43:34.395 1575 4026 I chatty : uid=1000(system) Binder:1575_4 expire 14 lines
11-24 06:45:52.146 1575 8500 I chatty : uid=1000(system) Binder:1575_12 expire 13 lines
11-24 06:45:52.230 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 26 lines
11-24 06:46:05.610 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 12 lines
11-24 06:47:21.968 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 06:47:33.586 1575 1782 I chatty : uid=1000(system) ActivityManager expire 36 lines
11-24 06:48:03.778 1575 1586 I chatty : uid=1000(system) Binder:1575_2 expire 16 lines
11-24 06:49:56.192 1575 4117 I chatty : uid=1000(system) Binder:1575_5 expire 13 lines
11-24 06:50:00.220 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 10 lines
11-24 06:50:44.561 1575 1575 I chatty : uid=1000 system_server expire 13 lines
11-24 06:50:45.137 3924 3924 V KeyguardDisplayManager: hide
11-24 06:50:45.332 1575 22228 I chatty : uid=1000(system) Binder:1575_1E expire 10 lines
11-24 06:51:02.405 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 06:51:02.423 3924 3924 V KeyguardDisplayManager: show
11-24 06:51:02.585 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 11 lines
11-24 06:51:02.860 1575 3697 I chatty : uid=1000(system) UEventObserver expire 14 lines
11-24 06:51:48.009 556 750 I chatty : uid=1000(system) EventThread expire 11 lines
11-24 06:51:49.372 1575 11342 I chatty : uid=1000(system) Binder:1575_19 expire 15 lines
11-24 06:51:49.833 1575 3875 I chatty : uid=1000(system) NetworkPolicy expire 10 lines
11-24 06:51:58.156 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 17 lines
11-24 06:51:58.571 4077 4077 I chatty : uid=1000(system) com.motorola.process.system expire 10 lines
11-24 06:51:58.768 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 11 lines
11-24 06:51:58.890 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 10 lines
11-24 06:51:58.939 1575 1575 I chatty : uid=1000 system_server expire 12 lines
11-24 06:53:58.138 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 06:54:09.494 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 12 lines
11-24 06:54:10.409 1575 1782 I chatty : uid=1000(system) ActivityManager expire 28 lines
11-24 06:54:31.617 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 22 lines
11-24 06:55:03.499 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
11-24 06:55:06.218 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 20 lines
11-24 06:55:14.040 1575 2058 I chatty : uid=1000(system) android.display expire 11 lines
11-24 06:55:14.384 3924 3924 V KeyguardDisplayManager: hide
11-24 06:55:16.144 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 06:55:16.161 3924 3924 V KeyguardDisplayManager: show
11-24 06:55:16.219 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 12 lines
11-24 06:55:27.352 1575 3697 I chatty : uid=1000(system) UEventObserver expire 17 lines
11-24 06:55:27.353 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 12 lines
11-24 06:55:33.210 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 10 lines
11-24 06:55:38.987 1575 4548 I chatty : uid=1000(system) Binder:1575_B expire 10 lines
11-24 06:56:14.828 1575 11343 I chatty : uid=1000(system) Binder:1575_1A expire 10 lines
11-24 06:58:52.119 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 10 lines
11-24 06:59:18.576 32508 32535 D ActivityThread: Loading provider com.google.android.gmail.provider;com.android.mail.notifier;com.google.android.gm.email.provider;com.google.android.gm.tasks.provider;com.google.android.gm.email.notifier: com.android.email.provider.EmailProvider
11-24 06:59:18.715 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 10 lines
11-24 06:59:20.577 1575 4026 I chatty : uid=1000(system) Binder:1575_4 expire 17 lines
11-24 06:59:22.438 1575 11677 I chatty : uid=1000(system) Binder:1575_1B expire 10 lines
11-24 07:00:00.001 1575 1575 I chatty : uid=1000 system_server expire 13 lines
11-24 07:04:33.202 1575 1782 I chatty : uid=1000(system) ActivityManager expire 16 lines
11-24 07:10:31.080 1575 3697 I chatty : uid=1000(system) UEventObserver expire 10 lines
11-24 07:12:18.793 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 07:16:35.945 1575 11341 I chatty : uid=1000(system) Binder:1575_18 expire 10 lines
11-24 07:20:37.594 1575 3697 I chatty : uid=1000(system) UEventObserver expire 15 lines
11-24 07:20:41.140 1575 1782 I chatty : uid=1000(system) ActivityManager expire 12 lines
11-24 07:21:37.697 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 44 lines
11-24 07:22:36.325 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 12 lines
11-24 07:27:35.225 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 48 lines
11-24 07:27:36.521 1575 1575 I chatty : uid=1000 system_server expire 37 lines
11-24 07:27:37.306 3924 3924 V KeyguardDisplayManager: hide
11-24 07:27:45.213 556 750 I chatty : uid=1000(system) EventThread expire 17 lines
11-24 07:27:47.150 1575 8500 I chatty : uid=1000(system) Binder:1575_12 expire 11 lines
11-24 07:28:02.345 1575 3697 I chatty : uid=1000(system) UEventObserver expire 69 lines
11-24 07:28:04.430 556 748 I chatty : uid=1000(system) EventThread expire 23 lines
11-24 07:28:04.650 1575 2058 I chatty : uid=1000(system) android.display expire 10 lines
11-24 07:28:14.902 1575 1123 I chatty : uid=1000 system_server expire 1 line
11-24 07:28:14.905 1575 1585 I chatty : uid=1000(system) Binder:1575_1 expire 11 lines
11-24 07:28:14.944 1575 1782 I chatty : uid=1000(system) ActivityManager expire 25 lines
11-24 07:28:14.952 1575 4335 I chatty : uid=1000(system) uteStateMachine expire 17 lines
11-24 07:28:15.142 1575 1124 I chatty : uid=1000 system_server expire 2 lines
11-24 07:28:36.806 1575 4417 I chatty : uid=1000(system) Binder:1575_A expire 21 lines
11-24 07:28:38.732 1575 1140 I chatty : uid=1000 system_server expire 1 line
11-24 07:29:19.551 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 16 lines
11-24 07:29:48.708 1575 1586 I chatty : uid=1000(system) Binder:1575_2 expire 11 lines
11-24 07:29:48.709 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 12 lines
11-24 07:30:02.106 1575 8501 I chatty : uid=1000(system) Binder:1575_13 expire 10 lines
11-24 07:31:44.022 1575 11342 I chatty : uid=1000(system) Binder:1575_19 expire 12 lines
11-24 07:32:42.761 1575 4117 I chatty : uid=1000(system) Binder:1575_5 expire 13 lines
11-24 07:32:44.095 1575 8499 I chatty : uid=1000(system) Binder:1575_11 expire 10 lines
11-24 07:33:20.470 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 07:33:20.485 3924 3924 V KeyguardDisplayManager: show
11-24 07:33:20.750 1575 3697 I chatty : uid=1000(system) UEventObserver expire 10 lines
11-24 07:34:24.043 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 47 lines
11-24 07:35:21.104 1575 31364 I chatty : uid=1000(system) Binder:1575_20 expire 12 lines
11-24 07:35:27.517 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 11 lines
11-24 07:36:09.873 556 750 I chatty : uid=1000(system) EventThread expire 17 lines
11-24 07:38:16.395 1575 1774 I chatty : uid=1000(system) android.bg expire 11 lines
11-24 07:38:16.425 4077 4077 I chatty : uid=1000(system) com.motorola.process.system expire 10 lines
11-24 07:39:13.170 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 15 lines
11-24 07:39:14.700 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 07:39:22.011 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 10 lines
11-24 07:39:33.253 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 21 lines
11-24 07:39:34.388 1575 1575 I chatty : uid=1000 system_server expire 37 lines
11-24 07:39:34.753 3924 3924 V KeyguardDisplayManager: hide
11-24 07:39:39.470 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 32 lines
11-24 07:39:45.483 1575 4551 I chatty : uid=1000(system) Binder:1575_C expire 12 lines
11-24 07:39:49.081 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 10 lines
11-24 07:39:49.112 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 11 lines
11-24 07:39:50.385 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 11 lines
11-24 07:39:50.722 1575 4335 I chatty : uid=1000(system) uteStateMachine expire 37 lines
11-24 07:39:50.724 1575 4336 I chatty : uid=1000(system) CallAudioModeSt expire 12 lines
11-24 07:39:51.101 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 19 lines
11-24 07:39:51.107 1575 1782 I chatty : uid=1000(system) ActivityManager expire 12 lines
11-24 07:39:51.235 1575 4548 I chatty : uid=1000(system) Binder:1575_B expire 10 lines
11-24 07:39:55.701 1575 2058 I chatty : uid=1000(system) android.display expire 24 lines
11-24 07:40:06.853 1575 4417 I chatty : uid=1000(system) Binder:1575_A expire 11 lines
11-24 07:40:06.857 1575 4118 I chatty : uid=1000(system) Binder:1575_6 expire 10 lines
11-24 07:40:45.643 1575 3697 I chatty : uid=1000(system) UEventObserver expire 12 lines
11-24 07:40:45.648 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 26 lines
11-24 07:41:50.528 1575 22228 I chatty : uid=1000(system) Binder:1575_1E expire 11 lines
11-24 07:43:51.974 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 10 lines
11-24 07:43:54.843 1575 3881 I chatty : uid=1000(system) WifiStateMachin expire 10 lines
11-24 07:43:54.843 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 53 lines
11-24 07:45:09.886 1575 4617 I chatty : uid=1000(system) Binder:1575_E expire 11 lines
11-24 07:45:09.920 1575 3076 I chatty : uid=1000 system_server expire 1 line
11-24 07:45:44.435 556 750 I chatty : uid=1000(system) EventThread expire 19 lines
11-24 07:45:45.746 3924 3924 V DeadZone: consuming errant click: (383.0,85.0)
11-24 07:45:46.433 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 14 lines
11-24 07:45:46.583 1575 4233 I chatty : uid=1000(system) Binder:1575_7 expire 13 lines
11-24 07:45:52.115 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 17 lines
11-24 07:46:54.707 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 33 lines
11-24 07:47:10.333 1575 1575 I chatty : uid=1000 system_server expire 19 lines
11-24 07:47:58.097 556 748 I chatty : uid=1000(system) EventThread expire 11 lines
11-24 07:48:10.707 1575 3881 I chatty : uid=1000(system) WifiStateMachin expire 11 lines
11-24 07:48:37.541 1575 3713 I chatty : uid=1000(system) AlarmManager expire 2 lines
11-24 07:48:37.572 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 12 lines
11-24 07:48:47.027 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 10 lines
11-24 07:48:50.981 1575 31364 I chatty : uid=1000(system) Binder:1575_20 expire 11 lines
11-24 07:48:52.329 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 11 lines
11-24 07:50:49.498 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
11-24 07:50:50.117 1575 2058 I chatty : uid=1000(system) android.display expire 15 lines
11-24 07:50:54.582 1575 3697 I chatty : uid=1000(system) UEventObserver expire 18 lines
11-24 07:50:54.633 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 07:50:54.647 3924 3924 V KeyguardDisplayManager: show
11-24 07:50:54.782 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 10 lines
11-24 07:50:55.129 1575 1782 I chatty : uid=1000(system) ActivityManager expire 21 lines
11-24 07:54:10.103 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 07:54:13.754 1575 3697 I chatty : uid=1000(system) UEventObserver expire 27 lines
11-24 08:03:05.535 1575 5944 I chatty : uid=1000(system) Binder:1575_10 expire 26 lines
11-24 08:06:17.092 1575 1774 I chatty : uid=1000(system) android.bg expire 10 lines
11-24 08:06:17.232 1575 1575 I chatty : uid=1000 system_server expire 10 lines
11-24 08:06:19.007 3924 3924 V KeyguardDisplayManager: hide
11-24 08:06:19.499 1575 1782 I chatty : uid=1000(system) ActivityManager expire 19 lines
11-24 08:06:24.188 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 38 lines
11-24 08:06:24.286 1575 3714 I chatty : uid=1000(system) InputDispatcher expire 10 lines
11-24 08:06:24.311 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 11 lines
11-24 08:07:16.426 1575 3697 I chatty : uid=1000(system) UEventObserver expire 16 lines
11-24 08:07:16.433 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 12 lines
11-24 08:07:17.846 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 08:07:17.860 3924 3924 V KeyguardDisplayManager: show
11-24 08:09:14.566 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 08:09:16.002 1575 3697 I chatty : uid=1000(system) UEventObserver expire 12 lines
11-24 08:09:26.193 1575 4417 I chatty : uid=1000(system) Binder:1575_A expire 11 lines
11-24 08:11:21.589 4981 5008 D ActivityThread: Loading provider com.google.android.gmail.provider;com.android.mail.notifier;com.google.android.gm.email.provider;com.google.android.gm.tasks.provider;com.google.android.gm.email.notifier: com.android.email.provider.EmailProvider
11-24 08:11:22.224 1575 4118 I chatty : uid=1000(system) Binder:1575_6 expire 11 lines
11-24 08:12:28.870 1575 11343 I chatty : uid=1000(system) Binder:1575_1A expire 10 lines
11-24 08:12:35.076 1575 3697 I chatty : uid=1000(system) UEventObserver expire 73 lines
11-24 08:15:26.638 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 28 lines
11-24 08:15:33.385 1575 1575 I chatty : uid=1000 system_server expire 19 lines
11-24 08:17:04.810 1575 11342 I chatty : uid=1000(system) Binder:1575_19 expire 10 lines
11-24 08:17:40.897 1575 1782 I chatty : uid=1000(system) ActivityManager expire 18 lines
11-24 08:19:02.467 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 16 lines
11-24 08:19:18.880 1575 8499 I chatty : uid=1000(system) Binder:1575_11 expire 17 lines
11-24 08:21:52.386 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 08:23:08.576 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 10 lines
11-24 08:23:50.302 1575 11677 I chatty : uid=1000(system) Binder:1575_1B expire 12 lines
11-24 08:23:57.473 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 10 lines
11-24 08:23:57.562 3924 3924 V KeyguardDisplayManager: hide
11-24 08:23:59.014 556 750 I chatty : uid=1000(system) EventThread expire 11 lines
11-24 08:24:04.049 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 12 lines
11-24 08:24:07.934 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 12 lines
11-24 08:24:10.309 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 08:24:10.320 3924 3924 V KeyguardDisplayManager: show
11-24 08:24:17.381 1575 3697 I chatty : uid=1000(system) UEventObserver expire 14 lines
11-24 08:24:28.669 1575 1575 I chatty : uid=1000 system_server expire 12 lines
11-24 08:25:01.172 1575 2058 I chatty : uid=1000(system) android.display expire 14 lines
11-24 08:25:01.412 556 748 I chatty : uid=1000(system) EventThread expire 12 lines
11-24 08:25:03.826 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 34 lines
11-24 08:25:04.036 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 16 lines
11-24 08:25:04.285 3924 3924 V KeyguardDisplayManager: hide
11-24 08:25:19.152 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 22 lines
11-24 08:25:28.620 1575 1575 I chatty : uid=1000 system_server expire 37 lines
11-24 08:25:29.483 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 08:25:29.497 3924 3924 V KeyguardDisplayManager: show
11-24 08:25:37.877 1575 3892 I chatty : uid=1000(system) ranker expire 2 lines
11-24 08:27:30.960 1575 1782 I chatty : uid=1000(system) ActivityManager expire 23 lines
11-24 08:27:32.561 1575 3697 I chatty : uid=1000(system) UEventObserver expire 11 lines
11-24 08:28:16.492 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 08:28:23.813 1575 3697 I chatty : uid=1000(system) UEventObserver expire 13 lines
11-24 08:29:13.090 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
11-24 08:29:13.125 556 750 I chatty : uid=1000(system) EventThread expire 19 lines
11-24 08:29:15.283 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 13 lines
11-24 08:29:15.629 1575 1585 I chatty : uid=1000(system) Binder:1575_1 expire 18 lines
11-24 08:29:15.763 3924 3924 V KeyguardDisplayManager: hide
11-24 08:29:26.176 1575 4335 I chatty : uid=1000(system) uteStateMachine expire 22 lines
11-24 08:29:26.180 1575 4336 I chatty : uid=1000(system) CallAudioModeSt expire 10 lines
11-24 08:29:26.301 1575 26294 I chatty : uid=1000(system) ContactsAsyncWo expire 2 lines
11-24 08:29:26.446 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 19 lines
11-24 08:29:27.849 1575 8501 I chatty : uid=1000(system) Binder:1575_13 expire 10 lines
11-24 08:33:50.506 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 10 lines
11-24 08:34:27.104 1575 4417 I chatty : uid=1000(system) Binder:1575_A expire 11 lines
11-24 08:34:27.165 1575 6690 I chatty : uid=1000(system) Binder:6678_1 expire 1 line
11-24 08:34:28.207 1575 1575 I chatty : uid=1000 system_server expire 14 lines
11-24 08:34:28.407 1575 2058 I chatty : uid=1000(system) android.display expire 19 lines
11-24 08:34:29.097 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 08:34:29.109 3924 3924 V KeyguardDisplayManager: show
11-24 08:34:29.165 1575 1586 I chatty : uid=1000(system) Binder:1575_2 expire 11 lines
11-24 08:35:15.691 1575 3697 I chatty : uid=1000(system) UEventObserver expire 10 lines
11-24 08:35:40.731 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 11 lines
11-24 08:36:27.063 1575 22228 I chatty : uid=1000(system) Binder:1575_1E expire 16 lines
11-24 08:36:42.061 1575 31364 I chatty : uid=1000(system) Binder:1575_20 expire 10 lines
11-24 08:38:13.125 1575 8500 I chatty : uid=1000(system) Binder:1575_12 expire 14 lines
11-24 08:38:22.400 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 12 lines
11-24 08:38:22.441 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 12 lines
11-24 08:39:31.103 1575 11341 I chatty : uid=1000(system) Binder:1575_18 expire 16 lines
11-24 08:41:54.362 4077 4077 I chatty : uid=1000(system) com.motorola.process.system expire 10 lines
11-24 08:41:54.364 1575 11677 I chatty : uid=1000(system) Binder:1575_1B expire 10 lines
11-24 08:41:54.378 1575 4233 I chatty : uid=1000(system) Binder:1575_7 expire 12 lines
11-24 08:41:55.122 1575 1782 I chatty : uid=1000(system) ActivityManager expire 10 lines
11-24 08:41:56.173 1575 3715 I chatty : uid=1000(system) InputReader expire 10 lines
11-24 08:41:59.539 556 748 I chatty : uid=1000(system) EventThread expire 12 lines
11-24 08:42:11.649 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='null' fromServiceState=true
11-24 08:42:11.649 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to
11-24 08:42:11.681 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.startDataOutOfService:443 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:220
11-24 08:42:20.243 1575 8499 I chatty : uid=1000(system) Binder:1575_11 expire 12 lines
11-24 08:42:20.266 1575 4118 I chatty : uid=1000(system) Binder:1575_6 expire 11 lines
11-24 08:43:35.064 1575 1774 I chatty : uid=1000(system) android.bg expire 11 lines
11-24 08:44:21.038 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='310260' fromServiceState=true
11-24 08:44:21.039 4091 4091 D MccTable: updateMccMncConfiguration defaultMccMnc=310260
11-24 08:44:21.039 4091 4091 D MccTable: updateMccMncConfiguration: mcc=310, mnc=260
11-24 08:44:21.039 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to us
11-24 08:44:21.040 1575 4548 I chatty : uid=1000(system) Binder:1575_B expire 15 lines
11-24 08:44:21.124 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 16 lines
11-24 08:44:21.142 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.stopDataOutOfService:447 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:224
11-24 08:44:21.270 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 10 lines
11-24 08:44:21.558 1575 8501 I chatty : uid=1000(system) Binder:1575_13 expire 14 lines
11-24 08:44:23.656 1575 1782 I chatty : uid=1000(system) ActivityManager expire 10 lines
11-24 08:45:09.761 1575 4551 I chatty : uid=1000(system) Binder:1575_C expire 13 lines
11-24 08:46:25.055 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='null' fromServiceState=true
11-24 08:46:25.055 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to
11-24 08:46:25.096 1575 1575 I chatty : uid=1000 system_server expire 14 lines
11-24 08:46:25.250 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.startDataOutOfService:443 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:220
11-24 08:46:25.304 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 10 lines
11-24 08:46:25.357 1575 31364 I chatty : uid=1000(system) Binder:1575_20 expire 10 lines
11-24 08:46:25.472 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 12 lines
11-24 08:46:25.492 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 13 lines
11-24 08:46:47.993 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 10 lines
11-24 08:46:50.171 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='310260' fromServiceState=true
11-24 08:46:50.174 4091 4091 D MccTable: updateMccMncConfiguration defaultMccMnc=310260
11-24 08:46:50.174 4091 4091 D MccTable: updateMccMncConfiguration: mcc=310, mnc=260
11-24 08:46:50.174 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to us
11-24 08:46:50.323 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 14 lines
11-24 08:46:50.431 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.stopDataOutOfService:447 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:224
11-24 08:46:52.783 1575 4617 I chatty : uid=1000(system) Binder:1575_E expire 10 lines
11-24 08:46:53.108 8032 8056 D ActivityThread: Loading provider com.google.android.gmail.provider;com.android.mail.notifier;com.google.android.gm.email.provider;com.google.android.gm.tasks.provider;com.google.android.gm.email.notifier: com.android.email.provider.EmailProvider
11-24 08:46:53.668 1575 1782 I chatty : uid=1000(system) ActivityManager expire 23 lines
11-24 08:47:08.619 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 17 lines
11-24 08:47:08.647 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 14 lines
11-24 08:47:11.277 1575 31364 I chatty : uid=1000(system) Binder:1575_20 expire 14 lines
11-24 08:47:35.991 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='null' fromServiceState=true
11-24 08:47:35.991 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to
11-24 08:47:36.134 1575 4026 I chatty : uid=1000(system) Binder:1575_4 expire 13 lines
11-24 08:47:36.177 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.startDataOutOfService:443 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:220
11-24 08:47:36.247 1575 4548 I chatty : uid=1000(system) Binder:1575_B expire 10 lines
11-24 08:47:36.248 1575 11342 I chatty : uid=1000(system) Binder:1575_19 expire 10 lines
11-24 08:47:36.287 1575 5944 I chatty : uid=1000(system) Binder:1575_10 expire 11 lines
11-24 08:47:36.393 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 22 lines
11-24 08:48:22.417 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 16 lines
11-24 08:48:22.697 1575 4233 I chatty : uid=1000(system) Binder:1575_7 expire 10 lines
11-24 08:48:52.253 1575 4117 I chatty : uid=1000(system) Binder:1575_5 expire 10 lines
11-24 09:08:12.058 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
11-24 09:08:13.699 3924 3924 V KeyguardDisplayManager: hide
11-24 09:08:13.792 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 62 lines
11-24 09:08:17.036 1575 1782 I chatty : uid=1000(system) ActivityManager expire 11 lines
11-24 09:08:19.499 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 11 lines
11-24 09:08:23.721 1575 3697 I chatty : uid=1000(system) UEventObserver expire 10 lines
11-24 09:08:23.723 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 10 lines
11-24 09:08:28.817 556 750 I chatty : uid=1000(system) EventThread expire 29 lines
11-24 09:08:41.691 22756 22756 I ActivityThread: Removing dead content provider:android.content.ContentProviderProxy@41550f3
11-24 09:08:41.797 1575 4417 I chatty : uid=1000(system) Binder:1575_A expire 12 lines
11-24 09:09:45.307 1575 4026 I chatty : uid=1000(system) Binder:1575_4 expire 10 lines
11-24 09:09:55.417 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 09:09:55.431 3924 3924 V KeyguardDisplayManager: show
11-24 09:09:55.484 1575 11343 I chatty : uid=1000(system) Binder:1575_1A expire 11 lines
11-24 09:10:03.707 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 35 lines
11-24 09:10:29.710 556 750 I chatty : uid=1000(system) EventThread expire 11 lines
11-24 09:11:53.004 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 13 lines
11-24 09:14:22.327 3924 3924 V KeyguardDisplayManager: hide
11-24 09:14:22.403 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 12 lines
11-24 09:14:25.586 1575 1782 I chatty : uid=1000(system) ActivityManager expire 38 lines
11-24 09:14:27.405 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 10 lines
11-24 09:14:30.608 1575 2058 I chatty : uid=1000(system) android.display expire 13 lines
11-24 09:14:43.729 1575 1575 I chatty : uid=1000 system_server expire 15 lines
11-24 09:14:44.600 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 09:14:44.610 3924 3924 V KeyguardDisplayManager: show
11-24 09:14:44.680 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 11 lines
11-24 09:17:39.168 1575 1586 I chatty : uid=1000(system) Binder:1575_2 expire 14 lines
11-24 09:18:53.056 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 09:23:28.583 1575 1774 I chatty : uid=1000(system) android.bg expire 14 lines
11-24 09:39:15.239 9587 9587 D ActivityThread: Loading provider com.whatsapp.provider.contact: com.whatsapp.contact.ContactProvider
11-24 09:39:18.687 1575 1782 I chatty : uid=1000(system) ActivityManager expire 28 lines
11-24 09:41:00.209 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 22 lines
11-24 09:41:00.683 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 10 lines
11-24 09:41:01.298 3924 3924 V KeyguardDisplayManager: hide
11-24 09:41:01.350 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 12 lines
11-24 09:41:04.038 692 9975 E SchedPolicy: sched_setscheduler failed: tid 9975, errno=1
11-24 09:41:04.038 692 9976 E SchedPolicy: sched_setscheduler failed: tid 9976, errno=1
11-24 09:41:04.039 692 9977 E SchedPolicy: sched_setscheduler failed: tid 9977, errno=1
11-24 09:41:04.043 692 9979 E SchedPolicy: sched_setscheduler failed: tid 9979, errno=1
11-24 09:41:09.980 556 750 I chatty : uid=1000(system) EventThread expire 11 lines
11-24 09:41:18.693 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 09:41:18.712 3924 3924 V KeyguardDisplayManager: show
11-24 09:41:50.829 3924 3924 V KeyguardDisplayManager: hide
11-24 09:41:51.393 692 10283 E SchedPolicy: sched_setscheduler failed: tid 10283, errno=1
11-24 09:41:51.393 692 10284 E SchedPolicy: sched_setscheduler failed: tid 10284, errno=1
11-24 09:41:51.394 692 10285 E SchedPolicy: sched_setscheduler failed: tid 10285, errno=1
11-24 09:41:51.395 692 10286 E SchedPolicy: sched_setscheduler failed: tid 10286, errno=1
11-24 09:41:51.835 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 12 lines
11-24 09:41:52.620 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 11 lines
11-24 09:41:53.641 692 10438 E SchedPolicy: sched_setscheduler failed: tid 10438, errno=1
11-24 09:41:53.642 692 10440 E SchedPolicy: sched_setscheduler failed: tid 10440, errno=1
11-24 09:41:53.643 692 10439 E SchedPolicy: sched_setscheduler failed: tid 10439, errno=1
11-24 09:41:53.644 692 10441 E SchedPolicy: sched_setscheduler failed: tid 10441, errno=1
11-24 09:42:00.210 556 748 I chatty : uid=1000(system) EventThread expire 13 lines
11-24 09:42:00.966 1575 2058 I chatty : uid=1000(system) android.display expire 12 lines
11-24 09:42:01.722 1575 3697 I chatty : uid=1000(system) UEventObserver expire 15 lines
11-24 09:42:01.723 1575 4617 I chatty : uid=1000(system) Binder:1575_E expire 11 lines
11-24 09:42:02.602 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 09:42:02.616 3924 3924 V KeyguardDisplayManager: show
11-24 09:56:19.381 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 09:56:19.598 1575 1782 I chatty : uid=1000(system) ActivityManager expire 16 lines
11-24 09:57:22.205 1575 8499 I chatty : uid=1000(system) Binder:1575_11 expire 12 lines
11-24 10:00:00.000 1575 1575 I chatty : uid=1000 system_server expire 10 lines
11-24 10:06:35.979 1575 2105 I chatty : uid=1000(system) CpuTracker expire 1 line
11-24 10:06:43.742 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 14 lines
11-24 10:13:50.913 1575 3715 I chatty : uid=1000(system) InputReader expire 10 lines
11-24 10:13:50.930 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
11-24 10:13:53.252 556 750 I chatty : uid=1000(system) EventThread expire 13 lines
11-24 10:13:53.311 3924 3924 V KeyguardDisplayManager: hide
11-24 10:13:53.886 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 10 lines
11-24 10:13:59.214 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 18 lines
11-24 10:14:01.355 1575 11341 I chatty : uid=1000(system) Binder:1575_18 expire 10 lines
11-24 10:14:07.556 1575 4117 I chatty : uid=1000(system) Binder:1575_5 expire 12 lines
11-24 10:14:08.520 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 10:14:08.533 3924 3924 V KeyguardDisplayManager: show
11-24 10:14:10.798 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 10 lines
11-24 10:14:13.226 1575 1782 I chatty : uid=1000(system) ActivityManager expire 56 lines
11-24 10:19:07.038 1575 4118 I chatty : uid=1000(system) Binder:1575_6 expire 10 lines
11-24 10:21:51.763 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 12 lines
11-24 10:23:58.749 1575 4548 I chatty : uid=1000(system) Binder:1575_B expire 12 lines
11-24 10:48:43.466 1575 1585 I chatty : uid=1000(system) Binder:1575_1 expire 15 lines
11-24 10:50:39.054 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 10:50:43.753 1575 1782 I chatty : uid=1000(system) ActivityManager expire 44 lines
11-24 10:59:50.499 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 10 lines
11-24 11:03:55.165 1575 3697 I chatty : uid=1000(system) UEventObserver expire 10 lines
11-24 11:03:55.166 1575 11343 I chatty : uid=1000(system) Binder:1575_1A expire 12 lines
11-24 11:05:15.942 1575 1774 I chatty : uid=1000(system) android.bg expire 10 lines
11-24 11:09:09.656 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 10 lines
11-24 11:11:52.849 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 11 lines
11-24 11:13:59.715 1575 4551 I chatty : uid=1000(system) Binder:1575_C expire 13 lines
11-24 11:13:59.729 1575 4026 I chatty : uid=1000(system) Binder:1575_4 expire 10 lines
11-24 11:14:01.878 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='310260' fromServiceState=true
11-24 11:14:01.880 4091 4091 D MccTable: updateMccMncConfiguration defaultMccMnc=310260
11-24 11:14:01.881 4091 4091 D MccTable: updateMccMncConfiguration: mcc=310, mnc=260
11-24 11:14:01.881 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to us
11-24 11:14:01.910 1575 1575 I chatty : uid=1000 system_server expire 11 lines
11-24 11:14:01.990 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 11 lines
11-24 11:14:02.004 1575 5944 I chatty : uid=1000(system) Binder:1575_10 expire 13 lines
11-24 11:14:02.123 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.stopDataOutOfService:447 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:224
11-24 11:14:02.428 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 16 lines
11-24 11:14:02.621 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 11 lines
11-24 11:14:02.621 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 14 lines
11-24 11:14:02.872 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 10 lines
11-24 11:14:02.886 1575 8501 I chatty : uid=1000(system) Binder:1575_13 expire 15 lines
11-24 11:14:03.962 1575 11341 I chatty : uid=1000(system) Binder:1575_18 expire 12 lines
11-24 11:14:04.972 1575 1782 I chatty : uid=1000(system) ActivityManager expire 18 lines
11-24 11:14:29.116 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='null' fromServiceState=true
11-24 11:14:29.116 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to
11-24 11:14:29.224 1575 8500 I chatty : uid=1000(system) Binder:1575_12 expire 11 lines
11-24 11:14:29.287 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.startDataOutOfService:443 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:220
11-24 11:14:52.748 1575 22228 I chatty : uid=1000(system) Binder:1575_1E expire 12 lines
11-24 11:14:52.829 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 12 lines
11-24 11:15:32.829 1575 4617 I chatty : uid=1000(system) Binder:1575_E expire 12 lines
11-24 11:16:21.136 1575 1585 I chatty : uid=1000(system) Binder:1575_1 expire 12 lines
11-24 11:16:36.310 1575 2058 I chatty : uid=1000(system) android.display expire 13 lines
11-24 11:16:38.410 3924 3924 V KeyguardDisplayManager: hide
11-24 11:16:38.529 1575 11342 I chatty : uid=1000(system) Binder:1575_19 expire 15 lines
11-24 11:16:38.529 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 12 lines
11-24 11:16:38.534 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 10 lines
11-24 11:16:39.557 1575 1782 I chatty : uid=1000(system) ActivityManager expire 13 lines
11-24 11:16:41.105 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='310260' fromServiceState=true
11-24 11:16:41.107 4091 4091 D MccTable: updateMccMncConfiguration defaultMccMnc=310260
11-24 11:16:41.107 4091 4091 D MccTable: updateMccMncConfiguration: mcc=310, mnc=260
11-24 11:16:41.107 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to us
11-24 11:16:41.225 1575 4548 I chatty : uid=1000(system) Binder:1575_B expire 11 lines
11-24 11:16:41.228 1575 31364 I chatty : uid=1000(system) Binder:1575_20 expire 14 lines
11-24 11:16:41.333 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.stopDataOutOfService:447 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:224
11-24 11:16:41.916 1575 8499 I chatty : uid=1000(system) Binder:1575_11 expire 10 lines
11-24 11:16:45.107 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 11 lines
11-24 11:16:48.211 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 35 lines
11-24 11:16:53.189 556 750 I chatty : uid=1000(system) EventThread expire 16 lines
11-24 11:17:02.802 1575 4117 I chatty : uid=1000(system) Binder:1575_5 expire 10 lines
11-24 11:17:11.451 1575 11677 I chatty : uid=1000(system) Binder:1575_1B expire 16 lines
11-24 11:17:17.478 556 748 I chatty : uid=1000(system) EventThread expire 12 lines
11-24 11:17:35.418 1575 4551 I chatty : uid=1000(system) Binder:1575_C expire 10 lines
11-24 11:18:15.553 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
11-24 11:18:16.060 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 11:18:16.088 3924 3924 V KeyguardDisplayManager: show
11-24 11:18:20.617 1575 1782 I chatty : uid=1000(system) ActivityManager expire 11 lines
11-24 11:18:30.426 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 30 lines
11-24 11:18:42.735 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 12 lines
11-24 11:18:43.600 4077 4077 I chatty : uid=1000(system) com.motorola.process.system expire 10 lines
11-24 11:18:43.886 1575 4026 I chatty : uid=1000(system) Binder:1575_4 expire 12 lines
11-24 11:18:43.893 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 16 lines
11-24 11:18:50.778 1575 8501 I chatty : uid=1000(system) Binder:1575_13 expire 10 lines
11-24 11:18:57.192 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 12 lines
11-24 11:19:05.926 1575 2058 I chatty : uid=1000(system) android.display expire 12 lines
11-24 11:19:07.548 3924 3924 V KeyguardDisplayManager: hide
11-24 11:19:07.651 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 18 lines
11-24 11:19:07.819 1575 22228 I chatty : uid=1000(system) Binder:1575_1E expire 10 lines
11-24 11:19:08.867 1575 1782 I chatty : uid=1000(system) ActivityManager expire 14 lines
11-24 11:19:09.186 1575 4233 I chatty : uid=1000(system) Binder:1575_7 expire 10 lines
11-24 11:19:10.444 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 16 lines
11-24 11:19:15.757 556 750 I chatty : uid=1000(system) EventThread expire 12 lines
11-24 11:19:17.831 1575 11341 I chatty : uid=1000(system) Binder:1575_18 expire 10 lines
11-24 11:19:32.091 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='null' fromServiceState=true
11-24 11:19:32.091 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to
11-24 11:19:32.146 1575 1575 I chatty : uid=1000 system_server expire 11 lines
11-24 11:19:32.388 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.startDataOutOfService:443 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:220
11-24 11:19:32.835 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 10 lines
11-24 11:19:37.601 1575 14654 I chatty : uid=1000(system) TaskSchedulerSe expire 1 line
11-24 11:19:37.773 1575 4417 I chatty : uid=1000(system) Binder:1575_A expire 14 lines
11-24 11:19:42.777 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 10 lines
11-24 11:19:58.723 556 750 I chatty : uid=1000(system) EventThread expire 24 lines
11-24 11:20:18.568 1575 14731 I chatty : uid=1000 system_server expire 1 line
11-24 11:20:19.634 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 36 lines
11-24 11:20:19.685 1575 1586 I chatty : uid=1000(system) Binder:1575_2 expire 10 lines
11-24 11:20:22.139 1575 3697 I chatty : uid=1000(system) UEventObserver expire 10 lines
11-24 11:21:28.058 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='310260' fromServiceState=true
11-24 11:21:28.059 4091 4091 D MccTable: updateMccMncConfiguration defaultMccMnc=310260
11-24 11:21:28.059 4091 4091 D MccTable: updateMccMncConfiguration: mcc=310, mnc=260
11-24 11:21:28.060 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to us
11-24 11:21:28.324 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.stopDataOutOfService:447 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:224
11-24 11:21:28.983 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 13 lines
11-24 11:21:29.304 1575 1774 I chatty : uid=1000(system) android.bg expire 11 lines
11-24 11:21:29.600 15167 15167 D ActivityThread: Loading provider com.whatsapp.provider.contact: com.whatsapp.contact.ContactProvider
11-24 11:21:30.146 1575 4617 I chatty : uid=1000(system) Binder:1575_E expire 16 lines
11-24 11:21:30.149 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 10 lines
11-24 11:21:30.228 1575 4118 I chatty : uid=1000(system) Binder:1575_6 expire 14 lines
11-24 11:21:30.383 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 148 lines
11-24 11:21:30.770 15286 15313 D ActivityThread: Loading provider com.google.android.gmail.provider;com.android.mail.notifier;com.google.android.gm.email.provider;com.google.android.gm.tasks.provider;com.google.android.gm.email.notifier: com.android.email.provider.EmailProvider
11-24 11:21:31.128 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 11 lines
11-24 11:21:32.746 556 750 I chatty : uid=1000(system) EventThread expire 55 lines
11-24 11:21:35.104 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 11 lines
11-24 11:21:59.476 1575 4117 I chatty : uid=1000(system) Binder:1575_5 expire 12 lines
11-24 11:22:22.387 1575 11677 I chatty : uid=1000(system) Binder:1575_1B expire 13 lines
11-24 11:23:01.710 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 10 lines
11-24 11:24:24.807 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 11:24:24.822 3924 3924 V KeyguardDisplayManager: show
11-24 11:24:27.079 1575 11343 I chatty : uid=1000(system) Binder:1575_1A expire 11 lines
11-24 11:24:29.497 1575 1782 I chatty : uid=1000(system) ActivityManager expire 24 lines
11-24 11:24:34.870 16222 16247 D ActivityThread: Loading provider com.google.android.gmail.provider;com.android.mail.notifier;com.google.android.gm.email.provider;com.google.android.gm.tasks.provider;com.google.android.gm.email.notifier: com.android.email.provider.EmailProvider
11-24 11:26:15.935 1575 5944 I chatty : uid=1000(system) Binder:1575_10 expire 13 lines
11-24 11:28:24.120 1575 4391 I chatty : uid=1000(system) backup expire 49 lines
11-24 11:28:26.681 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 10 lines
11-24 11:28:27.318 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 10 lines
11-24 11:28:29.395 1575 4551 I chatty : uid=1000(system) Binder:1575_C expire 10 lines
11-24 11:28:30.211 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 12 lines
11-24 11:29:49.118 1575 4026 I chatty : uid=1000(system) Binder:1575_4 expire 19 lines
11-24 11:36:53.109 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 11:40:53.357 1575 3715 I chatty : uid=1000(system) InputReader expire 10 lines
11-24 11:40:53.383 1575 2058 I chatty : uid=1000(system) android.display expire 16 lines
11-24 11:40:54.592 556 750 I chatty : uid=1000(system) EventThread expire 10 lines
11-24 11:40:54.593 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 19 lines
11-24 11:40:58.085 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 12 lines
11-24 11:43:42.768 1575 4118 I chatty : uid=1000(system) Binder:1575_6 expire 13 lines
11-24 11:48:14.438 3924 3924 V KeyguardDisplayManager: hide
11-24 11:48:14.558 1575 8499 I chatty : uid=1000(system) Binder:1575_11 expire 13 lines
11-24 11:48:14.923 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 10 lines
11-24 11:48:16.343 1575 3714 I chatty : uid=1000(system) InputDispatcher expire 10 lines
11-24 11:48:16.677 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 12 lines
11-24 11:48:17.011 1575 1782 I chatty : uid=1000(system) ActivityManager expire 27 lines
11-24 11:48:18.830 1575 22228 I chatty : uid=1000(system) Binder:1575_1E expire 10 lines
11-24 11:48:24.557 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 38 lines
11-24 11:48:29.379 556 750 I chatty : uid=1000(system) EventThread expire 11 lines
11-24 11:48:51.787 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 12 lines
11-24 11:48:55.681 1575 31364 I chatty : uid=1000(system) Binder:1575_20 expire 14 lines
11-24 11:49:03.232 1575 1575 I chatty : uid=1000 system_server expire 12 lines
11-24 11:49:03.734 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
11-24 11:49:03.808 556 748 I chatty : uid=1000(system) EventThread expire 10 lines
11-24 11:49:04.147 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 11:49:04.158 3924 3924 V KeyguardDisplayManager: show
11-24 11:49:04.181 1575 1585 I chatty : uid=1000(system) Binder:1575_1 expire 10 lines
11-24 11:49:57.346 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 26 lines
11-24 11:49:57.379 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 22 lines
11-24 11:51:01.431 1575 3697 I chatty : uid=1000(system) UEventObserver expire 11 lines
11-24 11:55:52.836 1575 1774 I chatty : uid=1000(system) android.bg expire 13 lines
11-24 11:55:52.857 4077 4077 I chatty : uid=1000(system) com.motorola.process.system expire 10 lines
11-24 11:56:06.255 1575 1782 I chatty : uid=1000(system) ActivityManager expire 25 lines
11-24 11:58:14.106 1575 8500 I chatty : uid=1000(system) Binder:1575_12 expire 19 lines
11-24 11:58:14.128 1575 2058 I chatty : uid=1000(system) android.display expire 17 lines
11-24 11:58:14.306 3924 3924 V KeyguardDisplayManager: hide
11-24 11:58:16.654 1575 4617 I chatty : uid=1000(system) Binder:1575_E expire 23 lines
11-24 11:58:19.274 1575 1575 I chatty : uid=1000 system_server expire 10 lines
11-24 11:58:19.275 556 750 I chatty : uid=1000(system) EventThread expire 12 lines
11-24 11:58:20.153 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 11:58:20.165 3924 3924 V KeyguardDisplayManager: show
11-24 11:58:27.268 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 10 lines
11-24 11:58:31.279 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 26 lines
11-24 11:59:00.590 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 11:59:14.783 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 62 lines
11-24 11:59:20.055 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 36 lines
11-24 12:00:42.892 1575 3881 I chatty : uid=1000(system) WifiStateMachin expire 12 lines
11-24 12:06:06.013 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 16 lines
11-24 12:06:10.291 1575 1782 I chatty : uid=1000(system) ActivityManager expire 21 lines
11-24 12:06:12.798 556 750 I chatty : uid=1000(system) EventThread expire 27 lines
11-24 12:06:36.359 3924 3924 V KeyguardDisplayManager: hide
11-24 12:06:36.446 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 15 lines
11-24 12:06:51.531 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 12:06:51.534 1575 1586 I chatty : uid=1000(system) Binder:1575_2 expire 12 lines
11-24 12:06:51.595 3924 3924 V KeyguardDisplayManager: show
11-24 12:06:51.912 1575 8501 I chatty : uid=1000(system) Binder:1575_13 expire 16 lines
11-24 12:06:53.236 3924 3924 V KeyguardDisplayManager: hide
11-24 12:06:53.308 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 92 lines
11-24 12:06:54.051 1575 4233 I chatty : uid=1000(system) Binder:1575_7 expire 12 lines
11-24 12:07:37.194 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 19 lines
11-24 12:07:46.006 556 750 I chatty : uid=1000(system) EventThread expire 20 lines
11-24 12:08:15.914 1575 2058 I chatty : uid=1000(system) android.display expire 11 lines
11-24 12:08:55.239 3924 3924 V DeadZone: consuming errant click: (73.0,13.0)
11-24 12:08:55.627 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 45 lines
11-24 12:09:00.031 556 750 I chatty : uid=1000(system) EventThread expire 26 lines
11-24 12:09:00.597 1575 3715 I chatty : uid=1000(system) InputReader expire 14 lines
11-24 12:09:00.616 1575 1575 I chatty : uid=1000 system_server expire 14 lines
11-24 12:09:01.142 1575 2058 I chatty : uid=1000(system) android.display expire 11 lines
11-24 12:09:01.157 556 748 I chatty : uid=1000(system) EventThread expire 10 lines
11-24 12:09:01.422 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 12:09:01.431 3924 3924 V KeyguardDisplayManager: show
11-24 12:10:56.884 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 31 lines
11-24 12:10:56.918 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 34 lines
11-24 12:11:42.628 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
11-24 12:12:55.776 3924 3924 V KeyguardDisplayManager: hide
11-24 12:12:55.810 1575 4551 I chatty : uid=1000(system) Binder:1575_C expire 10 lines
11-24 12:12:57.131 1575 3697 I chatty : uid=1000(system) UEventObserver expire 13 lines
11-24 12:13:00.037 1575 2057 I chatty : uid=1000(system) android.io expire 12 lines
11-24 12:13:04.538 1575 1782 I chatty : uid=1000(system) ActivityManager expire 12 lines
11-24 12:13:09.436 1575 11341 I chatty : uid=1000(system) Binder:1575_18 expire 10 lines
11-24 12:13:37.714 1575 4548 I chatty : uid=1000(system) Binder:1575_B expire 19 lines
11-24 12:13:43.313 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 12:13:43.330 3924 3924 V KeyguardDisplayManager: show
11-24 12:14:11.260 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 17 lines
11-24 12:14:44.553 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 10 lines
11-24 12:19:11.466 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 20 lines
11-24 12:19:16.871 1575 1782 I chatty : uid=1000(system) ActivityManager expire 13 lines
11-24 12:19:38.616 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 16 lines
11-24 12:19:38.991 1575 2058 I chatty : uid=1000(system) android.display expire 17 lines
11-24 12:19:41.397 1575 11677 I chatty : uid=1000(system) Binder:1575_1B expire 13 lines
11-24 12:19:44.455 3924 3924 V KeyguardDisplayManager: hide
11-24 12:19:46.429 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 10 lines
11-24 12:19:50.084 556 750 I chatty : uid=1000(system) EventThread expire 10 lines
11-24 12:19:50.972 556 748 I chatty : uid=1000(system) EventThread expire 11 lines
11-24 12:19:55.257 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 12:19:55.277 3924 3924 V KeyguardDisplayManager: show
11-24 12:19:57.564 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 12 lines
11-24 12:23:52.808 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 12:23:53.175 1575 3881 I chatty : uid=1000(system) WifiStateMachin expire 10 lines
11-24 12:24:06.774 1575 1782 I chatty : uid=1000(system) ActivityManager expire 32 lines
11-24 12:24:32.366 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 36 lines
11-24 12:24:59.730 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 18 lines
11-24 12:28:35.310 1575 1585 I chatty : uid=1000(system) Binder:1575_1 expire 10 lines
11-24 12:30:08.098 1575 11342 I chatty : uid=1000(system) Binder:1575_19 expire 15 lines
11-24 12:31:29.909 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 14 lines
11-24 12:31:52.864 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 19 lines
11-24 12:38:45.843 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
11-24 12:38:50.521 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 14 lines
11-24 12:38:50.610 3924 3924 V KeyguardDisplayManager: hide
11-24 12:38:50.613 1575 1575 I chatty : uid=1000 system_server expire 11 lines
11-24 12:38:52.474 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 54 lines
11-24 12:38:52.671 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 18 lines
11-24 12:38:55.676 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 18 lines
11-24 12:38:56.445 1575 4118 I chatty : uid=1000(system) Binder:1575_6 expire 12 lines
11-24 12:39:11.707 556 750 I chatty : uid=1000(system) EventThread expire 23 lines
11-24 12:39:14.944 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 16 lines
11-24 12:39:21.182 1575 8499 I chatty : uid=1000(system) Binder:1575_11 expire 16 lines
11-24 12:39:26.527 1575 1782 I chatty : uid=1000(system) ActivityManager expire 24 lines
11-24 12:40:21.279 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 13 lines
11-24 12:40:30.716 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 12:40:30.723 556 750 I chatty : uid=1000(system) EventThread expire 13 lines
11-24 12:40:30.733 3924 3924 V KeyguardDisplayManager: show
11-24 12:40:30.804 1575 4117 I chatty : uid=1000(system) Binder:1575_5 expire 16 lines
11-24 12:41:09.404 1575 1586 I chatty : uid=1000(system) Binder:1575_2 expire 10 lines
11-24 12:43:14.153 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 12:43:39.586 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 38 lines
11-24 12:46:26.319 1575 3697 I chatty : uid=1000(system) UEventObserver expire 11 lines
11-24 12:46:30.099 1575 1774 I chatty : uid=1000(system) android.bg expire 10 lines
11-24 12:46:30.118 4077 4077 I chatty : uid=1000(system) com.motorola.process.system expire 10 lines
11-24 12:49:46.270 1575 31364 I chatty : uid=1000(system) Binder:1575_20 expire 10 lines
11-24 12:51:39.888 1575 1782 I chatty : uid=1000(system) ActivityManager expire 10 lines
11-24 12:53:39.690 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 17 lines
11-24 12:58:08.078 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 38 lines
11-24 12:58:43.897 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 12:58:49.039 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 40 lines
11-24 12:59:00.757 1575 1782 I chatty : uid=1000(system) ActivityManager expire 31 lines
11-24 13:07:45.762 1575 8501 I chatty : uid=1000(system) Binder:1575_13 expire 13 lines
11-24 13:12:22.429 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 13:13:55.707 1575 4417 I chatty : uid=1000(system) Binder:1575_A expire 11 lines
11-24 13:14:09.134 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 60 lines
11-24 13:17:26.938 1575 1782 I chatty : uid=1000(system) ActivityManager expire 43 lines
11-24 13:19:16.579 1575 3697 I chatty : uid=1000(system) UEventObserver expire 11 lines
11-24 13:20:44.422 1575 2058 I chatty : uid=1000(system) android.display expire 12 lines
11-24 13:21:56.472 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 12 lines
11-24 13:22:37.969 1575 11342 I chatty : uid=1000(system) Binder:1575_19 expire 10 lines
11-24 13:26:10.031 1575 22228 I chatty : uid=1000(system) Binder:1575_1E expire 14 lines
11-24 13:30:42.017 1575 11343 I chatty : uid=1000(system) Binder:1575_1A expire 10 lines
11-24 13:31:08.880 1575 11341 I chatty : uid=1000(system) Binder:1575_18 expire 15 lines
11-24 13:31:09.201 1575 1774 I chatty : uid=1000(system) android.bg expire 11 lines
11-24 13:31:52.980 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 10 lines
11-24 13:32:25.787 1575 8500 I chatty : uid=1000(system) Binder:1575_12 expire 12 lines
11-24 13:32:48.122 641 23138 W SocketClient: write error (Broken pipe)
11-24 13:32:50.122 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 10 lines
11-24 13:33:11.325 1575 1782 I chatty : uid=1000(system) ActivityManager expire 12 lines
11-24 13:33:21.454 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 10 lines
11-24 13:34:46.426 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 18 lines
11-24 13:36:07.072 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 13:36:07.420 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 32 lines
11-24 13:36:45.306 23835 23835 D ActivityThread: Loading provider com.whatsapp.provider.contact: com.whatsapp.contact.ContactProvider
11-24 13:36:45.986 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 11 lines
11-24 13:36:47.943 1575 1782 I chatty : uid=1000(system) ActivityManager expire 23 lines
11-24 13:36:53.976 4077 4077 I chatty : uid=1000(system) com.motorola.process.system expire 10 lines
11-24 13:39:12.655 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 12 lines
11-24 13:41:42.605 1575 4233 I chatty : uid=1000(system) Binder:1575_7 expire 11 lines
11-24 13:43:33.124 641 24241 W SocketClient: write error (Broken pipe)
11-24 13:43:33.406 1575 1782 I chatty : uid=1000(system) ActivityManager expire 10 lines
11-24 13:44:45.751 1575 3715 I chatty : uid=1000(system) InputReader expire 12 lines
11-24 13:44:45.777 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 13 lines
11-24 13:44:46.004 556 748 I chatty : uid=1000(system) EventThread expire 10 lines
11-24 13:44:56.198 556 750 I chatty : uid=1000(system) EventThread expire 11 lines
11-24 13:44:56.331 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 19 lines
11-24 13:44:56.384 3924 3924 V KeyguardDisplayManager: hide
11-24 13:44:56.958 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 10 lines
11-24 13:44:57.553 1575 4617 I chatty : uid=1000(system) Binder:1575_E expire 13 lines
11-24 13:44:57.555 1575 4026 I chatty : uid=1000(system) Binder:1575_4 expire 17 lines
11-24 13:44:58.466 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 10 lines
11-24 13:44:58.580 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 24 lines
11-24 13:45:00.469 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 10 lines
11-24 13:45:12.548 1575 4551 I chatty : uid=1000(system) Binder:1575_C expire 12 lines
11-24 13:45:15.944 1575 3881 I chatty : uid=1000(system) WifiStateMachin expire 16 lines
11-24 13:45:15.944 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 15 lines
11-24 13:45:17.509 1575 11677 I chatty : uid=1000(system) Binder:1575_1B expire 13 lines
11-24 13:45:17.509 1575 4417 I chatty : uid=1000(system) Binder:1575_A expire 14 lines
11-24 13:45:17.510 1575 4117 I chatty : uid=1000(system) Binder:1575_5 expire 11 lines
11-24 13:45:17.663 1575 1575 I chatty : uid=1000 system_server expire 11 lines
11-24 13:45:18.351 1575 3875 I chatty : uid=1000(system) NetworkPolicy expire 10 lines
11-24 13:45:28.658 1575 2058 I chatty : uid=1000(system) android.display expire 24 lines
11-24 13:45:33.031 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 14 lines
11-24 13:45:34.644 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 13:45:34.666 3924 3924 V KeyguardDisplayManager: show
11-24 13:45:39.854 23402 25140 E ActivityThread: Failed to find provider info for com.whatsapp.provider.phoneid
11-24 13:45:40.120 25144 25144 D ActivityThread: Loading provider com.whatsapp.provider.contact: com.whatsapp.contact.ContactProvider
11-24 13:45:40.395 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 18 lines
11-24 13:45:40.421 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 18 lines
11-24 13:45:44.708 1575 1782 I chatty : uid=1000(system) ActivityManager expire 43 lines
11-24 13:45:45.214 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 11 lines
11-24 13:46:14.128 1575 3697 I chatty : uid=1000(system) UEventObserver expire 10 lines
11-24 13:47:13.338 556 750 I chatty : uid=1000(system) EventThread expire 14 lines
11-24 13:47:13.909 3924 3924 V KeyguardDisplayManager: hide
11-24 13:47:14.123 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 34 lines
11-24 13:47:19.419 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 26 lines
11-24 13:47:19.470 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 11 lines
11-24 13:47:23.382 1575 1782 I chatty : uid=1000(system) ActivityManager expire 16 lines
11-24 13:47:26.630 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 11 lines
11-24 13:47:42.995 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 14 lines
11-24 13:47:43.184 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 10 lines
11-24 13:47:50.761 1575 1575 I chatty : uid=1000 system_server expire 10 lines
11-24 13:47:51.651 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 13:47:51.678 1575 4026 I chatty : uid=1000(system) Binder:1575_4 expire 10 lines
11-24 13:47:51.680 3924 3924 V KeyguardDisplayManager: show
11-24 13:51:51.970 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 10 lines
11-24 13:53:32.681 1575 8499 I chatty : uid=1000(system) Binder:1575_11 expire 12 lines
11-24 13:54:50.566 4077 4077 I chatty : uid=1000(system) com.motorola.process.system expire 10 lines
11-24 13:54:50.586 1575 11342 I chatty : uid=1000(system) Binder:1575_19 expire 15 lines
11-24 13:54:50.901 1575 1782 I chatty : uid=1000(system) ActivityManager expire 26 lines
11-24 13:57:13.975 1575 22228 I chatty : uid=1000(system) Binder:1575_1E expire 12 lines
11-24 13:57:13.978 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 11 lines
11-24 14:01:52.491 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 10 lines
11-24 14:06:22.186 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 10 lines
11-24 14:07:05.481 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 14:07:06.463 1575 1774 I chatty : uid=1000(system) android.bg expire 12 lines
11-24 14:07:07.629 1575 1575 I chatty : uid=1000 system_server expire 12 lines
11-24 14:07:08.000 3924 3924 V KeyguardDisplayManager: hide
11-24 14:07:08.067 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 11 lines
11-24 14:07:08.765 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 10 lines
11-24 14:07:08.797 1575 1782 I chatty : uid=1000(system) ActivityManager expire 30 lines
11-24 14:07:14.076 556 750 I chatty : uid=1000(system) EventThread expire 27 lines
11-24 14:07:15.803 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 47 lines
11-24 14:07:39.915 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 15 lines
11-24 14:08:02.960 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 11 lines
11-24 14:08:10.578 1575 11343 I chatty : uid=1000(system) Binder:1575_1A expire 11 lines
11-24 14:08:10.592 1575 5944 I chatty : uid=1000(system) Binder:1575_10 expire 10 lines
11-24 14:08:17.905 556 748 I chatty : uid=1000(system) EventThread expire 12 lines
11-24 14:08:18.217 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 14:08:18.230 3924 3924 V KeyguardDisplayManager: show
11-24 14:08:25.844 1575 2058 I chatty : uid=1000(system) android.display expire 11 lines
11-24 14:08:30.830 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 26 lines
11-24 14:08:40.510 3924 3924 V KeyguardDisplayManager: hide
11-24 14:08:42.476 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 30 lines
11-24 14:08:44.271 1575 4233 I chatty : uid=1000(system) Binder:1575_7 expire 15 lines
11-24 14:08:54.787 556 750 I chatty : uid=1000(system) EventThread expire 16 lines
11-24 14:08:56.785 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 28 lines
11-24 14:09:04.178 1575 1586 I chatty : uid=1000(system) Binder:1575_2 expire 17 lines
11-24 14:09:11.310 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
11-24 14:09:11.751 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 14:09:11.768 3924 3924 V KeyguardDisplayManager: show
11-24 14:09:17.877 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 13 lines
11-24 14:10:13.948 1575 3697 I chatty : uid=1000(system) UEventObserver expire 13 lines
11-24 14:10:30.496 1575 3715 I chatty : uid=1000(system) InputReader expire 10 lines
11-24 14:10:30.513 1575 2058 I chatty : uid=1000(system) android.display expire 49 lines
11-24 14:10:32.192 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 17 lines
11-24 14:10:32.760 556 748 I chatty : uid=1000(system) EventThread expire 10 lines
11-24 14:12:53.696 1575 1575 I chatty : uid=1000 system_server expire 12 lines
11-24 14:12:54.078 3924 3924 V KeyguardDisplayManager: hide
11-24 14:13:03.176 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 270 lines
11-24 14:13:03.186 556 750 I chatty : uid=1000(system) EventThread expire 120 lines
11-24 14:13:04.734 1575 1585 I chatty : uid=1000(system) Binder:1575_1 expire 10 lines
11-24 14:13:08.454 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 67 lines
11-24 14:13:36.586 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 46 lines
11-24 14:14:16.897 1575 1782 I chatty : uid=1000(system) ActivityManager expire 10 lines
11-24 14:14:54.648 1575 4118 I chatty : uid=1000(system) Binder:1575_6 expire 13 lines
11-24 14:14:57.061 1575 31364 I chatty : uid=1000(system) Binder:1575_20 expire 11 lines
11-24 14:15:48.507 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 11 lines
11-24 14:17:17.389 1575 8500 I chatty : uid=1000(system) Binder:1575_12 expire 11 lines
11-24 14:18:51.179 1575 4548 I chatty : uid=1000(system) Binder:1575_B expire 11 lines
11-24 14:18:52.868 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 16 lines
11-24 14:19:12.744 1575 1789 I chatty : uid=1000(system) ActivityManager expire 4 lines
11-24 14:20:17.869 1575 11341 I chatty : uid=1000(system) Binder:1575_18 expire 11 lines
11-24 14:21:49.504 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 11 lines
11-24 14:21:49.875 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 14:21:49.887 3924 3924 V KeyguardDisplayManager: show
11-24 14:21:49.903 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 182 lines
11-24 14:22:04.320 1575 1782 I chatty : uid=1000(system) ActivityManager expire 12 lines
11-24 14:22:21.711 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 16 lines
11-24 14:22:21.715 1575 2058 I chatty : uid=1000(system) android.display expire 14 lines
11-24 14:22:23.441 3924 3924 V KeyguardDisplayManager: hide
11-24 14:22:24.016 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 13 lines
11-24 14:22:25.413 556 750 I chatty : uid=1000(system) EventThread expire 86 lines
11-24 14:22:29.324 1575 1586 I chatty : uid=1000(system) Binder:1575_2 expire 21 lines
11-24 14:22:29.326 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 32 lines
11-24 14:22:44.622 1575 3697 I chatty : uid=1000(system) UEventObserver expire 11 lines
11-24 14:23:12.928 1575 3881 I chatty : uid=1000(system) WifiStateMachin expire 10 lines
11-24 14:23:12.929 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 24 lines
11-24 14:23:40.008 1575 11342 I chatty : uid=1000(system) Binder:1575_19 expire 10 lines
11-24 14:25:45.101 1575 4117 I chatty : uid=1000(system) Binder:1575_5 expire 17 lines
11-24 14:26:07.706 1575 4617 I chatty : uid=1000(system) Binder:1575_E expire 10 lines
11-24 14:26:40.343 1575 22228 I chatty : uid=1000(system) Binder:1575_1E expire 14 lines
11-24 14:27:40.413 1575 11677 I chatty : uid=1000(system) Binder:1575_1B expire 17 lines
11-24 14:29:23.041 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 23 lines
11-24 14:30:00.092 1575 3894 I chatty : uid=1000(system) onProviders.ECP expire 2 lines
11-24 14:30:37.286 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.startDataOutOfService:443 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:220
11-24 14:30:37.487 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 10 lines
11-24 14:30:37.536 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.stopDataOutOfService:447 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:224
11-24 14:30:47.789 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 71 lines
11-24 14:30:52.332 1575 1782 I chatty : uid=1000(system) ActivityManager expire 10 lines
11-24 14:31:25.706 1575 2058 I chatty : uid=1000(system) android.display expire 14 lines
11-24 14:31:25.712 556 748 I chatty : uid=1000(system) EventThread expire 11 lines
11-24 14:31:25.728 556 750 I chatty : uid=1000(system) EventThread expire 20 lines
11-24 14:31:26.050 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 14:31:26.062 3924 3924 V KeyguardDisplayManager: show
11-24 14:31:26.181 1575 4551 I chatty : uid=1000(system) Binder:1575_C expire 14 lines
11-24 14:31:29.933 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 11 lines
11-24 14:31:54.888 1575 8501 I chatty : uid=1000(system) Binder:1575_13 expire 13 lines
11-24 14:32:02.974 1575 3697 I chatty : uid=1000(system) UEventObserver expire 14 lines
11-24 14:32:02.975 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 10 lines
11-24 14:35:15.193 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 56 lines
11-24 14:35:18.456 1575 1575 I chatty : uid=1000 system_server expire 13 lines
11-24 14:35:18.966 3924 3924 V KeyguardDisplayManager: hide
11-24 14:35:19.473 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 16 lines
11-24 14:35:19.474 1575 1782 I chatty : uid=1000(system) ActivityManager expire 10 lines
11-24 14:35:22.478 1575 4118 I chatty : uid=1000(system) Binder:1575_6 expire 11 lines
11-24 14:35:30.679 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 11 lines
11-24 14:35:30.693 1575 3714 I chatty : uid=1000(system) InputDispatcher expire 10 lines
11-24 14:35:32.092 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 12 lines
11-24 14:35:46.599 1575 1585 I chatty : uid=1000(system) Binder:1575_1 expire 15 lines
11-24 14:35:49.905 1575 4233 I chatty : uid=1000(system) Binder:1575_7 expire 10 lines
11-24 14:35:54.442 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 20 lines
11-24 14:36:10.506 1575 1788 I chatty : uid=1000(system) android.ui expire 7 lines
11-24 14:36:13.166 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 14:36:13.179 3924 3924 V KeyguardDisplayManager: show
11-24 14:37:01.130 1575 3715 I chatty : uid=1000(system) InputReader expire 10 lines
11-24 14:37:01.146 1575 2058 I chatty : uid=1000(system) android.display expire 10 lines
11-24 14:37:03.236 556 750 I chatty : uid=1000(system) EventThread expire 28 lines
11-24 14:37:07.976 1575 1575 I chatty : uid=1000 system_server expire 10 lines
11-24 14:37:08.279 3924 3924 V KeyguardDisplayManager: hide
11-24 14:37:08.357 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 63 lines
11-24 14:37:18.934 1575 4026 I chatty : uid=1000(system) Binder:1575_4 expire 16 lines
11-24 14:37:23.186 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 14:37:23.201 3924 3924 V KeyguardDisplayManager: show
11-24 14:40:24.815 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 14:40:30.716 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 12 lines
11-24 14:40:33.518 3924 3924 V KeyguardDisplayManager: hide
11-24 14:40:35.504 1575 1782 I chatty : uid=1000(system) ActivityManager expire 15 lines
11-24 14:42:32.542 1575 31364 I chatty : uid=1000(system) Binder:1575_20 expire 16 lines
11-24 14:43:05.272 1633 1633 I ActivityThread: Removing dead content provider:android.content.ContentProviderProxy@9896f10
11-24 14:43:08.909 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 89 lines
11-24 14:43:12.581 556 750 I chatty : uid=1000(system) EventThread expire 44 lines
11-24 14:43:32.728 1575 8500 I chatty : uid=1000(system) Binder:1575_12 expire 10 lines
11-24 14:43:45.565 1575 2058 I chatty : uid=1000(system) android.display expire 34 lines
11-24 14:44:26.722 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 13 lines
11-24 14:44:29.469 1575 11343 I chatty : uid=1000(system) Binder:1575_1A expire 11 lines
11-24 14:45:20.392 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 12 lines
11-24 14:45:26.796 1575 8499 I chatty : uid=1000(system) Binder:1575_11 expire 27 lines
11-24 14:46:29.607 1575 4617 I chatty : uid=1000(system) Binder:1575_E expire 15 lines
11-24 14:47:29.674 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 13 lines
11-24 14:49:12.369 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 14:49:12.381 3924 3924 V KeyguardDisplayManager: show
11-24 14:49:43.609 1575 3697 I chatty : uid=1000(system) UEventObserver expire 26 lines
11-24 14:49:43.610 1575 11341 I chatty : uid=1000(system) Binder:1575_18 expire 19 lines
11-24 14:49:43.613 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 90 lines
11-24 14:51:16.022 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='null' fromServiceState=true
11-24 14:51:16.022 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to
11-24 14:51:16.054 1575 1575 I chatty : uid=1000 system_server expire 13 lines
11-24 14:51:16.091 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.startDataOutOfService:443 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:220
11-24 14:51:16.140 4091 4091 D MccTable: updateMccMncConfiguration mccmnc='310260' fromServiceState=true
11-24 14:51:16.141 4091 4091 D MccTable: updateMccMncConfiguration defaultMccMnc=310260
11-24 14:51:16.141 4091 4091 D MccTable: updateMccMncConfiguration: mcc=310, mnc=260
11-24 14:51:16.141 4091 4091 D MccTable: WIFI_COUNTRY_CODE set to us
11-24 14:51:16.172 4549 4549 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:905 android.content.ContextWrapper.sendBroadcast:421 com.motorola.bach.modemstats.MPhoneStateListener.onDataServiceChanged:456 com.motorola.bach.modemstats.MPhoneStateListener.stopDataOutOfService:447 com.motorola.bach.modemstats.MPhoneStateListener.onServiceStateChanged:224
11-24 14:51:16.242 1575 4417 I chatty : uid=1000(system) Binder:1575_A expire 21 lines
11-24 14:51:16.326 1575 4551 I chatty : uid=1000(system) Binder:1575_C expire 16 lines
11-24 14:51:16.367 1575 1782 I chatty : uid=1000(system) ActivityManager expire 11 lines
11-24 14:53:28.407 556 750 I chatty : uid=1000(system) EventThread expire 226 lines
11-24 14:53:28.722 3924 3924 V KeyguardDisplayManager: hide
11-24 14:53:28.756 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 19 lines
11-24 14:53:28.812 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 415 lines
11-24 14:53:30.078 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 12 lines
11-24 14:54:05.286 1575 5944 I chatty : uid=1000(system) Binder:1575_10 expire 12 lines
11-24 14:54:16.824 1575 11342 I chatty : uid=1000(system) Binder:1575_19 expire 11 lines
11-24 14:54:20.167 1575 1782 I chatty : uid=1000(system) ActivityManager expire 17 lines
11-24 15:00:13.003 556 748 I chatty : uid=1000(system) EventThread expire 11 lines
11-24 15:02:53.341 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 13 lines
11-24 15:07:55.611 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 10 lines
11-24 15:12:22.984 1575 4617 I chatty : uid=1000(system) Binder:1575_E expire 15 lines
11-24 15:12:35.291 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 15:12:35.307 3924 3924 V KeyguardDisplayManager: show
11-24 15:12:39.951 1575 1782 I chatty : uid=1000(system) ActivityManager expire 28 lines
11-24 15:15:38.942 1575 4417 I chatty : uid=1000(system) Binder:1575_A expire 13 lines
11-24 15:17:56.552 1575 8500 I chatty : uid=1000(system) Binder:1575_12 expire 10 lines
11-24 15:17:59.282 1575 3881 I chatty : uid=1000(system) WifiStateMachin expire 10 lines
11-24 15:17:59.282 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 17 lines
11-24 15:17:59.318 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 10 lines
11-24 15:18:09.764 1575 22228 I chatty : uid=1000(system) Binder:1575_1E expire 16 lines
11-24 15:19:24.455 1575 3697 I chatty : uid=1000(system) UEventObserver expire 11 lines
11-24 15:19:24.456 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 13 lines
11-24 15:20:12.856 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 16 lines
11-24 15:20:20.332 1575 1586 I chatty : uid=1000(system) Binder:1575_2 expire 15 lines
11-24 15:20:20.334 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 12 lines
11-24 15:20:20.334 1575 11774 I chatty : uid=1000(system) Binder:1575_1C expire 12 lines
11-24 15:20:20.361 1575 5944 I chatty : uid=1000(system) Binder:1575_10 expire 10 lines
11-24 15:20:20.443 1575 4117 I chatty : uid=1000(system) Binder:1575_5 expire 12 lines
11-24 15:20:26.156 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 15 lines
11-24 15:20:51.557 1575 4026 I chatty : uid=1000(system) Binder:1575_4 expire 22 lines
11-24 15:20:51.723 1575 8501 I chatty : uid=1000(system) Binder:1575_13 expire 13 lines
11-24 15:22:29.018 1575 4548 I chatty : uid=1000(system) Binder:1575_B expire 12 lines
11-24 15:23:18.308 8703 8753 D ActivityThread: Loading provider com.google.android.gmail.provider;com.android.mail.notifier;com.google.android.gm.email.provider;com.google.android.gm.tasks.provider;com.google.android.gm.email.notifier: com.android.email.provider.EmailProvider
11-24 15:23:18.391 1575 1782 I chatty : uid=1000(system) ActivityManager expire 34 lines
11-24 15:23:18.596 1575 4551 I chatty : uid=1000(system) Binder:1575_C expire 13 lines
11-24 15:23:23.388 4077 4077 I chatty : uid=1000(system) com.motorola.process.system expire 10 lines
11-24 15:23:43.058 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 15:24:18.995 1575 2058 I chatty : uid=1000(system) android.display expire 10 lines
11-24 15:24:19.563 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 16 lines
11-24 15:24:20.150 3924 3924 V KeyguardDisplayManager: hide
11-24 15:24:21.544 1575 5944 I chatty : uid=1000(system) Binder:1575_10 expire 10 lines
11-24 15:24:21.560 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 13 lines
11-24 15:24:22.222 1575 3719 I chatty : uid=1000(system) Binder:1575_3 expire 16 lines
11-24 15:24:25.670 3924 3924 V DeadZone: consuming errant click: (658.0,24.0)
11-24 15:24:26.909 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 11 lines
11-24 15:24:27.677 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 10 lines
11-24 15:24:27.906 692 9322 E SchedPolicy: sched_setscheduler failed: tid 9322, errno=1
11-24 15:24:27.906 692 9323 E SchedPolicy: sched_setscheduler failed: tid 9323, errno=1
11-24 15:24:27.906 692 9324 E SchedPolicy: sched_setscheduler failed: tid 9324, errno=1
11-24 15:24:27.907 692 9325 E SchedPolicy: sched_setscheduler failed: tid 9325, errno=1
11-24 15:24:28.232 556 750 I chatty : uid=1000(system) EventThread expire 10 lines
11-24 15:24:37.198 1575 1575 I chatty : uid=1000 system_server expire 11 lines
11-24 15:24:38.031 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 15:24:38.043 3924 3924 V KeyguardDisplayManager: show
11-24 15:24:40.721 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 23 lines
11-24 15:24:43.642 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 18 lines
11-24 15:25:42.716 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 11 lines
11-24 15:25:42.747 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 12 lines
11-24 15:29:55.373 1575 1774 I chatty : uid=1000(system) android.bg expire 11 lines
11-24 15:29:59.873 1575 1782 I chatty : uid=1000(system) ActivityManager expire 15 lines
11-24 15:30:49.150 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 10 lines
11-24 15:31:04.052 1575 1585 I chatty : uid=1000(system) Binder:1575_1 expire 11 lines
11-24 15:33:42.300 1575 11677 I chatty : uid=1000(system) Binder:1575_1B expire 13 lines
11-24 15:34:14.534 1575 8499 I chatty : uid=1000(system) Binder:1575_11 expire 10 lines
11-24 15:34:14.714 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 15:34:14.916 1575 1782 I chatty : uid=1000(system) ActivityManager expire 66 lines
11-24 15:41:51.857 1575 4648 I chatty : uid=1000(system) Binder:1575_F expire 10 lines
11-24 15:42:03.395 1575 11341 I chatty : uid=1000(system) Binder:1575_18 expire 11 lines
11-24 15:45:49.120 1575 30911 I chatty : uid=1000(system) Binder:1575_1F expire 15 lines
11-24 15:48:56.149 1575 11342 I chatty : uid=1000(system) Binder:1575_19 expire 18 lines
11-24 15:48:56.381 1575 11343 I chatty : uid=1000(system) Binder:1575_1A expire 24 lines
11-24 15:49:01.730 4077 4077 I chatty : uid=1000(system) com.motorola.process.system expire 7 lines
11-24 15:49:02.307 1575 3697 I chatty : uid=1000(system) UEventObserver expire 12 lines
11-24 15:50:05.402 1575 4117 I chatty : uid=1000(system) Binder:1575_5 expire 13 lines
11-24 15:51:01.006 1575 4118 I chatty : uid=1000(system) Binder:1575_6 expire 11 lines
11-24 15:51:10.089 1575 4233 I chatty : uid=1000(system) Binder:1575_7 expire 14 lines
11-24 15:51:10.092 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 10 lines
11-24 15:55:36.277 1575 1585 I chatty : uid=1000(system) Binder:1575_1 expire 11 lines
11-24 15:57:23.526 1575 31364 I chatty : uid=1000(system) Binder:1575_20 expire 25 lines
11-24 16:00:49.366 1575 2058 I chatty : uid=1000(system) android.display expire 14 lines
11-24 16:00:53.501 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 18 lines
11-24 16:00:57.100 556 748 I chatty : uid=1000(system) EventThread expire 10 lines
11-24 16:00:57.803 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 10 lines
11-24 16:01:01.092 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 20 lines
11-24 16:01:50.527 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 16:01:52.102 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 10 lines
11-24 16:01:52.212 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 10 lines
11-24 16:02:39.389 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 10 lines
11-24 16:02:55.604 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 10 lines
11-24 16:02:55.735 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:02:55.771 1575 8566 I chatty : uid=1000(system) Binder:1575_14 expire 13 lines
11-24 16:02:57.772 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 14 lines
11-24 16:03:00.007 1575 1782 I chatty : uid=1000(system) ActivityManager expire 17 lines
11-24 16:03:25.530 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 13 lines
11-24 16:07:11.618 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:07:12.380 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:07:12.524 1575 11677 I chatty : uid=1000(system) Binder:1575_1B expire 10 lines
11-24 16:07:16.879 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:07:23.999 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 12 lines
11-24 16:08:00.817 1575 3715 I chatty : uid=1000(system) InputReader expire 11 lines
11-24 16:08:00.841 1575 2131 I chatty : uid=1000(system) PowerManagerSer expire 10 lines
11-24 16:08:01.175 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:08:05.810 1575 1782 I chatty : uid=1000(system) ActivityManager expire 22 lines
11-24 16:08:10.084 556 750 I chatty : uid=1000(system) EventThread expire 13 lines
11-24 16:08:21.498 1575 8861 I chatty : uid=1000(system) Binder:1575_16 expire 13 lines
11-24 16:08:24.474 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 22 lines
11-24 16:09:23.213 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:09:23.248 1575 8499 I chatty : uid=1000(system) Binder:1575_11 expire 12 lines
11-24 16:09:23.299 1575 11196 I chatty : uid=1000(system) Binder:1575_17 expire 20 lines
11-24 16:09:23.317 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:10:25.202 1575 1585 I chatty : uid=1000(system) Binder:1575_1 expire 11 lines
11-24 16:10:41.057 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 18 lines
11-24 16:14:25.435 1575 1774 I chatty : uid=1000(system) android.bg expire 11 lines
11-24 16:14:25.459 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:14:26.443 1575 1782 I chatty : uid=1000(system) ActivityManager expire 11 lines
11-24 16:15:46.524 1575 4548 I chatty : uid=1000(system) Binder:1575_B expire 10 lines
11-24 16:16:09.553 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:16:10.126 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:16:10.130 1575 5944 I chatty : uid=1000(system) Binder:1575_10 expire 18 lines
11-24 16:16:11.248 1575 22227 I chatty : uid=1000(system) Binder:1575_1D expire 18 lines
11-24 16:16:11.364 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:16:11.801 1575 4415 I chatty : uid=1000(system) Binder:1575_9 expire 15 lines
11-24 16:16:11.908 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 20 lines
11-24 16:16:11.957 1575 4617 I chatty : uid=1000(system) Binder:1575_E expire 15 lines
11-24 16:16:20.801 1575 4551 I chatty : uid=1000(system) Binder:1575_C expire 24 lines
11-24 16:16:20.873 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 64 lines
11-24 16:16:20.998 1575 11343 I chatty : uid=1000(system) Binder:1575_1A expire 10 lines
11-24 16:16:21.369 3924 3924 V KeyguardDisplayManager: hide
11-24 16:16:22.981 1575 2057 I chatty : uid=1000(system) android.io expire 6 lines
11-24 16:16:24.627 1575 1586 I chatty : uid=1000(system) Binder:1575_2 expire 11 lines
11-24 16:16:27.552 556 750 I chatty : uid=1000(system) EventThread expire 31 lines
11-24 16:16:44.057 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 10 lines
11-24 16:16:45.329 1575 4417 I chatty : uid=1000(system) Binder:1575_A expire 10 lines
11-24 16:16:52.442 1575 8567 I chatty : uid=1000(system) Binder:1575_15 expire 17 lines
11-24 16:18:00.897 3924 3924 V KeyguardStatusView: refresh statusview showing:true
11-24 16:18:00.910 3924 3924 V KeyguardDisplayManager: show
11-24 16:18:06.666 556 750 I chatty : uid=1000(system) EventThread expire 11 lines
11-24 16:18:08.182 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 31 lines
11-24 16:18:10.677 1575 1791 I chatty : uid=1000(system) batterystats-sy expire 14 lines
11-24 16:18:18.347 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 31 lines
11-24 16:18:18.391 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:18:18.462 1575 8501 I chatty : uid=1000(system) Binder:1575_13 expire 12 lines
11-24 16:18:18.519 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:18:30.888 1575 1782 I chatty : uid=1000(system) ActivityManager expire 13 lines
11-24 16:20:17.450 1575 3697 I chatty : uid=1000(system) UEventObserver expire 10 lines
11-24 16:21:27.389 644 1218 E NetlinkListener: recvmsg failed (No buffer space available)
11-24 16:21:40.825 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 14 lines
11-24 16:21:51.080 1575 4414 I chatty : uid=1000(system) Binder:1575_8 expire 14 lines
11-24 16:22:21.244 1575 1782 I chatty : uid=1000(system) ActivityManager expire 29 lines
11-24 16:22:34.716 1575 4616 I chatty : uid=1000(system) Binder:1575_D expire 21 lines
11-24 16:22:35.381 1575 22228 I chatty : uid=1000(system) Binder:1575_1E expire 13 lines
11-24 16:22:36.372 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:22:36.514 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:22:37.870 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:22:37.877 1575 8500 I chatty : uid=1000(system) Binder:1575_12 expire 10 lines
11-24 16:22:38.014 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:22:39.859 556 556 I chatty : uid=1000(system) /system/bin/surfaceflinger expire 20 lines
11-24 16:22:42.870 1575 2058 I chatty : uid=1000(system) android.display expire 11 lines
11-24 16:22:43.442 1575 1575 I chatty : uid=1000 system_server expire 16 lines
11-24 16:22:43.535 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:22:43.734 4077 4077 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:920 android.content.ContextWrapper.sendBroadcast:426 com.motorola.blur.service.blur.BSUtils.sendBroadcast:158 com.motorola.blur.service.blur.BSUtils.sendBroadcast:154 com.motorola.ccc.plm.pollingmanager.PollingManagerService$MyConnectivityReceiver.sendConnectivityIntent:596
11-24 16:22:44.015 3924 3924 V KeyguardDisplayManager: hide
11-24 16:22:44.056 1575 3887 I chatty : uid=1000(system) ConnectivitySer expire 12 lines
11-24 16:22:44.056 1575 3874 I chatty : uid=1000(system) NetworkStats expire 2 lines
11-24 16:22:44.478 1575 3714 I chatty : uid=1000(system) InputDispatcher expire 10 lines