-
Notifications
You must be signed in to change notification settings - Fork 633
/
Copy pathAndroid_2k.log
2000 lines (2000 loc) · 273 KB
/
Android_2k.log
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
03-17 16:13:38.811 1702 2395 D WindowManager: printFreezingDisplayLogsopening app wtoken = AppWindowToken{9f4ef63 token=Token{a64f992 ActivityRecord{de9231d u0 com.tencent.qt.qtl/.activity.info.NewsDetailXmlActivity t761}}}, allDrawn= false, startingDisplayed = false, startingMoved = false, isRelaunching = false
03-17 16:13:38.819 1702 8671 D PowerManagerService: acquire lock=233570404, flags=0x1, tag="View Lock", name=com.android.systemui, ws=null, uid=10037, pid=2227
03-17 16:13:38.820 1702 8671 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x23,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:38.839 1702 2113 V WindowManager: Skipping AppWindowToken{df0798e token=Token{78af589 ActivityRecord{3b04890 u0 com.tencent.qt.qtl/com.tencent.video.player.activity.PlayerActivity t761}}} -- going to hide
03-17 16:13:38.859 2227 2227 D TextView: visible is system.time.showampm
03-17 16:13:38.861 2227 2227 D TextView: mVisiblity.getValue is false
03-17 16:13:38.869 2227 2227 D TextView: visible is system.charge.show
03-17 16:13:38.871 2227 2227 D TextView: mVisiblity.getValue is false
03-17 16:13:38.875 2227 2227 D TextView: visible is system.call.count gt 0
03-17 16:13:38.877 2227 2227 D TextView: mVisiblity.getValue is false
03-17 16:13:38.881 2227 2227 D TextView: visible is system.message.count gt 0
03-17 16:13:38.882 2227 2227 D TextView: mVisiblity.getValue is false
03-17 16:13:38.887 2227 2227 D TextView: visible is system.ownerinfo.show
03-17 16:13:38.888 2227 2227 D TextView: mVisiblity.getValue is false
03-17 16:13:38.905 1702 10454 D PowerManagerService: release:lock=233570404, flg=0x0, tag="View Lock", name=com.android.systemui", ws=null, uid=10037, pid=2227
03-17 16:13:38.907 1702 10454 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x23,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:38.915 1702 3693 V WindowManager: Skipping AppWindowToken{df0798e token=Token{78af589 ActivityRecord{3b04890 u0 com.tencent.qt.qtl/com.tencent.video.player.activity.PlayerActivity t761}}} -- going to hide
03-17 16:13:38.928 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-24.0
03-17 16:13:38.928 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:38.935 1702 3697 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:38.936 1702 14638 D PowerManagerService: release:lock=189667585, flg=0x0, tag="*launch*", name=android", ws=WorkSource{10113}, uid=1000, pid=1702
03-17 16:13:38.938 1702 14638 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x23,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:38.954 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=40000500 mask=ffffffff oldVal=508 newVal=40000500 diff=40000008 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 720, 1280), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:38.955 2227 2227 I PhoneStatusBar: cancelAutohide
03-17 16:13:38.955 2227 2227 I PhoneStatusBar: notifyUiVisibilityChanged:vis=0x40000500, SystemUiVisibility=0x40000500
03-17 16:13:38.994 1702 27365 I WindowManager: Destroying surface Surface(name=SurfaceView - com.tencent.qt.qtl/com.tencent.video.player.activity.PlayerActivity) called by com.android.server.wm.WindowStateAnimator.destroyDeferredSurfaceLocked:942 com.android.server.wm.WindowManagerService.performDeferredDestroyWindow:3407 com.android.server.wm.Session.performDeferredDestroy:225 android.view.IWindowSession$Stub.onTransact:398 com.android.server.wm.Session.onTransact:136 android.os.Binder.execTransact:565 <bottom of call stack> <bottom of call stack>
03-17 16:13:39.006 1702 2639 I WindowManager: Destroying surface Surface(name=com.tencent.qt.qtl/com.tencent.video.player.activity.PlayerActivity) called by com.android.server.wm.WindowStateAnimator.destroySurface:2060 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:913 com.android.server.wm.WindowState.destroyOrSaveSurface:2201 com.android.server.wm.WindowManagerService.tryStartExitingAnimation:3299 com.android.server.wm.WindowManagerService.relayoutWindow:3179 com.android.server.wm.Session.relayout:215 android.view.IWindowSession$Stub.onTransact:286 com.android.server.wm.Session.onTransact:136
03-17 16:13:39.010 1702 2639 D PowerManagerService: release:lock=62617001, flg=0x0, tag="WindowManager", name=android", ws=WorkSource{10113}, uid=1000, pid=1702
03-17 16:13:39.011 1702 2639 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261843648, event=0, flags=0x1, uid=1000
03-17 16:13:39.011 1702 2639 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:39.069 1702 1815 I WindowManager: orientation change is complete, call stopFreezingDisplayLocked
03-17 16:13:39.070 1702 1815 I WindowManager: Screen frozen for +1s0ms due to Window{ca98d5 u0 com.tencent.qt.qtl/com.tencent.qt.qtl.activity.info.NewsDetailXmlActivity}
03-17 16:13:39.070 1702 1815 D WindowManager: startAnimation begin
03-17 16:13:39.079 1702 1815 D WindowManager: startAnimation end
03-17 16:13:39.080 1702 1815 D PowerManagerService: release:lock=226887582, flg=0x0, tag="SCREEN_FROZEN", name=android", ws=null, uid=1000, pid=1702
03-17 16:13:39.080 1702 1815 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:39.095 1702 8671 I AlarmManager: remove(PendingIntent{19abed0: PendingIntentRecord{a485420 com.tencent.qt.qtl broadcastIntent}}) changed bounds; rebatching
03-17 16:13:39.207 1702 1815 I WindowManager: rotationForOrientationLw(orient=1, last=0); user=0 USER_ROTATION_LOCKED
03-17 16:13:39.207 1702 1815 I WindowManager: Application requested orientation 1, got rotation 0 which has compatible metrics
03-17 16:13:40.142 1702 2618 D PowerManagerService: acquire lock=166121161, flags=0x1, tag="RILJ_ACK_WL", name=com.android.phone, ws=null, uid=1001, pid=2626
03-17 16:13:40.143 1702 2618 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.146 1702 2555 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.147 1702 2633 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.148 1702 2395 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.150 1702 2556 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.190 1702 2250 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.241 2626 8682 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:13:40.241 2626 8682 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:13:40.280 2626 2642 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:13:40.280 2626 2642 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:13:40.305 3664 3807 D TelephonyManager: getNeighboringCellInfo calling app is com.amap.android.ams
03-17 16:13:40.307 2626 23469 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:13:40.308 2626 23469 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:13:40.309 1702 2395 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.319 1702 17630 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.322 2626 2809 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:13:40.322 2626 2809 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:13:40.324 1702 2113 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.332 1702 27357 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.334 1702 27357 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.343 1702 3697 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.345 1702 14638 D PowerManagerService: release:lock=166121161, flg=0x0, tag="RILJ_ACK_WL", name=com.android.phone", ws=null, uid=1001, pid=2626
03-17 16:13:40.345 1702 14638 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:40.346 2626 2642 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:13:40.346 2626 2642 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:13:41.480 1702 27357 D PowerManagerService: release:lock=264232593, flg=0x0, tag="AudioMix", name=audioserver", ws=null, uid=1041, pid=0
03-17 16:13:41.481 1702 27357 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:41.481 1702 27357 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:13:41.614 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:13:41.614 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:13:41.614 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:13:45.307 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261849942, event=2, flags=0x0, uid=1000
03-17 16:13:45.308 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:45.310 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:45.316 1702 14640 D WindowManager: interceptKeyTq keycode=4 interactive=true keyguardActive=false policyFlags=2b000002 down true canceled false
03-17 16:13:45.317 1702 14640 D WindowManager: interceptKeyBeforeQueueing: key 4 , result : 1
03-17 16:13:45.317 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261849949, event=1, flags=0x0, uid=1000
03-17 16:13:45.318 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:45.358 2227 2227 I PhoneStatusBar: resumeSuspendedAutohide
03-17 16:13:45.361 1702 3137 D WindowManager: interceptKeyTq keycode=4 interactive=true keyguardActive=false policyFlags=2b000002 down false canceled false
03-17 16:13:45.362 1702 3137 D WindowManager: interceptKeyBeforeQueueing: key 4 , result : 1
03-17 16:13:45.362 2227 2318 V AudioManager: querySoundEffectsEnabled...
03-17 16:13:45.382 1702 3697 D PowerManagerService: acquire lock=189667585, flags=0x1, tag="*launch*", name=android, ws=WorkSource{10113}, uid=1000, pid=1702
03-17 16:13:45.382 1702 3697 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:45.382 1702 3697 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:13:45.402 1702 3694 V WindowManager: Skipping AppWindowToken{9f4ef63 token=Token{a64f992 ActivityRecord{de9231d u0 com.tencent.qt.qtl/.activity.info.NewsDetailXmlActivity t761}}} -- going to hide
03-17 16:13:45.405 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=508 mask=ffffffff oldVal=40000500 newVal=508 diff=40000008 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 720, 1280), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:45.408 2227 2227 I PhoneStatusBar: cancelAutohide
03-17 16:13:45.408 2227 2227 I PhoneStatusBar: notifyUiVisibilityChanged:vis=0x508, SystemUiVisibility=0x508
03-17 16:13:45.466 1702 17632 W ActivityManager: Bad activity token: android.os.BinderProxy@2bd79ce
03-17 16:13:45.466 1702 17632 W ActivityManager: java.lang.ClassCastException: android.os.BinderProxy cannot be cast to com.android.server.am.ActivityRecord$Token
03-17 16:13:45.512 1702 2639 V WindowManager: Skipping AppWindowToken{9f4ef63 token=Token{a64f992 ActivityRecord{de9231d u0 com.tencent.qt.qtl/.activity.info.NewsDetailXmlActivity t761}}} -- going to hide
03-17 16:13:45.598 1702 2556 D PowerManagerService: release:lock=189667585, flg=0x0, tag="*launch*", name=android", ws=WorkSource{10113}, uid=1000, pid=1702
03-17 16:13:45.599 1702 2556 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:45.599 1702 2556 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:13:45.626 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=40000500 mask=ffffffff oldVal=508 newVal=40000500 diff=40000008 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 720, 1280), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:45.627 2227 2227 I PhoneStatusBar: cancelAutohide
03-17 16:13:45.627 2227 2227 I PhoneStatusBar: notifyUiVisibilityChanged:vis=0x40000500, SystemUiVisibility=0x40000500
03-17 16:13:46.143 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261850777, event=2, flags=0x0, uid=1000
03-17 16:13:46.144 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:46.145 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.146 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.146 2227 2227 I PanelView: onTouchEvent::0, x=271.0, y=14.0
03-17 16:13:46.148 2227 2227 I PanelView: schedulePeek
03-17 16:13:46.153 1702 2113 V AudioManager: getRingtonePlayer...
03-17 16:13:46.155 2227 2227 D PhoneStatusBar: disable: < expand ICONS* alerts SYSTEM_INFO* back home recent clock navigationbar search quick_settings >
03-17 16:13:46.155 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.158 1702 2113 I NotificationManager: updateLightsLocked,mInCall =false,mScreenOn = true,ledNotification == null?true
03-17 16:13:46.158 1702 2113 I NotificationManager: updateLightsLocked,turn off notificationLight
03-17 16:13:46.159 1702 3137 V AudioManager: getRingtonePlayer...
03-17 16:13:46.161 1702 3137 I NotificationManager: updateLightsLocked,mInCall =false,mScreenOn = true,ledNotification == null?true
03-17 16:13:46.161 1702 3137 I NotificationManager: updateLightsLocked,turn off notificationLight
03-17 16:13:46.187 2227 2227 I StackScrollAlgorithm: overlapAmount:196.0, previousNotificationEnd:0.0, newYTranslation:-196.0, location:4, i:0, getTopPadding:333.0, getLocationOnScreen():-529
03-17 16:13:46.187 2227 2227 I StackScrollAlgorithm: state.clipTopAmount:180, i:0
03-17 16:13:46.187 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:true, getTopPadding=333.0, Translation=-529.0
03-17 16:13:46.187 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:true
03-17 16:13:46.232 1702 8289 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:46.240 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=40000600 mask=ffffffff oldVal=40000500 newVal=40000600 diff=300 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 720, 1280), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:46.240 2227 2227 I PhoneStatusBar: notifyUiVisibilityChanged:vis=0x40000600, SystemUiVisibility=0x40000600
03-17 16:13:46.241 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.242 2227 2227 I PanelView: onExpandingStarted
03-17 16:13:46.250 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.250 2227 2227 I PanelView: onTrackingStarted
03-17 16:13:46.277 1702 14640 I WindowManager: Destroying surface Surface(name=com.tencent.qt.qtl/com.tencent.qt.qtl.activity.info.NewsDetailXmlActivity) called by com.android.server.wm.WindowStateAnimator.destroySurface:2060 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:913 com.android.server.wm.WindowState.removeLocked:1554 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2739 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2702 com.android.server.wm.WindowManagerService.removeWindowLocked:2691 com.android.server.wm.WindowManagerService.removeWindowLocked:2560 com.android.server.wm.WindowManagerService.removeWindow:2555
03-17 16:13:46.285 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.290 2227 2227 I StackScrollAlgorithm: overlapAmount:146.0, previousNotificationEnd:0.0, newYTranslation:-146.0, location:4, i:0, getTopPadding:333.0, getLocationOnScreen():-479
03-17 16:13:46.290 2227 2227 I StackScrollAlgorithm: state.clipTopAmount:130, i:0
03-17 16:13:46.290 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:true, getTopPadding=333.0, Translation=-479.0
03-17 16:13:46.291 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:true
03-17 16:13:46.304 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.306 2227 2227 I StackScrollAlgorithm: overlapAmount:119.0, previousNotificationEnd:0.0, newYTranslation:-119.0, location:4, i:0, getTopPadding:333.0, getLocationOnScreen():-452
03-17 16:13:46.306 2227 2227 I StackScrollAlgorithm: state.clipTopAmount:103, i:0
03-17 16:13:46.306 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:true, getTopPadding=333.0, Translation=-452.0
03-17 16:13:46.306 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:true
03-17 16:13:46.317 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.318 2227 2227 I StackScrollAlgorithm: overlapAmount:85.0, previousNotificationEnd:0.0, newYTranslation:-85.0, location:4, i:0, getTopPadding:333.0, getLocationOnScreen():-418
03-17 16:13:46.318 2227 2227 I StackScrollAlgorithm: state.clipTopAmount:69, i:0
03-17 16:13:46.318 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:true, getTopPadding=333.0, Translation=-418.0
03-17 16:13:46.318 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:true
03-17 16:13:46.338 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.339 2227 2227 I StackScrollAlgorithm: overlapAmount:46.0, previousNotificationEnd:0.0, newYTranslation:-46.0, location:4, i:0, getTopPadding:333.0, getLocationOnScreen():-379
03-17 16:13:46.339 2227 2227 I StackScrollAlgorithm: state.clipTopAmount:30, i:0
03-17 16:13:46.339 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:true, getTopPadding=333.0, Translation=-379.0
03-17 16:13:46.339 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:true
03-17 16:13:46.350 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.352 2227 2227 I StackScrollAlgorithm: overlapAmount:5.0, previousNotificationEnd:0.0, newYTranslation:-5.0, location:4, i:0, getTopPadding:333.0, getLocationOnScreen():-338
03-17 16:13:46.352 2227 2227 I StackScrollAlgorithm: state.clipTopAmount:-1, i:0
03-17 16:13:46.352 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:true, getTopPadding=333.0, Translation=-338.0
03-17 16:13:46.352 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:true
03-17 16:13:46.368 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.370 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-293.0
03-17 16:13:46.370 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.388 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.389 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-250.0
03-17 16:13:46.389 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.394 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.397 2227 2227 I PhoneStatusBar: suspendAutohide
03-17 16:13:46.398 2227 2227 I PanelView: onTouchEvent::1, x=296.0, y=327.0
03-17 16:13:46.398 2227 2227 I PanelView: cancelPeek: false
03-17 16:13:46.398 2227 2227 I PanelView: flingToHeight: vel=2849.079, expand=true, target=553.0, collapseSpeedUpFactor=1.0, expandBecauseOfFalsing=false
03-17 16:13:46.398 2227 2227 I PanelView: onTrackingStopped: true
03-17 16:13:46.403 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-240.0
03-17 16:13:46.403 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.417 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-200.0
03-17 16:13:46.417 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.435 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-168.0
03-17 16:13:46.435 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.451 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-139.0
03-17 16:13:46.451 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.468 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-113.0
03-17 16:13:46.468 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.486 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-90.0
03-17 16:13:46.486 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.502 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-72.0
03-17 16:13:46.502 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.518 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-55.0
03-17 16:13:46.518 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.535 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-40.0
03-17 16:13:46.535 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.551 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-29.0
03-17 16:13:46.551 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.568 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-19.0
03-17 16:13:46.568 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.586 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-11.0
03-17 16:13:46.586 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.601 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-6.0
03-17 16:13:46.602 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.619 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-2.0
03-17 16:13:46.619 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.635 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-1.0
03-17 16:13:46.635 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.652 2227 2227 I PanelView: onExpandingFinished
03-17 16:13:46.653 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=0.0
03-17 16:13:46.653 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:46.654 1702 10454 W ActivityManager: Sending non-protected broadcast com.android.systemui.statusbar.visible.change from system 2227:com.android.systemui/u0a37 pkg com.android.systemui
03-17 16:13:46.671 2227 2318 I PhoneStatusBar: logNotificationVisibilityChanges runInThread start
03-17 16:13:46.671 1702 17633 I NotificationManager: onNotificationVisibilityChanged called
03-17 16:13:46.672 2227 2318 I PhoneStatusBar: logNotificationVisibilityChanges runInThread over
03-17 16:13:46.764 2227 2794 E KeyguardUpdateMonitor: isSimPinSecure mSimDatas is null or empty
03-17 16:13:46.765 2227 2794 W KeyguardUpdateMonitor: registerCallback not in UI.
03-17 16:13:46.765 2227 2794 W KeyguardUpdateMonitor: android.util.AndroidRuntimeException: Must execute in UI
03-17 16:13:46.765 2227 2794 V KeyguardUpdateMonitor: *** register callback for com.android.systemui.statusbar.policy.KeyguardMonitor@712d093
03-17 16:13:46.765 2227 2794 W KeyguardUpdateMonitor: registerCallback not in UI.
03-17 16:13:46.765 2227 2794 W KeyguardUpdateMonitor: android.util.AndroidRuntimeException: Must execute in UI
03-17 16:13:46.765 2227 2794 V KeyguardUpdateMonitor: *** unregister callback for null
03-17 16:13:46.778 2626 2839 D PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 phoneId=1
03-17 16:13:46.778 2626 2839 D PhoneInterfaceManager: [PhoneIntfMgr] getDataEnabled: subId=1 retVal=true
03-17 16:13:47.012 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261851646, event=2, flags=0x0, uid=1000
03-17 16:13:47.013 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:47.016 2227 2227 I PanelView: onInterceptTouchEvent MotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=317.0, y[0]=419.0, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=261851646, downTime=261851646, deviceId=3, source=0x1002 }, mBlockTouches=false
03-17 16:13:47.038 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=0.0
03-17 16:13:47.038 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.078 2227 2227 I PanelView: onInterceptTouchEvent MotionEvent { action=ACTION_UP, actionButton=0, id[0]=0, x[0]=317.0, y[0]=419.0, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=261851713, downTime=261851646, deviceId=3, source=0x1002 }, mBlockTouches=false
03-17 16:13:47.091 2227 2227 V AudioManager: playSoundEffect effectType: 0
03-17 16:13:47.091 2227 2227 V AudioManager: querySoundEffectsEnabled...
03-17 16:13:47.100 2227 2227 I PhoneStatusBar: animateCollapsePanels:flags=2, force=true, delayed=true, mExpandedVisible=true
03-17 16:13:47.101 2227 2227 I PanelView: onExpandingStarted
03-17 16:13:47.102 2227 2318 I PhoneStatusBar: logNotificationVisibilityChanges runInThread start
03-17 16:13:47.103 1702 3137 I NotificationManager: onNotificationVisibilityChanged called
03-17 16:13:47.104 2227 2318 I PhoneStatusBar: logNotificationVisibilityChanges runInThread over
03-17 16:13:47.113 1702 17622 I ActivityManager: START u0 {act=com.tencent.mobileqq.action.MAINACTIVITY flg=0x14000000 cmp=com.tencent.mobileqq/.activity.SplashActivity (has extras)} from uid 10111 on display 0
03-17 16:13:47.114 1702 17622 I ActivityManager: ActivityRecord info: ActivityInfo{d1c8e63 com.tencent.mobileqq.activity.SplashActivity}, euid: 0
03-17 16:13:47.124 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=40000500 mask=ffffffff oldVal=40000600 newVal=40000500 diff=300 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 720, 1280), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:47.124 2227 2227 I PhoneStatusBar: notifyUiVisibilityChanged:vis=0x40000500, SystemUiVisibility=0x40000500
03-17 16:13:47.138 1702 17622 D PowerManagerService: acquire lock=189667585, flags=0x1, tag="*launch*", name=android, ws=WorkSource{10111}, uid=1000, pid=1702
03-17 16:13:47.138 1702 17622 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:47.138 1702 17622 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:13:47.149 1702 10454 I NotificationManager: onNotificationClick called
03-17 16:13:47.149 1702 1702 I NotificationManager: cancelNotification,index:0
03-17 16:13:47.150 1702 1702 I NotificationManager: cancelNotification,cancelNotificationLocked,callingUid = 10037,callingPid = 2227
03-17 16:13:47.150 1702 1702 I NotificationManager: cancelNotificationLocked called,tell the app,reason = 1
03-17 16:13:47.150 1702 1702 I NotificationManager: cancelNotificationLocked:0|com.tencent.mobileqq|121|null|10111
03-17 16:13:47.150 1702 1702 I NotificationManager: cancelNotificationLocked,remove =com.tencent.mobileqq
03-17 16:13:47.150 1702 17633 E ActivityManager: applyOptionsLocked: Unknown animationType=0
03-17 16:13:47.224 2227 2227 I PanelView: cancelPeek: false
03-17 16:13:47.224 2227 2227 I PanelView: flingToHeight: vel=0.0, expand=false, target=0.0, collapseSpeedUpFactor=1.0, expandBecauseOfFalsing=false
03-17 16:13:47.254 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-6.0
03-17 16:13:47.254 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.270 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-21.0
03-17 16:13:47.270 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.287 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-43.0
03-17 16:13:47.287 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.289 1702 17633 I WindowManager: Taking screenshot from Surface with crop:[Rect(0, 48 - 720, 1208)], width:[432], height:[696], minLayer:[21085], maxLayer:[21085], inRotation:[false], rot:[0]
03-17 16:13:47.305 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-70.0
03-17 16:13:47.305 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.320 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-102.0
03-17 16:13:47.321 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.338 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-139.0
03-17 16:13:47.338 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.341 1702 1702 I NotificationManager: updateLightsLocked,mInCall =false,mScreenOn = true,ledNotification == null?true
03-17 16:13:47.341 1702 1702 I NotificationManager: updateLightsLocked,turn off notificationLight
03-17 16:13:47.357 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-178.0
03-17 16:13:47.357 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.371 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-222.0
03-17 16:13:47.371 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.396 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-270.0
03-17 16:13:47.397 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.402 2227 2227 I PhoneStatusBar: removeNotification:0|com.tencent.mobileqq|121|null|10111
03-17 16:13:47.402 2227 2227 I PhoneStatusBar: updateNotificationShade: total=0, active=0
03-17 16:13:47.403 2227 2227 I PhoneStatusBar: animateCollapsePanels:flags=0, force=false, delayed=false, mExpandedVisible=true
03-17 16:13:47.409 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=-321.0
03-17 16:13:47.409 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.410 1702 27357 I WindowManager: The change in focus caused us to need to do a layout begin
03-17 16:13:47.410 1702 27357 I WindowManager: The change in focus caused us to need to do a layout end
03-17 16:13:47.441 2227 2227 I StackScrollAlgorithm: overlapAmount:95.0, previousNotificationEnd:0.0, newYTranslation:-95.0, location:4, i:0, getTopPadding:333.0, getLocationOnScreen():-428
03-17 16:13:47.441 2227 2227 I StackScrollAlgorithm: state.clipTopAmount:79, i:0
03-17 16:13:47.441 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:true, getTopPadding=333.0, Translation=-428.0
03-17 16:13:47.441 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:true
03-17 16:13:47.448 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=508 mask=ffffffff oldVal=40000500 newVal=508 diff=40000008 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 720, 1280), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:47.449 2227 2227 I PhoneStatusBar: cancelAutohide
03-17 16:13:47.449 2227 2227 I PhoneStatusBar: notifyUiVisibilityChanged:vis=0x508, SystemUiVisibility=0x508
03-17 16:13:47.450 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:13:47.450 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=508 newVal=508 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:47.460 2227 2227 I StackScrollAlgorithm: overlapAmount:154.0, previousNotificationEnd:0.0, newYTranslation:-154.0, location:4, i:0, getTopPadding:333.0, getLocationOnScreen():-487
03-17 16:13:47.460 2227 2227 I StackScrollAlgorithm: state.clipTopAmount:138, i:0
03-17 16:13:47.460 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:true, getTopPadding=333.0, Translation=-487.0
03-17 16:13:47.460 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:true
03-17 16:13:47.471 2227 2227 I StackScrollAlgorithm: overlapAmount:213.0, previousNotificationEnd:0.0, newYTranslation:-213.0, location:4, i:0, getTopPadding:333.0, getLocationOnScreen():-546
03-17 16:13:47.471 2227 2227 I StackScrollAlgorithm: state.clipTopAmount:197, i:0
03-17 16:13:47.471 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:true, getTopPadding=333.0, Translation=-546.0
03-17 16:13:47.471 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:true
03-17 16:13:47.489 2227 2227 I PhoneStatusBar: updateNotificationShade: total=0, active=0
03-17 16:13:47.496 2227 2227 I PhoneStatusBar: removeNotificationChildren
03-17 16:13:47.496 2227 2227 I PanelView: onExpandingFinished
03-17 16:13:47.498 2227 2227 I PhoneStatusBar: updateNotificationShade: total=0, active=0
03-17 16:13:47.498 2227 2227 I PhoneStatusBar: removeNotificationChildren
03-17 16:13:47.499 1702 2555 W ActivityManager: Sending non-protected broadcast com.android.systemui.statusbar.visible.change from system 2227:com.android.systemui/u0a37 pkg com.android.systemui
03-17 16:13:47.499 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=0.0
03-17 16:13:47.499 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.517 1702 8671 D ActivityManager: Skipping, withExcluded: false, tr.intent:Intent { flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity bnds=[264,444][920,908] }
03-17 16:13:47.517 1702 8671 D ActivityManager: Skipping, withExcluded: false, tr.intent:Intent { act=android.intent.action.MAIN flg=0x10840000 cmp=com.android.incallui/.InCallActivity (has extras) }
03-17 16:13:47.517 1702 8671 D ActivityManager: Skipping, withExcluded: false, tr.intent:Intent { flg=0x18800000 cmp=com.tencent.mm/.plugin.base.stub.WXEntryActivity (has extras) }
03-17 16:13:47.517 1702 8671 D ActivityManager: Skipping, withExcluded: false, tr.intent:Intent { flg=0x10800000 cmp=com.tencent.qqmusic/.business.lockscreen.LockScreenActivity (has extras) }
03-17 16:13:47.518 1702 8671 D ActivityManager: Skipping, withExcluded: false, tr.intent:Intent { act=com.android.contacts.action.CHOOSE_SUB dat=tel:xxxxxxxxxxx flg=0x10808000 cmp=com.android.contacts/.ChooseSubActivity (has extras) }
03-17 16:13:47.518 1702 8671 D ActivityManager: Skipping, withExcluded: false, tr.intent:Intent { act=android.intent.action.VIEW dat=file:///storage/emulated/0/Tencent/QQfile_recv/b.apk typ=application/vnd.android.package-archive flg=0x10800000 cmp=com.android.packageinstaller/.PackageInstallerActivity (has extras) }
03-17 16:13:47.518 1702 8671 D ActivityManager: getRecentTasks: num=20,flags=62,totalTasks=46
03-17 16:13:47.518 1702 8671 D ActivityManager: getRecentTasks: topActivity=ComponentInfo{com.tencent.mobileqq/com.tencent.mobileqq.activity.SplashActivity}
03-17 16:13:47.525 1702 27353 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:47.547 1702 3694 D ActivityManager: Skipping, withExcluded: false, tr.intent:Intent { flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity bnds=[264,444][920,908] }
03-17 16:13:47.547 1702 3694 D ActivityManager: Skipping, withExcluded: false, tr.intent:Intent { act=android.intent.action.MAIN flg=0x10840000 cmp=com.android.incallui/.InCallActivity (has extras) }
03-17 16:13:47.547 1702 3694 D ActivityManager: Skipping, withExcluded: false, tr.intent:Intent { flg=0x18800000 cmp=com.tencent.mm/.plugin.base.stub.WXEntryActivity (has extras) }
03-17 16:13:47.547 1702 3694 D ActivityManager: getRecentTasks: num=10,flags=62,totalTasks=46
03-17 16:13:47.547 1702 3694 D ActivityManager: getRecentTasks: topActivity=ComponentInfo{com.tencent.mobileqq/com.tencent.mobileqq.activity.SplashActivity}
03-17 16:13:47.578 1702 8671 I NotificationManager: cancelNotificationWithTag pid 28601,uid = 10111,tag = null,pkg =com.tencent.mobileqq,id =121
03-17 16:13:47.578 1702 1702 I NotificationManager: cancelNotification,index:-1
03-17 16:13:47.585 1702 27353 I NotificationManager: cancelNotificationWithTag pid 28601,uid = 10111,tag = null,pkg =com.tencent.mobileqq,id =119
03-17 16:13:47.585 1702 1702 I NotificationManager: cancelNotification,index:-1
03-17 16:13:47.590 1702 2113 I NotificationManager: cancelNotificationWithTag pid 28601,uid = 10111,tag = null,pkg =com.tencent.mobileqq,id =122
03-17 16:13:47.598 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:13:47.599 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=508 newVal=508 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:47.599 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=40000500 mask=ffffffff oldVal=508 newVal=40000500 diff=40000008 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 720, 1280), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:47.600 2227 2227 I PhoneStatusBar: cancelAutohide
03-17 16:13:47.600 2227 2227 I PhoneStatusBar: notifyUiVisibilityChanged:vis=0x40000500, SystemUiVisibility=0x40000500
03-17 16:13:47.600 2227 2227 D PhoneStatusBar: makeExpandedInvisible: mExpandedVisible=true
03-17 16:13:47.600 2227 2227 I PanelView: closeQs
03-17 16:13:47.601 2227 2227 I PanelView: cancelPeek: false
03-17 16:13:47.601 2227 2227 I PanelView: instantCollapse
03-17 16:13:47.601 2227 2227 I PanelView: cancelPeek: false
03-17 16:13:47.601 2227 2227 I PanelView: closeQs
03-17 16:13:47.602 2227 2227 I PhoneStatusBar: resumeSuspendedAutohide
03-17 16:13:47.603 2227 2227 D PhoneStatusBar: disable: < expand icons* alerts system_info* back home recent clock navigationbar search quick_settings >
03-17 16:13:47.631 1702 2555 I NotificationManager: cancelNotificationWithTag pid 28601,uid = 10111,tag = null,pkg =com.tencent.mobileqq,id =123
03-17 16:13:47.631 1702 1702 I NotificationManager: cancelNotification,index:-1
03-17 16:13:47.632 1702 1702 I NotificationManager: cancelNotification,index:-1
03-17 16:13:47.638 1702 2618 W ActivityManager: getRunningAppProcesses: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:47.640 1702 3697 D PowerManagerService: release:lock=189667585, flg=0x0, tag="*launch*", name=android", ws=WorkSource{10111}, uid=1000, pid=1702
03-17 16:13:47.641 1702 3697 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:47.650 1702 17630 I NotificationManager: cancelNotificationWithTag pid 28601,uid = 10111,tag = null,pkg =com.tencent.mobileqq,id =129
03-17 16:13:47.651 1702 1702 I NotificationManager: cancelNotification,index:-1
03-17 16:13:47.681 1702 3694 I NotificationManager: cancelNotificationWithTag pid 28601,uid = 10111,tag = null,pkg =com.tencent.mobileqq,id =135
03-17 16:13:47.691 1702 1737 I NotificationManager: cancelNotificationWithTag pid 28601,uid = 10111,tag = null,pkg =com.tencent.mobileqq,id =140
03-17 16:13:47.694 1702 17632 I NotificationManager: cancelNotificationWithTag pid 28601,uid = 10111,tag = null,pkg =com.tencent.mobileqq,id =144
03-17 16:13:47.695 1702 1702 I NotificationManager: cancelNotification,index:-1
03-17 16:13:47.700 1702 1702 I NotificationManager: cancelNotification,index:-1
03-17 16:13:47.700 1702 1702 I NotificationManager: cancelNotification,index:-1
03-17 16:13:47.707 1702 27357 I NotificationManager: cancelNotificationWithTag pid 28601,uid = 10111,tag = null,pkg =com.tencent.mobileqq,id =193
03-17 16:13:47.707 1702 1702 I NotificationManager: cancelNotification,index:-1
03-17 16:13:47.709 1702 2113 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:47.709 1702 2113 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:13:47.713 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=0.0
03-17 16:13:47.713 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:13:47.735 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:13:47.736 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:47.743 2227 2794 W KeyguardUpdateMonitor: registerCallback not in UI.
03-17 16:13:47.743 2227 2794 W KeyguardUpdateMonitor: android.util.AndroidRuntimeException: Must execute in UI
03-17 16:13:47.743 2227 2794 V KeyguardUpdateMonitor: *** unregister callback for com.android.systemui.statusbar.policy.KeyguardMonitor@712d093
03-17 16:13:47.810 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:13:47.811 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:47.931 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:13:47.931 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:47.943 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:13:47.945 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:48.009 1702 10454 W ActivityManager: getTasks: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:48.019 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:13:48.020 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:13:48.032 1702 2639 I WindowManager: Destroying surface Surface(name=com.tencent.qt.qtl/com.tencent.qt.qtl.activity.main.MainTabActivity) called by com.android.server.wm.WindowStateAnimator.destroySurface:2060 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:913 com.android.server.wm.WindowState.destroyOrSaveSurface:2201 com.android.server.wm.AppWindowToken.destroySurfaces:374 com.android.server.wm.AppWindowToken.notifyAppStopped:400 com.android.server.wm.WindowManagerService.notifyAppStopped:4869 com.android.server.am.ActivityStack.activityStoppedLocked:1393 com.android.server.am.ActivityManagerService.activityStopped:7690
03-17 16:13:48.552 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:13:48.553 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:13:48.553 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:13:49.927 1702 2618 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:50.107 23650 23685 V AudioManager: isMusicActive...
03-17 16:13:50.662 23650 23689 V AudioManager: isMusicActive...
03-17 16:13:50.766 1702 3693 I ActivityManager: Start dump, calling from : pid=12782, uid=1000
03-17 16:13:51.865 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:13:51.866 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:13:51.866 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:13:54.046 1702 17633 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:54.640 1702 8289 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:54.676 1702 2107 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:54.735 1702 2106 D PowerManagerService: acquire lock=237091223, flags=0x1, tag="WiredAccessoryManager", name=android, ws=null, uid=1000, pid=1702
03-17 16:13:54.736 1702 2106 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:54.736 1702 2106 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:13:54.744 1702 1702 V AudioManager: setWiredDeviceConnectionState type: -2147483632 state: 0
03-17 16:13:54.745 1702 1702 D PowerManagerService: acquire lock=86152250, flags=0x1, tag="handleAudioEvent", name=android, ws=null, uid=1000, pid=1702
03-17 16:13:54.745 1702 1702 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:54.746 1702 1702 V AudioManager: setWiredDeviceConnectionState type: 4 state: 0
03-17 16:13:54.746 1702 1702 D PowerManagerService: release:lock=237091223, flg=0x0, tag="WiredAccessoryManager", name=android", ws=null, uid=1000, pid=1702
03-17 16:13:54.747 1702 1702 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:54.754 23650 23689 V AudioManager: isMusicActive...
03-17 16:13:54.877 1702 27357 D ActivityManager: ActivityManagerService,attachApplication,callingPid = 12787
03-17 16:13:55.046 1702 2395 W ActivityManager: getRunningAppProcesses: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:55.172 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:13:55.173 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:13:55.173 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:13:55.783 1702 2113 D PowerManagerService: acquire lock=219829192, flags=0x1, tag="AudioMix", name=audioserver, ws=null, uid=1041, pid=0
03-17 16:13:55.784 1702 2113 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:55.791 1702 2153 D PowerManagerService: release:lock=86152250, flg=0x0, tag="handleAudioEvent", name=android", ws=null, uid=1000, pid=1702
03-17 16:13:55.793 1702 2153 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:55.800 28601 28601 V AudioManager: isBluetoothA2dpOn...
03-17 16:13:55.804 23650 23689 V AudioManager: isMusicActive...
03-17 16:13:55.813 28601 28601 V AudioManager: isBluetoothScoOn...
03-17 16:13:55.821 2227 2514 V AudioManager: getLastAudibleStreamVolume treamType: 0
03-17 16:13:55.827 1702 17632 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:55.832 1702 1702 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:55.834 1702 1702 I NotificationManager: cancelNotification,index:-1
03-17 16:13:55.836 1702 10454 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:55.838 1702 3137 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:55.839 1702 2639 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:55.867 1702 3693 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:55.869 1702 14640 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:55.875 1702 2250 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:55.879 2227 2514 V AudioManager: getLastAudibleStreamVolume treamType: 1
03-17 16:13:55.882 2227 2514 V AudioManager: getLastAudibleStreamVolume treamType: 2
03-17 16:13:55.883 1702 27353 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:55.885 1702 2395 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:55.889 2227 2514 V AudioManager: getDevicesForStream streamType: 3
03-17 16:13:55.891 2227 2514 V AudioManager: getLastAudibleStreamVolume treamType: 3
03-17 16:13:55.893 2227 2514 V AudioManager: getDevicesForStream streamType: 3
03-17 16:13:55.894 1702 2639 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:55.896 1702 2113 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:55.896 2227 2514 V AudioManager: getLastAudibleStreamVolume treamType: 4
03-17 16:13:55.899 2227 2514 V AudioManager: getLastAudibleStreamVolume treamType: 5
03-17 16:13:55.904 2227 2514 V AudioManager: getLastAudibleStreamVolume treamType: 6
03-17 16:13:55.906 2227 2514 V AudioManager: getLastAudibleStreamVolume treamType: 7
03-17 16:13:55.921 2227 2514 V AudioManager: getLastAudibleStreamVolume treamType: 8
03-17 16:13:55.937 1702 1737 D ActivityManager: cleanUpApplicationRecord -- 12025
03-17 16:13:55.937 1702 1737 I ActivityManager: cleanUpApplicationRecordLocked, pid: 12025, restart: false
03-17 16:13:55.938 1702 1737 I ActivityManager: cleanUpApplicationRecordLocked, reset pid: 12025, euid: 0
03-17 16:13:55.940 1702 2639 I DisplayManagerService: stopWifiDisplayScanLocked record.mWifiDisplayScanRequested=false
03-17 16:13:55.940 1702 2639 I DisplayManagerService: stopWifiDisplayScanLocked mWifiDisplayScanRequestCount=0
03-17 16:13:55.941 30852 30852 V AudioManager: getMode...
03-17 16:13:55.944 30852 30852 V AudioManager: setSpeakerphoneOn on: true
03-17 16:13:55.948 30852 30852 I AudioManager: setSpeakerphoneOn on:true
03-17 16:13:56.080 1702 17621 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:56.177 1702 2644 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:56.261 1702 1737 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:13:58.485 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:13:58.485 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:13:58.485 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:13:58.796 1702 8303 D PowerManagerService: release:lock=219829192, flg=0x0, tag="AudioMix", name=audioserver", ws=null, uid=1041, pid=0
03-17 16:13:58.797 1702 8303 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:13:58.797 1702 8303 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:00.001 1702 2096 I AlarmManager: sending alarm Alarm{aa90550 type 3 when 509142332 PendingIntent{1749923: PendingIntentRecord{9600e20 android broadcastIntent}}},repeatInterval = 0,listenerTag =time_tick
03-17 16:14:00.002 1702 2096 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:00.002 1702 2096 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:00.003 1702 1702 V AlarmManager: Received TIME_TICK alarm; rescheduling
03-17 16:14:00.004 1702 1702 I AlarmManager: scheduleTimeTickEvent triggerAtTime = 509202333
03-17 16:14:00.022 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=0.0
03-17 16:14:00.022 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:14:00.039 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=0.0
03-17 16:14:00.039 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:14:00.049 2227 2227 D KeyguardUpdateMonitor: received broadcast android.intent.action.TIME_TICK
03-17 16:14:00.050 2227 2227 D KeyguardUpdateMonitor: handleTimeUpdate
03-17 16:14:00.349 1702 1702 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:00.349 1702 1702 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:01.800 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261866434, event=2, flags=0x0, uid=1000
03-17 16:14:01.801 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:01.964 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:01.964 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:01.978 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:01.978 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.045 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.045 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.056 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.057 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.066 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.066 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.080 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.080 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.090 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.090 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.107 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.107 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.121 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.122 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.136 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.136 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.147 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.148 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.155 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.156 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.164 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.164 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.181 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.182 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.195 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.195 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.213 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.214 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.602 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261867236, event=2, flags=0x0, uid=1000
03-17 16:14:02.603 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:02.765 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.765 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.781 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.781 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.818 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.818 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.833 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.834 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.913 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.913 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:02.932 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:02.933 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:03.115 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:03.116 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:03.133 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:03.134 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:03.219 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261867854, event=2, flags=0x0, uid=1000
03-17 16:14:03.220 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:03.281 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:03.281 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:03.294 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:03.294 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:03.294 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:03.306 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:03.307 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:03.671 1702 2639 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:03.691 1702 27357 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:03.871 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261868506, event=2, flags=0x0, uid=1000
03-17 16:14:03.872 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:04.010 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:04.010 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:04.307 28601 28601 V AudioManager: playSoundEffect effectType: 0
03-17 16:14:04.307 28601 28601 V AudioManager: querySoundEffectsEnabled...
03-17 16:14:04.310 1702 14638 W ActivityManager: getRunningAppProcesses: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:04.319 1702 2555 I WindowManager: Destroying surface Surface(name=PopupWindow:9b04807) called by com.android.server.wm.WindowStateAnimator.destroySurface:2060 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:913 com.android.server.wm.WindowState.removeLocked:1554 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2739 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2702 com.android.server.wm.WindowManagerService.removeWindowLocked:2691 com.android.server.wm.WindowManagerService.removeWindowLocked:2560 com.android.server.wm.WindowManagerService.removeWindow:2555
03-17 16:14:04.326 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:04.327 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:04.356 1702 2618 W ActivityManager: getRunningAppProcesses: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:04.360 1702 1736 I WindowManager: Destroying surface Surface(name=PopupWindow:317e46) called by com.android.server.wm.WindowStateAnimator.destroySurface:2060 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:913 com.android.server.wm.WindowState.removeLocked:1554 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2739 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2702 com.android.server.wm.WindowManagerService.removeWindowLocked:2691 com.android.server.wm.WindowManagerService.removeWindowLocked:2560 com.android.server.wm.WindowManagerService.removeWindow:2555
03-17 16:14:04.364 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:04.364 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:04.439 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:04.439 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:04.450 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:04.451 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:04.484 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:04.484 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:04.504 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:04.505 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:04.932 1702 27357 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:04.938 1702 3693 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:04.943 1702 17622 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:04.947 1702 3137 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:04.950 1702 14640 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:05.038 1702 8671 W ActivityManager: getRunningAppProcesses: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:05.460 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261870094, event=2, flags=0x0, uid=1000
03-17 16:14:05.461 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:05.557 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:05.557 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:05.571 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:05.572 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:05.616 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:05.616 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:05.642 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:05.643 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:05.705 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:05.706 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:05.724 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:05.724 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:05.848 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:05.849 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:05.871 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:05.872 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:05.956 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:05.957 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:05.971 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:05.972 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:05.979 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261870612, event=2, flags=0x0, uid=1000
03-17 16:14:05.979 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:06.010 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:06.010 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:06.010 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:06.043 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:06.044 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:06.057 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:06.057 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:06.064 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:06.065 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:06.107 1702 1737 I WindowManager: Destroying surface Surface(name=PopupWindow:d76a91d) called by com.android.server.wm.WindowStateAnimator.destroySurface:2060 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:913 com.android.server.wm.WindowState.removeLocked:1554 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2739 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2702 com.android.server.wm.WindowManagerService.removeWindowLocked:2691 com.android.server.wm.WindowManagerService.removeWindowLocked:2560 com.android.server.wm.WindowManagerService.removeWindow:2555
03-17 16:14:06.115 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:06.115 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:06.127 1702 8671 I WindowManager: Destroying surface Surface(name=PopupWindow:9b04807) called by com.android.server.wm.WindowStateAnimator.destroySurface:2060 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:913 com.android.server.wm.WindowState.removeLocked:1554 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2739 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2702 com.android.server.wm.WindowManagerService.removeWindowLocked:2691 com.android.server.wm.WindowManagerService.removeWindowLocked:2560 com.android.server.wm.WindowManagerService.removeWindow:2555
03-17 16:14:06.131 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:06.132 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:06.311 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:06.311 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:06.311 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:06.612 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:06.613 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:06.613 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:06.784 1702 17633 W ActivityManager: getRunningAppProcesses: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:06.913 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261871547, event=2, flags=0x0, uid=1000
03-17 16:14:06.913 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:06.916 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:06.916 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:06.916 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:07.615 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261872249, event=2, flags=0x0, uid=1000
03-17 16:14:07.616 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:07.697 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:07.698 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:07.710 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:07.711 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:07.747 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:07.748 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:07.763 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:07.765 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:07.859 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:07.860 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:07.878 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:07.879 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:08.056 1702 2113 D PowerManagerService: acquire lock=60373518, flags=0x1, tag="RILJ_ACK_WL", name=com.android.phone, ws=null, uid=1001, pid=2626
03-17 16:14:08.057 1702 2113 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.057 1702 2113 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:08.060 1702 17633 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.061 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:08.061 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:08.062 1702 10454 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.064 1702 8290 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.065 1702 27357 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.077 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:08.077 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:08.102 1702 14638 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.162 2626 2808 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:14:08.162 2626 2808 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:14:08.182 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261872817, event=2, flags=0x0, uid=1000
03-17 16:14:08.183 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.209 2626 2838 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:14:08.209 2626 2838 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:14:08.234 3664 3807 D TelephonyManager: getNeighboringCellInfo calling app is com.amap.android.ams
03-17 16:14:08.244 2626 2839 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:14:08.245 2626 2839 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:14:08.256 1702 2556 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.259 1702 17633 D PowerManagerService: release:lock=60373518, flg=0x0, tag="RILJ_ACK_WL", name=com.android.phone", ws=null, uid=1001, pid=2626
03-17 16:14:08.260 1702 17633 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.262 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:08.263 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:08.266 1702 8290 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.266 1702 8290 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:08.270 2626 8682 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:14:08.270 2626 8682 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:14:08.272 1702 27365 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.272 1702 27365 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:08.278 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:08.279 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:08.299 1702 2639 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.299 1702 2639 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:08.300 1702 17632 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.300 1702 17632 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:08.313 1702 1736 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:08.313 1702 1736 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:08.324 2626 23469 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:14:08.324 2626 23469 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:14:09.505 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261874138, event=2, flags=0x0, uid=1000
03-17 16:14:09.506 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:09.564 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:09.564 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:09.582 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:09.583 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:09.818 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:09.818 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:09.920 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:09.920 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:09.920 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:09.955 1702 2113 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:09.960 1702 27357 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:10.606 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261875239, event=2, flags=0x0, uid=1000
03-17 16:14:10.607 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:10.760 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:10.761 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:10.786 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:10.787 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:10.853 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:10.853 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:10.873 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:10.874 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:12.930 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:12.931 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:12.931 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:14.950 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261879585, event=2, flags=0x0, uid=1000
03-17 16:14:14.951 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:15.028 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:15.028 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:15.072 1702 2395 I WindowManager: Destroying surface Surface(name=PopupWindow:d76a91d) called by com.android.server.wm.WindowStateAnimator.destroySurface:2060 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:913 com.android.server.wm.WindowState.removeLocked:1554 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2739 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2702 com.android.server.wm.WindowManagerService.removeWindowLocked:2691 com.android.server.wm.WindowManagerService.removeWindowLocked:2560 com.android.server.wm.WindowManagerService.removeWindow:2555
03-17 16:14:15.076 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:15.076 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:15.087 1702 2555 I WindowManager: Destroying surface Surface(name=PopupWindow:9b04807) called by com.android.server.wm.WindowStateAnimator.destroySurface:2060 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:913 com.android.server.wm.WindowState.removeLocked:1554 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2739 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2702 com.android.server.wm.WindowManagerService.removeWindowLocked:2691 com.android.server.wm.WindowManagerService.removeWindowLocked:2560 com.android.server.wm.WindowManagerService.removeWindow:2555
03-17 16:14:15.091 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:15.091 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:15.941 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:15.942 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:15.942 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:16.223 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261880856, event=2, flags=0x0, uid=1000
03-17 16:14:16.224 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:16.320 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:16.321 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:16.332 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:16.332 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:16.368 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:16.369 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:16.386 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:16.386 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:16.451 1702 2395 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:16.568 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:16.569 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:16.585 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:16.585 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:16.769 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261881405, event=2, flags=0x0, uid=1000
03-17 16:14:16.770 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:16.800 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:16.800 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:16.819 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:16.820 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:17.018 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:17.018 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:17.036 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:17.036 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:17.957 1702 2556 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:18.961 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261883596, event=2, flags=0x0, uid=1000
03-17 16:14:18.962 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:19.038 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:19.039 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:19.061 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:19.062 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:19.248 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:19.248 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:19.248 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:19.311 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:19.311 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:19.550 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:19.550 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:19.550 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:19.830 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261884464, event=2, flags=0x0, uid=1000
03-17 16:14:19.831 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:19.898 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:19.898 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:20.108 23650 23685 V AudioManager: isMusicActive...
03-17 16:14:20.275 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:20.275 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:20.291 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:20.292 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:20.530 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:20.530 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:20.666 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261885300, event=2, flags=0x0, uid=1000
03-17 16:14:20.667 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:20.765 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:20.766 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:21.182 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261885816, event=2, flags=0x0, uid=1000
03-17 16:14:21.183 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:21.261 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:21.262 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:21.278 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:21.278 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:21.428 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:21.428 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:21.466 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:21.467 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:21.885 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261886520, event=2, flags=0x0, uid=1000
03-17 16:14:21.886 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:21.967 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:21.967 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:22.436 1702 2105 D PowerManagerService: userActivityNoUpdateLocked: eventTime=261887070, event=2, flags=0x0, uid=1000
03-17 16:14:22.437 1702 2105 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:22.502 28601 28601 V AudioManager: playSoundEffect effectType: 0
03-17 16:14:22.502 28601 28601 V AudioManager: querySoundEffectsEnabled...
03-17 16:14:22.516 1702 27357 I WindowManager: Destroying surface Surface(name=PopupWindow:9b04807) called by com.android.server.wm.WindowStateAnimator.destroySurface:2060 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:913 com.android.server.wm.WindowState.removeLocked:1554 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2739 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2702 com.android.server.wm.WindowManagerService.removeWindowLocked:2691 com.android.server.wm.WindowManagerService.removeWindowLocked:2560 com.android.server.wm.WindowManagerService.removeWindow:2555
03-17 16:14:22.521 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:22.522 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:22.534 1702 14638 I WindowManager: Destroying surface Surface(name=PopupWindow:317e46) called by com.android.server.wm.WindowStateAnimator.destroySurface:2060 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:913 com.android.server.wm.WindowState.removeLocked:1554 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2739 com.android.server.wm.WindowManagerService.removeWindowInnerLocked:2702 com.android.server.wm.WindowManagerService.removeWindowLocked:2691 com.android.server.wm.WindowManagerService.removeWindowLocked:2560 com.android.server.wm.WindowManagerService.removeWindow:2555
03-17 16:14:22.539 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:22.539 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:22.633 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:22.633 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:22.649 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:22.649 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:22.675 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:22.675 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:22.687 2227 2227 V PhoneStatusBar: setLightsOn(true)
03-17 16:14:22.688 2227 2227 I PhoneStatusBar: setSystemUiVisibility vis=0 mask=1 oldVal=40000500 newVal=40000500 diff=0 fullscreenStackVis=0 dockedStackVis=0, fullscreenStackBounds=Rect(0, 0 - 0, 0), dockedStackBounds=Rect(0, 0 - 0, 0)
03-17 16:14:23.457 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:23.458 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:23.458 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:24.640 1702 27357 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:24.967 1702 10454 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:24.971 1702 27365 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:24.976 1702 17632 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:24.979 1702 14640 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:25.046 1702 2250 W ActivityManager: getRunningAppProcesses: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:25.816 23650 23689 V AudioManager: isMusicActive...
03-17 16:14:27.045 1702 2096 I AlarmManager: sending alarm Alarm{19069ff type 3 when 509169377 PendingIntent{50303cc: PendingIntentRecord{e204f60 com.android.phone broadcastIntent}}},repeatInterval = 0,listenerTag =null
03-17 16:14:27.047 1702 2096 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:27.047 1702 2096 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:27.059 1702 17621 I ActivityManager: Killing 23484:com.android.calendar/u0a13 (adj 906): empty for 1810s
03-17 16:14:27.075 1702 1702 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:27.075 1702 1702 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:27.161 1702 17632 I DisplayManagerService: stopWifiDisplayScanLocked record.mWifiDisplayScanRequested=false
03-17 16:14:27.161 1702 17632 I DisplayManagerService: stopWifiDisplayScanLocked mWifiDisplayScanRequestCount=0
03-17 16:14:27.162 1702 3693 D ActivityManager: cleanUpApplicationRecord -- 5784
03-17 16:14:27.162 1702 3693 I ActivityManager: cleanUpApplicationRecordLocked, pid: 5784, restart: false
03-17 16:14:27.162 1702 3693 I ActivityManager: cleanUpApplicationRecordLocked, reset pid: 5784, euid: 0
03-17 16:14:27.169 1702 2618 I DisplayManagerService: stopWifiDisplayScanLocked record.mWifiDisplayScanRequested=false
03-17 16:14:27.169 1702 2618 I DisplayManagerService: stopWifiDisplayScanLocked mWifiDisplayScanRequestCount=0
03-17 16:14:27.170 1702 1736 D ActivityManager: cleanUpApplicationRecord -- 23484
03-17 16:14:27.170 1702 1736 I ActivityManager: cleanUpApplicationRecordLocked, pid: 23484, restart: false
03-17 16:14:27.171 1702 1736 I ActivityManager: cleanUpApplicationRecordLocked, reset pid: 23484, euid: 0
03-17 16:14:27.181 1702 3694 I DisplayManagerService: stopWifiDisplayScanLocked record.mWifiDisplayScanRequested=false
03-17 16:14:27.181 1702 3694 I DisplayManagerService: stopWifiDisplayScanLocked mWifiDisplayScanRequestCount=0
03-17 16:14:27.182 1702 1737 D ActivityManager: cleanUpApplicationRecord -- 5769
03-17 16:14:27.182 1702 1737 I ActivityManager: cleanUpApplicationRecordLocked, pid: 5769, restart: false
03-17 16:14:27.183 1702 1737 I ActivityManager: cleanUpApplicationRecordLocked, reset pid: 5769, euid: 0
03-17 16:14:29.484 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:29.484 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:29.484 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:32.794 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:32.795 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:32.795 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:33.096 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:33.096 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:33.097 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:33.691 1702 27357 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:34.490 1702 3697 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:34.987 1702 17630 W ActivityManager: getTasks: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:36.105 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:36.105 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:36.105 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:36.708 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:36.708 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:36.708 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:37.010 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:37.011 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:37.011 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:37.312 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:37.312 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:37.312 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:38.301 1702 27353 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:39.811 1702 14640 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:42.729 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:42.729 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:42.729 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:42.814 1702 8303 W ActivityManager: getRunningAppProcesses: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:43.030 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:43.030 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:43.031 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:47.846 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:47.846 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:47.846 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:50.111 23650 23685 V AudioManager: isMusicActive...
03-17 16:14:53.261 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:53.261 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:53.261 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:54.045 1702 17633 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:54.641 1702 2107 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:55.046 1702 14638 W ActivityManager: getRunningAppProcesses: caller 10111 does not hold REAL_GET_TASKS; limiting output
03-17 16:14:55.819 23650 23689 V AudioManager: isMusicActive...
03-17 16:14:56.126 1702 1737 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:56.126 1702 1737 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:56.326 1702 17632 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:14:56.327 1702 17632 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:14:56.571 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:56.571 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:56.571 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:14:56.872 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:14:56.872 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:14:56.872 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:15:00.001 1702 2096 I AlarmManager: sending alarm Alarm{c1705d3 type 3 when 509202333 PendingIntent{1749923: PendingIntentRecord{9600e20 android broadcastIntent}}},repeatInterval = 0,listenerTag =time_tick
03-17 16:15:00.004 1702 2096 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:00.004 1702 2096 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:00.005 1702 1702 V AlarmManager: Received TIME_TICK alarm; rescheduling
03-17 16:15:00.006 1702 1702 I AlarmManager: scheduleTimeTickEvent triggerAtTime = 509262332
03-17 16:15:00.026 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=0.0
03-17 16:15:00.026 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:15:00.050 2227 2227 I StackScrollAlgorithm: updateClipping isOverlap:false, getTopPadding=333.0, Translation=0.0
03-17 16:15:00.050 2227 2227 I StackScrollAlgorithm: updateDimmedActivatedHideSensitive overlap:false
03-17 16:15:00.062 2227 2227 D KeyguardUpdateMonitor: received broadcast android.intent.action.TIME_TICK
03-17 16:15:00.064 2227 2227 D KeyguardUpdateMonitor: handleTimeUpdate
03-17 16:15:00.099 1702 8671 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:15:00.354 1702 1702 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:00.354 1702 1702 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:00.939 1702 2558 D PowerManagerService: acquire lock=134680583, flags=0x1, tag="RILJ_ACK_WL", name=com.android.phone, ws=null, uid=1001, pid=2626
03-17 16:15:00.939 1702 2558 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:00.939 1702 2558 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:00.967 1702 3137 I AlarmManager: remove(PendingIntent{e4e2534: PendingIntentRecord{e204f60 com.android.phone broadcastIntent}}) changed bounds; rebatching
03-17 16:15:01.142 1702 17632 D PowerManagerService: release:lock=134680583, flg=0x0, tag="RILJ_ACK_WL", name=com.android.phone", ws=null, uid=1001, pid=2626
03-17 16:15:01.143 1702 17632 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:01.143 1702 17632 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:01.585 1702 1736 W ActivityManager: getRunningAppProcesses: caller 10113 does not hold REAL_GET_TASKS; limiting output
03-17 16:15:01.805 1702 27357 D PowerManagerService: acquire lock=134680583, flags=0x1, tag="RILJ_ACK_WL", name=com.android.phone, ws=null, uid=1001, pid=2626
03-17 16:15:01.806 1702 27357 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:01.806 1702 27357 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:01.811 1702 1737 D PowerManagerService: acquire lock=134680583, flags=0x1, tag="RILJ_ACK_WL", name=com.android.phone, ws=null, uid=1001, pid=2626
03-17 16:15:01.811 1702 1737 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:01.815 1702 2395 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:01.817 1702 27353 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:01.819 1702 3694 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:01.821 1702 2555 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:01.866 1702 2633 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:01.939 2626 2839 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:01.940 2626 2839 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:01.994 2626 22775 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:01.994 2626 22775 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:02.016 1702 2113 D PowerManagerService: release:lock=134680583, flg=0x0, tag="RILJ_ACK_WL", name=com.android.phone", ws=null, uid=1001, pid=2626
03-17 16:15:02.017 1702 2113 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:02.018 1702 2113 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:02.022 3664 3807 D TelephonyManager: getNeighboringCellInfo calling app is com.amap.android.ams
03-17 16:15:02.027 2626 2643 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:02.028 2626 2643 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:02.030 1702 14640 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:02.030 1702 14640 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:02.043 1702 2618 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:02.043 1702 2618 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:02.051 2626 2808 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:02.052 2626 2808 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:02.054 1702 8290 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:02.054 1702 8290 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:02.064 1702 17622 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:02.064 1702 17622 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:02.065 1702 3137 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:02.065 1702 3137 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:02.085 1702 17630 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:02.085 1702 17630 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:02.087 2626 2642 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:02.087 2626 2642 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:02.896 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:15:02.896 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:15:02.897 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:15:03.502 1702 2639 W ActivityManager: Unable to start service Intent { act=com.tencent.android.tpush.action.keepalive cmp=com.qqgame.hlddz/com.tencent.android.tpush.service.XGPushService } U=0: not found
03-17 16:15:05.340 1702 1737 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:05.340 1702 1737 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:05.346 1702 3694 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:15:05.346 1702 2555 W ActivityManager: getRunningAppProcesses: caller 10091 does not hold REAL_GET_TASKS; limiting output
03-17 16:15:05.382 1702 2633 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:05.382 1702 2633 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:05.482 1702 17630 D PowerManagerService: acquire lock=120758482, flags=0x1, tag="RILJ_ACK_WL", name=com.android.phone, ws=null, uid=1001, pid=2626
03-17 16:15:05.483 1702 17630 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:05.483 1702 17630 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:05.686 1702 8290 D PowerManagerService: release:lock=120758482, flg=0x0, tag="RILJ_ACK_WL", name=com.android.phone", ws=null, uid=1001, pid=2626
03-17 16:15:05.687 1702 8290 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:05.687 1702 8290 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:05.994 1702 8303 D PowerManagerService: acquire lock=120758482, flags=0x1, tag="RILJ_ACK_WL", name=com.android.phone, ws=null, uid=1001, pid=2626
03-17 16:15:05.995 1702 8303 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:05.995 1702 8303 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:06.000 1702 17632 D PowerManagerService: acquire lock=120758482, flags=0x1, tag="RILJ_ACK_WL", name=com.android.phone, ws=null, uid=1001, pid=2626
03-17 16:15:06.000 1702 17632 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.003 1702 2639 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.006 1702 14638 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.008 1702 8290 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.010 1702 2618 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.045 1702 2250 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.106 2626 22775 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:06.106 2626 22775 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:06.154 2626 2809 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:06.154 2626 2809 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:06.192 3664 3807 D TelephonyManager: getNeighboringCellInfo calling app is com.amap.android.ams
03-17 16:15:06.197 2626 23469 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:06.198 2626 23469 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:06.200 1702 3137 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.201 1702 17621 D PowerManagerService: release:lock=120758482, flg=0x0, tag="RILJ_ACK_WL", name=com.android.phone", ws=null, uid=1001, pid=2626
03-17 16:15:06.202 1702 17621 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.211 1702 27353 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.211 1702 27353 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:06.213 2626 2809 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:06.214 2626 2809 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:06.216 1702 10454 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.217 1702 10454 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:06.224 1702 3693 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.224 1702 3693 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:06.225 1702 2644 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.225 1702 2644 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:06.235 1702 2633 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:06.235 1702 2633 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:06.241 2626 2838 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:06.241 2626 2838 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:06.807 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:15:06.807 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:15:06.807 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:15:07.846 1702 8671 D PowerManagerService: acquire lock=120758482, flags=0x1, tag="RILJ_ACK_WL", name=com.android.phone, ws=null, uid=1001, pid=2626
03-17 16:15:07.847 1702 8671 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:07.847 1702 8671 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:07.853 1702 2395 D PowerManagerService: acquire lock=120758482, flags=0x1, tag="RILJ_ACK_WL", name=com.android.phone, ws=null, uid=1001, pid=2626
03-17 16:15:07.854 1702 2395 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:07.856 1702 3137 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:07.859 1702 17621 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:07.861 1702 1736 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:07.862 1702 27353 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:07.902 1702 2555 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:07.969 2626 2838 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:07.969 2626 2838 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:08.022 2626 2839 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:08.023 2626 2839 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:08.055 1702 3694 D PowerManagerService: release:lock=120758482, flg=0x0, tag="RILJ_ACK_WL", name=com.android.phone", ws=null, uid=1001, pid=2626
03-17 16:15:08.056 1702 3694 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:08.056 1702 3694 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:08.059 3664 3807 D TelephonyManager: getNeighboringCellInfo calling app is com.amap.android.ams
03-17 16:15:08.062 2626 2839 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:08.063 2626 2839 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:08.066 1702 2644 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x1,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:08.066 1702 2644 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:08.076 1702 2633 D PowerManagerService: ready=true,policy=3,wakefulness=1,wksummary=0x0,uasummary=0x1,bootcompleted=true,boostinprogress=false,waitmodeenable=false,mode=false,manual=38,auto=-1,adj=0.0userId=0
03-17 16:15:08.076 1702 2633 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-17 16:15:08.080 2626 3848 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:08.080 2626 3848 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:08.089 2626 2838 W PhoneInterfaceManager: shouldBlockLocation running ...
03-17 16:15:08.089 2626 2838 I PhoneInterfaceManager: shouldBlockLocation ret:false
03-17 16:15:11.325 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:15:11.325 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:15:11.325 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:15:15.843 1702 1820 I DisplayPowerController: HBM brightnessIn =38
03-17 16:15:15.844 1702 1820 I DisplayPowerController: HBM brightnessOut =38
03-17 16:15:15.844 1702 1820 D DisplayPowerController: Animating brightness: target=38, rate=200
03-17 16:15:18.834 1702 27357 W ActivityManager: getRunningAppProcesses: caller 10111 does not hold REAL_GET_TASKS; limiting output