-
Notifications
You must be signed in to change notification settings - Fork 0
/
logcat.txt
10334 lines (5167 loc) · 705 KB
/
logcat.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--------- beginning of main
03-21 00:40:28.159 1543 1551 I PerfService: PerfServiceNative_getPackName
03-21 00:40:28.160 718 1441 I libPerfService: perfGetLastBoostPid 18747
03-21 00:40:28.160 718 1441 D PerfServiceManager: [PerfService] getLastBoostPid 18747
03-21 00:40:28.160 718 1441 I libPerfService: perfGetLastBoostPid 18747
03-21 00:40:28.359 718 718 E WifiTrafficPoller: TRAFFIC_STATS_POLL true Token 1789 num clients 5
03-21 00:40:28.360 718 718 E WifiTrafficPoller: packet count Tx=402590 Rx=726058
03-21 00:40:28.670 217 379 D AALService: enableAALEvent: 0 -> 1
03-21 00:40:28.684 217 379 D AALService: Output backlight = 534/1023, CABC gain = 256
03-21 00:40:28.684 217 379 D AALService: Output backlight = 533/1023, CABC gain = 256
03-21 00:40:28.698 217 379 D AALService: enableAALEvent: 1 -> 0
03-21 00:40:29.161 1543 1551 I PerfService: PerfServiceNative_getPackName
03-21 00:40:29.162 718 1513 I libPerfService: perfGetLastBoostPid 18747
03-21 00:40:29.162 718 1513 D PerfServiceManager: [PerfService] getLastBoostPid 18747
03-21 00:40:29.162 718 1513 I libPerfService: perfGetLastBoostPid 18747
03-21 00:40:29.361 718 718 E WifiTrafficPoller: TRAFFIC_STATS_POLL true Token 1789 num clients 5
03-21 00:40:29.362 718 718 E WifiTrafficPoller: packet count Tx=402590 Rx=726058
03-21 00:40:29.423 718 1027 D InputReader: AP_PROF:AppLaunch_dispatchPtr:Down:470118756, ID:0, Index:-1190185160
03-21 00:40:29.423 718 1027 I PerfService: PerfServiceNative_boostEnableAsync:3
03-21 00:40:29.424 718 1049 I libPerfService: 3: set freq: 819000
--------- beginning of system
03-21 00:40:29.425 718 1026 D PowerManagerService: userActivityFromNative
03-21 00:40:29.425 718 1026 D PowerManagerService: userActivityNoUpdateLocked: eventTime=470118756, event=2, flags=0x0, uid=1000
03-21 00:40:29.425 718 1026 D PowerManagerNotifier: onUserActivity: event=2, uid=1000
03-21 00:40:29.425 718 1026 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x1, nextTimeout=470171756 (in 52997 ms)
03-21 00:40:29.425 718 1026 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:29.425 718 1026 I PowerManagerService: setBrightness mButtonLight 0.
03-21 00:40:29.426 718 1026 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x0, mUserActivitySummary=0x1, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:29.426 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=182.61954, y[0]=298.6267, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470118756, downTime=470118756, deviceId=2, source=0x1002 }
03-21 00:40:29.431 718 1049 I libPerfService: 3: set: 3
03-21 00:40:29.438 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=182.61954, y[0]=298.6267, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470118771, downTime=470118756, deviceId=2, source=0x1002 }
03-21 00:40:29.452 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=182.61954, y[0]=298.6267, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470118785, downTime=470118756, deviceId=2, source=0x1002 }
03-21 00:40:29.467 204 834 D SocketClient: SocketClient sendData done: 613 IfaceClass idle 1 4552293283166772
03-21 00:40:29.467 718 1033 D NetdConnector: RCV <- {613 IfaceClass idle 1 4552293283166772}
03-21 00:40:29.468 718 756 D NetworkManagement: onEvent:613 IfaceClass idle 1 4552293283166772:5
03-21 00:40:29.468 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=182.61954, y[0]=298.6267, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470118800, downTime=470118756, deviceId=2, source=0x1002 }
03-21 00:40:29.469 718 756 V ActivityManager: Broadcast: Intent { act=android.net.conn.DATA_ACTIVITY_CHANGE flg=0x10 (has extras) } ordered=true userid=-1 callerApp=ProcessRecord{15394b 718:system/1000}
03-21 00:40:29.472 15272 15272 D ActivityThread: BDC-Calling finishReceiver: IIntentReceiver=c252d40
03-21 00:40:29.475 718 756 V ActivityManager: Broadcast sticky: Intent { act=android.net.conn.DATA_ACTIVITY_CHANGE_CT flg=0x10 (has extras) } ordered=false userid=-1 callerApp=ProcessRecord{15394b 718:system/1000}
03-21 00:40:29.482 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=182.61954, y[0]=298.6267, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470118814, downTime=470118756, deviceId=2, source=0x1002 }
03-21 00:40:29.495 718 1027 D InputReader: AP_PROF:AppLaunch_dispatchPtr:Up:470118829, ID:0, Index:-1190181768
03-21 00:40:29.495 718 1027 I PerfService: PerfServiceNative_boostEnableTimeoutMsAsync:3, 100
03-21 00:40:29.498 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_UP, actionButton=0, id[0]=0, x[0]=182.61954, y[0]=298.6267, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470118829, downTime=470118756, deviceId=2, source=0x1002 }
03-21 00:40:29.500 1072 3487 V WallpaperService: Dispatch wallpaper command: 182, 298
03-21 00:40:29.501 18747 18747 D Launcher3: FastBitmapDrawable, setPressed,Processors:4
03-21 00:40:29.510 18747 18747 D SettingsInterface: from settings cache , name = sound_effects_enabled , value = 0
03-21 00:40:29.512 193 1031 I BufferQueueProducer: [com.android.launcher3/com.android.launcher3.Launcher](this:0xb8f59690,id:4065,api:1,p:18747,c:193) queueBuffer: fps=0.27 dur=7542.66 max=7089.69 min=452.97
03-21 00:40:29.513 718 734 I ActivityManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.tembac.extensionsTest/.MainActivity bnds=[123,269][240,400] (has extras)} from uid 10018 from pid 18747 on display 0
03-21 00:40:29.514 193 193 I SurfaceFlinger: [Built-in Screen (type:0)] fps:0.141304,dur:7076.94,max:7076.94,min:7076.94
03-21 00:40:29.514 718 734 V WindowManager: Looking for focus: 6 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:29.515 718 734 V WindowManager: findFocusedWindow: Found new focus @ 2 = Window{e973cf9 u0 com.android.launcher3/com.android.launcher3.Launcher}
03-21 00:40:29.518 217 379 D AALService: enableAALEvent: 0 -> 1
03-21 00:40:29.518 217 379 D AALService: Output backlight = 532/1023, CABC gain = 256
03-21 00:40:29.519 217 379 D AALService: Output backlight = 531/1023, CABC gain = 256
03-21 00:40:29.520 718 1049 I libPerfService: 1: set freq: 1300000
03-21 00:40:29.520 718 1049 I libPerfService: 1: set: 4
03-21 00:40:29.522 718 734 D PowerManagerService: acquireWakeLockInternal: lock=62844727, flags=0x1, tag="*launch*", ws=WorkSource{10090}, uid=1000, pid=718
03-21 00:40:29.522 718 734 D PowerManagerService: updateWakeLockSummaryLocked: mWakefulness=Awake, mWakeLockSummary=0x1
03-21 00:40:29.522 718 734 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x1, nextTimeout=470171756 (in 52900 ms)
03-21 00:40:29.522 718 734 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:29.522 718 734 I PowerManagerService: setBrightness mButtonLight 0.
03-21 00:40:29.522 718 734 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x1, mUserActivitySummary=0x1, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:29.523 718 734 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-21 00:40:29.523 718 734 D PowerManagerNotifier: onWakeLockAcquired: flags=1, tag="*launch*", packageName=android, ownerUid=1000, ownerPid=718, workSource=WorkSource{10090}
03-21 00:40:29.524 718 734 V WindowManager: Looking for focus: 6 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:29.524 718 734 V WindowManager: findFocusedWindow: Found new focus @ 2 = Window{e973cf9 u0 com.android.launcher3/com.android.launcher3.Launcher}
03-21 00:40:29.526 718 734 V WindowManager: Set focused app to: AppWindowToken{c3b727e token=Token{3137c39 ActivityRecord{960fc00 u0 com.tembac.extensionsTest/.MainActivity t527}}} old focus=AppWindowToken{4c93b69 token=Token{64679f0 ActivityRecord{6a51233 u0 com.android.launcher3/.Launcher t50}}} moveFocusNow=true
03-21 00:40:29.526 718 734 V WindowManager: Looking for focus: 6 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:29.527 718 734 V WindowManager: findFocusedWindow: Reached focused app=AppWindowToken{c3b727e token=Token{3137c39 ActivityRecord{960fc00 u0 com.tembac.extensionsTest/.MainActivity t527}}}
03-21 00:40:29.528 718 734 V WindowManager: Changing focus from Window{e973cf9 u0 com.android.launcher3/com.android.launcher3.Launcher} to null Callers=com.android.server.wm.WindowManagerService.setFocusedApp:4470 com.android.server.am.ActivityManagerService.setFocusedActivityLocked:2927 com.android.server.am.ActivityStackSupervisor.startActivityUncheckedLocked:2837 com.android.server.am.ActivityStackSupervisor.startActivityLocked:1821
03-21 00:40:29.528 718 734 D WindowManager: Input focus has changed to null
03-21 00:40:29.533 217 379 D AALService: enableAALEvent: 1 -> 0
03-21 00:40:29.534 18747 18747 D ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{483f586 token=android.os.BinderProxy@ca28e47 {com.android.launcher3/com.android.launcher3.Launcher}}
03-21 00:40:29.538 718 769 D WindowClient: Add to mViews: com.android.internal.policy.PhoneWindow$DecorView{da653df V.E...... R.....ID 0,0-0,0}, this = android.view.WindowManagerGlobal@3dc2cbc
03-21 00:40:29.538 718 769 D ViewRootImpl: hardware acceleration is disabled, fakeHwAccelerated = true, HardwareRenderer.sRendererDisabled = true, forceHwAccelerated = false, HardwareRenderer.sSystemRendererDisabled = true, this = ViewRoot{b464efb Starting com.tembac.extensionsTest,ident = 542}
03-21 00:40:29.547 217 379 D AALService: enableAALEvent: 0 -> 1
03-21 00:40:29.548 217 379 D AALService: Output backlight = 530/1023, CABC gain = 256
03-21 00:40:29.550 718 769 D WindowManager: addWindowToListInOrderLocked: win=Window{b7971 u0 Starting com.tembac.extensionsTest} Callers=com.android.server.wm.WindowManagerService.addWindow:2772 com.android.server.wm.Session.addToDisplay:171 android.view.ViewRootImpl.setView:643 android.view.WindowManagerGlobal.addView:319
03-21 00:40:29.551 718 769 I WindowManager: Focus moving from Window{e973cf9 u0 com.android.launcher3/com.android.launcher3.Launcher} to null
03-21 00:40:29.551 718 769 I WindowManager: Losing focus: Window{e973cf9 u0 com.android.launcher3/com.android.launcher3.Launcher}
03-21 00:40:29.554 193 193 I BufferQueue: [unnamed-193-4066](this:0xb8ee0a60,id:4066,api:0,p:-1,c:-1) BufferQueue core=(193:/system/bin/surfaceflinger)
03-21 00:40:29.554 193 193 D BufferQueueDump: [unnamed-193-4066] this:0xb8f3d828, value:0xbecb5650, iLen:6
03-21 00:40:29.554 193 193 I BufferQueueConsumer: [unnamed-193-4066](this:0xb8ee0a60,id:4066,api:0,p:-1,c:193) connect(C): consumer=(193:/system/bin/surfaceflinger) controlledByApp=false
03-21 00:40:29.554 193 193 D BufferQueueDump: [unnamed-193-4066] this:0xb8f3d828, value:0xbecb5670, iLen:6
03-21 00:40:29.554 193 193 I BufferQueueConsumer: [unnamed-193-4066](this:0xb8ee0a60,id:4066,api:0,p:-1,c:193) setConsumerName: unnamed-193-4066
03-21 00:40:29.554 193 193 D BufferQueueDump: [Starting com.tembac.extensionsTest] this:0xb8f3d828, value:0xbecb56c8, iLen:6
03-21 00:40:29.554 193 193 I BufferQueueConsumer: [Starting com.tembac.extensionsTest](this:0xb8ee0a60,id:4066,api:0,p:-1,c:193) setConsumerName: Starting com.tembac.extensionsTest
03-21 00:40:29.554 193 193 I BufferQueueConsumer: [Starting com.tembac.extensionsTest](this:0xb8ee0a60,id:4066,api:0,p:-1,c:193) setDefaultBufferSize: width=1 height=1
03-21 00:40:29.555 718 769 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:29.555 718 769 V WindowManager: findFocusedWindow: Reached focused app=AppWindowToken{c3b727e token=Token{3137c39 ActivityRecord{960fc00 u0 com.tembac.extensionsTest/.MainActivity t527}}}
03-21 00:40:29.559 718 1286 D AppOps : noteOperation: allowing code 59 uid 10090 package com.tembac.extensionsTest
03-21 00:40:29.559 718 1286 D AppOps : noteOperation: allowing code 60 uid 10090 package com.tembac.extensionsTest
03-21 00:40:29.562 217 379 D AALService: Output backlight = 529/1023, CABC gain = 256
03-21 00:40:29.562 193 193 I BufferQueueConsumer: [Starting com.tembac.extensionsTest](this:0xb8ee0a60,id:4066,api:0,p:-1,c:193) setDefaultBufferSize: width=480 height=800
03-21 00:40:29.567 718 769 D Surface : Surface::connect(this=0xb92123f0,api=2)
03-21 00:40:29.567 193 1520 I BufferQueueProducer: [Starting com.tembac.extensionsTest](this:0xb8ee0a60,id:4066,api:2,p:718,c:193) connect(P): api=2 producer=(718:system_server) producerControlledByApp=false
03-21 00:40:29.568 193 1031 I BufferQueueProducer: [Starting com.tembac.extensionsTest](this:0xb8ee0a60,id:4066,api:2,p:718,c:193) new GraphicBuffer needed
03-21 00:40:29.568 193 1031 I [MALI][Gralloc]: usage: 0x933, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:29.570 193 1031 D GraphicBuffer: alloc, handle(0xb8f40c58) (w:480 h:800 s:480 f:0x1 u:0x000933) err(0)
03-21 00:40:29.572 718 769 D GraphicBuffer: register, handle(0xb9360020) (w:480 h:800 s:480 f:0x1 u:0x000933)
03-21 00:40:29.576 217 379 D AALService: enableAALEvent: 1 -> 0
03-21 00:40:29.587 718 1286 I ActivityManager: Start proc 20287:com.tembac.extensionsTest/u0a90 for activity com.tembac.extensionsTest/.MainActivity
03-21 00:40:29.587 718 1286 D ActivityManager: Delay resumeKeyDispatchingLocked() to avoid deadlock.
03-21 00:40:29.588 18747 18747 D ActivityThread: ACT-PAUSE_ACTIVITY handled : 1 / android.os.BinderProxy@ca28e47
03-21 00:40:29.588 718 754 V NetworkStats: setKernelCounterSet uid=10090 set=1
03-21 00:40:29.591 217 379 D AALService: enableAALEvent: 0 -> 1
03-21 00:40:29.591 217 379 D AALService: Output backlight = 528/1023, CABC gain = 256
03-21 00:40:29.596 718 1049 D PerfServiceManager: [PerfService] MESSAGE_TIMEOUT:103
03-21 00:40:29.597 718 1049 I libPerfService: 3: set freq: 1300000
03-21 00:40:29.597 718 1049 I libPerfService: 3: set freq max: 0
03-21 00:40:29.597 193 1031 I BufferQueueProducer: [com.android.launcher3/com.android.launcher3.Launcher](this:0xb8f59690,id:4065,api:1,p:18747,c:193) new GraphicBuffer needed
03-21 00:40:29.597 193 1031 I [MALI][Gralloc]: usage: 0xf02, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:29.599 193 1031 D GraphicBuffer: alloc, handle(0xb8eef8b0) (w:480 h:800 s:480 f:0x1 u:0x000f02) err(0)
03-21 00:40:29.600 18747 18804 D GraphicBuffer: register, handle(0xb92716c0) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:29.605 217 379 D AALService: enableAALEvent: 1 -> 0
03-21 00:40:29.619 217 379 D AALService: enableAALEvent: 0 -> 1
03-21 00:40:29.620 217 379 D AALService: Output backlight = 527/1023, CABC gain = 256
03-21 00:40:29.634 217 379 D AALService: Output backlight = 526/1023, CABC gain = 256
03-21 00:40:29.648 217 379 D AALService: enableAALEvent: 1 -> 0
03-21 00:40:29.700 20287 20287 I art : Late-enabling -Xcheck:jni
03-21 00:40:29.769 718 745 D InputReader: InputReader:: getSwitchState lock
03-21 00:40:29.769 718 745 D InputReader: InputReader::getStateLocked:: return
03-21 00:40:29.770 718 745 I libPerfService: perfSetFavorPid - pid:20287, 4f3f
03-21 00:40:29.775 718 745 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:29.775 718 745 V WindowManager: findFocusedWindow: No focusable windows.
03-21 00:40:29.777 718 745 D WindowManager: notifyActivityDrawnForKeyguard: waiting=false Callers=com.android.server.wm.WindowManagerService.handleAppTransitionReadyLocked:10092 com.android.server.wm.WindowManagerService.performLayoutAndPlaceSurfacesLockedInner:10712 com.android.server.wm.WindowManagerService.performLayoutAndPlaceSurfacesLockedLoop:9456 com.android.server.wm.WindowManagerService.performLayoutAndPlaceSurfacesLocked:9403 com.android.server.wm.WindowManagerService.executeAppTransition:4586
03-21 00:40:29.781 18747 18804 D Surface : Surface::disconnect(this=0xb916aa90,api=1)
03-21 00:40:29.781 18747 18804 D GraphicBuffer: unregister, handle(0xb91c6d48) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:29.782 18747 18804 D GraphicBuffer: unregister, handle(0xb91a1740) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:29.783 18747 18804 D GraphicBuffer: unregister, handle(0xb92716c0) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:29.785 193 1520 I BufferQueueProducer: [com.android.launcher3/com.android.launcher3.Launcher](this:0xb8f59690,id:4065,api:1,p:-1,c:193) disconnect(P): api 1
03-21 00:40:29.785 193 1520 I BufferQueueConsumer: [com.android.launcher3/com.android.launcher3.Launcher](this:0xb8f59690,id:4065,api:1,p:-1,c:193) getReleasedBuffers: returning mask 0xfffffffffffffffe
03-21 00:40:29.785 193 1520 D GraphicBuffer: free, handle(0xb8eef8b0) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:29.786 1072 1072 D PhoneStatusBar: setSystemUiVisibility vis=0 mask=ffffffff oldVal=8600 newVal=0 diff=8600
03-21 00:40:29.786 18747 18804 D Surface : Surface::disconnect(this=0xb916aa90,api=1)
03-21 00:40:29.786 1072 1072 D PhoneStatusBar: hiding the MENU button
03-21 00:40:29.787 193 360 I BufferQueueProducer: [com.android.launcher3/com.android.launcher3.Launcher](this:0xb8f59690,id:4065,api:1,p:-1,c:193) disconnect(P): api 1
03-21 00:40:29.788 718 1441 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:29.788 718 1441 V WindowManager: findFocusedWindow: No focusable windows.
03-21 00:40:29.793 193 193 D GraphicBuffer: free, handle(0xb8ef26e8) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:29.796 193 193 I BufferQueueProducer: [FrameBufferSurface_0](this:0xb8ed3dc0,id:0,api:1,p:193,c:193) queueBuffer: fps=1.28 dur=7790.15 max=7660.39 min=14.16
03-21 00:40:29.799 193 4223 I BufferQueueProducer: [StatusBar](this:0xb8ef7228,id:7,api:1,p:1072,c:193) queueBuffer: fps=2.76 dur=8338.23 max=7488.06 min=12.09
03-21 00:40:29.805 20287 20287 D ActivityThread: BIND_APPLICATION handled : 0 / AppBindData{appInfo=ApplicationInfo{f5ec0e5 com.tembac.extensionsTest}}
03-21 00:40:29.806 20287 20287 V ActivityThread: Handling launch of ActivityRecord{3c17ba token=android.os.BinderProxy@cacf66b {com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}} startsNotResumed=false
03-21 00:40:29.828 20287 20287 V ActivityThread: ActivityRecord{3c17ba token=android.os.BinderProxy@cacf66b {com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}}: app=android.app.Application@8bf8661, appName=com.tembac.extensionsTest, pkg=com.tembac.extensionsTest, comp={com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}, dir=/data/app/com.tembac.extensionsTest-2/base.apk
03-21 00:40:29.844 20287 20287 W linker : /data/app/com.tembac.extensionsTest-2/lib/arm/libstd.so: is missing DT_SONAME will use basename as a replacement: "libstd.so"
03-21 00:40:29.851 20287 20287 W linker : /data/app/com.tembac.extensionsTest-2/lib/arm/libregexp.so: is missing DT_SONAME will use basename as a replacement: "libregexp.so"
03-21 00:40:29.858 20287 20287 W linker : /data/app/com.tembac.extensionsTest-2/lib/arm/libzlib.so: is missing DT_SONAME will use basename as a replacement: "libzlib.so"
03-21 00:40:29.863 20287 20287 W linker : /data/app/com.tembac.extensionsTest-2/lib/arm/liblime-legacy.so: is missing DT_SONAME will use basename as a replacement: "liblime-legacy.so"
03-21 00:40:29.871 217 379 D AALService: enableAALEvent: 0 -> 1
03-21 00:40:29.882 20287 20287 I OpenAL_SLES: alc_opensles_init
03-21 00:40:29.888 20287 20287 W linker : /data/app/com.tembac.extensionsTest-2/lib/arm/libApplicationMain.so: is missing DT_SONAME will use basename as a replacement: "libApplicationMain.so"
03-21 00:40:30.000 20287 20287 I haxe plugin: Got Load Proc a4544bbc
03-21 00:40:30.008 217 379 D AALService: Output backlight = 527/1023, CABC gain = 256
03-21 00:40:30.010 20287 20287 I haxe plugin: Got Load Proc a4544bbc
03-21 00:40:30.020 20287 20287 I CreateMainFrame!: creating...
03-21 00:40:30.023 217 379 D AALService: Output backlight = 528/1023, CABC gain = 256
03-21 00:40:30.048 20287 20287 D SurfaceView: checkSurfaceViewlLogProperty get invalid command
03-21 00:40:30.048 20287 20287 D GLSurfaceView: checkGLSurfaceViewlLogProperty get invalid command
03-21 00:40:30.051 217 379 D AALService: Output backlight = 529/1023, CABC gain = 256
03-21 00:40:30.065 20287 20287 I GLSurfaceView: setRenderer(), this = org.haxe.lime.MainView{483f586 VFE...... ......I. 0,0-0,0}
03-21 00:40:30.073 20287 20287 I GLSurfaceView: setRenderMode = 0, this = org.haxe.lime.MainView{483f586 VFE...... ......I. 0,0-0,0}
03-21 00:40:30.079 20287 20287 E MultiWindowProxy: getServiceInstance failed!
03-21 00:40:30.080 217 379 D AALService: Output backlight = 530/1023, CABC gain = 256
03-21 00:40:30.095 217 379 D AALService: Output backlight = 531/1023, CABC gain = 256
03-21 00:40:30.115 718 1037 D WifiStateMachine: ConnectedState (when=-3ms what=131155 arg1=638!CMD_RSSI_POLL rt=470119447/4552293930 638 0 "Fibertel WiFi413 2.4GHz" 60:14:b3:0b:b2:20 rssi=-33 f=2412 sc=60 link=65 tx=0.1, 0.0, 0.0 rx=0.1 bcn=0 [on:0 tx:0 rx:0 period:2999] from screen [on:0 period:1188807330] gl hn rssi=-28 ag=0 hr ticks 0,0,0 ls-=0 [56,56,56,56,61] brc=0 lrc=0 offload-stopped
03-21 00:40:30.116 718 1037 D WifiStateMachine: L2ConnectedState (when=-5ms what=131155 arg1=638!CMD_RSSI_POLL rt=470119449/4552293932 638 0 "Fibertel WiFi413 2.4GHz" 60:14:b3:0b:b2:20 rssi=-33 f=2412 sc=60 link=65 tx=0.1, 0.0, 0.0 rx=0.1 bcn=0 [on:0 tx:0 rx:0 period:2] from screen [on:0 period:1188807332] gl hn rssi=-28 ag=0 hr ticks 0,0,0 ls-=0 [56,56,56,56,61] brc=0 lrc=0 offload-stopped
03-21 00:40:30.116 718 1037 D WifiStateMachine: get link layer stats 0
03-21 00:40:30.117 718 1037 D WifiHW : enter -->wifi_send_command cmd=IFNAME=wlan0 SIGNAL_POLL
03-21 00:40:30.117 26577 26577 D wpa_supplicant: wlan0: Control interface command 'SIGNAL_POLL'
03-21 00:40:30.118 20287 20287 E SensorManager: sensor or listener is null
03-21 00:40:30.118 20287 20287 E SensorManager: sensor or listener is null
03-21 00:40:30.119 20287 20287 D FuncaLink: link: no link yet.
03-21 00:40:30.120 20287 20287 D FuncaLink: link: no link yet.
03-21 00:40:30.120 20287 20287 V ActivityThread: Performing resume of ActivityRecord{3c17ba token=android.os.BinderProxy@cacf66b {com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}}
03-21 00:40:30.121 20287 20287 E SensorManager: sensor or listener is null
03-21 00:40:30.121 20287 20287 E SensorManager: sensor or listener is null
03-21 00:40:30.121 20287 20287 D FuncaLink: link: no link yet.
03-21 00:40:30.122 20287 20287 D ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{3c17ba token=android.os.BinderProxy@cacf66b {com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}}
03-21 00:40:30.122 20287 20287 V ActivityThread: Resume ActivityRecord{3c17ba token=android.os.BinderProxy@cacf66b {com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}} started activity: false, hideForNow: false, finished: false
03-21 00:40:30.122 20287 20287 V PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.PhoneWindow$DecorView{ca28e47 I.E...... R.....ID 0,0-0,0}
03-21 00:40:30.123 217 379 D AALService: Output backlight = 532/1023, CABC gain = 256
03-21 00:40:30.127 193 1031 I SurfaceFlinger: EventThread Client Pid (20287) created
03-21 00:40:30.128 20287 20287 D WindowClient: Add to mViews: com.android.internal.policy.PhoneWindow$DecorView{ca28e47 I.E...... R.....ID 0,0-0,0}, this = android.view.WindowManagerGlobal@44cff3f
03-21 00:40:30.131 20287 20287 D OpenGLRenderer: Dumper init 2 threads <0xb9051ed0>
03-21 00:40:30.131 20287 20287 D OpenGLRenderer: <com.tembac.extensionsTest> is running.
03-21 00:40:30.133 193 1031 I SurfaceFlinger: EventThread Client Pid (20287) created
03-21 00:40:30.133 20287 20305 D OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: false
03-21 00:40:30.134 20287 20305 D OpenGLRenderer: CanvasContext() 0xb9053398
03-21 00:40:30.138 217 379 D AALService: Output backlight = 533/1023, CABC gain = 256
03-21 00:40:30.138 718 1037 D WifiHW : leave --> reply=RSSI=-33
03-21 00:40:30.138 718 1037 D WifiHW : LINKSPEED=65
03-21 00:40:30.138 718 1037 D WifiHW : NOISE=9999
03-21 00:40:30.138 718 1037 D WifiHW : FREQUENCY=2412
03-21 00:40:30.138 718 1037 D WifiHW :
03-21 00:40:30.138 718 1037 I WifiStateMachine: fetchRssiLinkSpeedAndFrequencyNative, newRssi:-33, newLinkSpeed:65, SSID:"Fibertel WiFi413 2.4GHz"
03-21 00:40:30.138 718 1037 D WifiStateMachine: mLastSignalLevel:4, newSignalLevel:4
03-21 00:40:30.139 718 1037 E WifiConfigStore: updateConfiguration freq=2412 BSSID=60:14:b3:0b:b2:20 RSSI=-33 "Fibertel WiFi413 2.4GHz"WPA_PSK
03-21 00:40:30.141 718 1037 V ActivityManager: Broadcast sticky: Intent { act=android.net.wifi.RSSI_CHANGED flg=0x4000010 (has extras) } ordered=false userid=-1 callerApp=ProcessRecord{15394b 718:system/1000}
03-21 00:40:30.142 718 769 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:30.142 718 769 V WindowManager: findFocusedWindow: No focusable windows.
03-21 00:40:30.143 718 1052 D WifiWatchdogStateMachine: RSSI current: 4 new: -33, 4
03-21 00:40:30.144 718 769 V WallpaperManagerService: Visibility changed from WMS : false
03-21 00:40:30.145 1072 1072 V WallpaperService: Visibility change in com.android.systemui.ImageWallpaper$DrawableEngine@17b2049: 0
03-21 00:40:30.146 1072 1072 V WallpaperService: onVisibilityChanged(false): com.android.systemui.ImageWallpaper$DrawableEngine@17b2049
03-21 00:40:30.146 1072 1072 D ImageWallpaper: onVisibilityChanged: mVisible, visible=true, false
03-21 00:40:30.146 1072 1072 D ImageWallpaper: Visibility changed to visible=false
03-21 00:40:30.147 1072 1072 D ImageWallpaper: Suppressed drawFrame since redraw is not needed and offsets have not changed.
03-21 00:40:30.148 20287 20287 D ViewRootImpl: hardware acceleration is enabled, this = ViewRoot{448100c com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity,ident = 0}
03-21 00:40:30.150 193 4223 I SurfaceFlinger: [SF client] NEW(0xb8ef24a8) for (718:system_server)
03-21 00:40:30.151 718 1441 D WindowManager: addWindowToListInOrderLocked: win=Window{59f4ee2 u0 com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity} Callers=com.android.server.wm.WindowManagerService.addWindow:2772 com.android.server.wm.Session.addToDisplay:171 android.view.IWindowSession$Stub.onTransact:124 com.android.server.wm.Session.onTransact:133
03-21 00:40:30.153 193 193 I BufferQueueConsumer: [com.android.launcher3/com.android.launcher3.Launcher](this:0xb8f59690,id:4065,api:1,p:-1,c:-1) disconnect(C)
03-21 00:40:30.153 20287 20287 V ActivityThread: Resuming ActivityRecord{3c17ba token=android.os.BinderProxy@cacf66b {com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}} with isForward=true
03-21 00:40:30.153 20287 20287 V PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{448100c com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity,ident = 0}, this =com.android.internal.policy.PhoneWindow$DecorView{ca28e47 V.E...... R.....ID 0,0-0,0}
03-21 00:40:30.153 20287 20287 V ActivityThread: Scheduling idle handler for ActivityRecord{3c17ba token=android.os.BinderProxy@cacf66b {com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}}
03-21 00:40:30.153 193 193 D GraphicBuffer: free, handle(0xb8f459a0) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:30.153 193 193 I BufferQueue: [com.android.launcher3/com.android.launcher3.Launcher](this:0xb8f59690,id:4065,api:1,p:-1,c:-1) ~BufferQueueCore
03-21 00:40:30.155 20287 20287 D ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord{3c17ba token=android.os.BinderProxy@cacf66b {com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}}
03-21 00:40:30.159 193 193 I BufferQueue: [unnamed-193-4067](this:0xb8f59690,id:4067,api:0,p:-1,c:-1) BufferQueue core=(193:/system/bin/surfaceflinger)
03-21 00:40:30.159 193 193 D BufferQueueDump: [unnamed-193-4067] this:0xb8f418a0, value:0xbecb5650, iLen:6
03-21 00:40:30.159 193 193 I BufferQueueConsumer: [unnamed-193-4067](this:0xb8f59690,id:4067,api:0,p:-1,c:193) connect(C): consumer=(193:/system/bin/surfaceflinger) controlledByApp=false
03-21 00:40:30.159 193 193 D BufferQueueDump: [unnamed-193-4067] this:0xb8f418a0, value:0xbecb5670, iLen:6
03-21 00:40:30.159 193 193 I BufferQueueConsumer: [unnamed-193-4067](this:0xb8f59690,id:4067,api:0,p:-1,c:193) setConsumerName: unnamed-193-4067
03-21 00:40:30.159 193 193 D BufferQueueDump: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity] this:0xb8f418a0, value:0xbecb56c8, iLen:6
03-21 00:40:30.159 193 193 I BufferQueueConsumer: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity](this:0xb8f59690,id:4067,api:0,p:-1,c:193) setConsumerName: com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity
03-21 00:40:30.159 193 193 I BufferQueueConsumer: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity](this:0xb8f59690,id:4067,api:0,p:-1,c:193) setDefaultBufferSize: width=480 height=800
03-21 00:40:30.160 718 1578 V WindowManager: Looking for focus: 8 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:30.160 718 1578 V WindowManager: findFocusedWindow: Found new focus @ 4 = Window{59f4ee2 u0 com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}
03-21 00:40:30.161 718 1578 V WindowManager: Changing focus from null to Window{59f4ee2 u0 com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity} Callers=com.android.server.wm.WindowManagerService.relayoutWindow:3589 com.android.server.wm.Session.relayout:201 android.view.IWindowSession$Stub.onTransact:284 com.android.server.wm.Session.onTransact:133
03-21 00:40:30.161 718 1578 D WindowManager: Input focus has changed to Window{59f4ee2 u0 com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}
03-21 00:40:30.164 20287 20305 D OpenGLRenderer: CanvasContext() 0xb9053398 initialize window=0xb9058b88, title=com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity
03-21 00:40:30.164 20287 20287 D Surface : Surface::allocateBuffers(this=0xb9058b80)
03-21 00:40:30.164 20287 20305 I OpenGLRenderer: Initialized EGL, version 1.4
03-21 00:40:30.164 193 358 D BufferQueueProducer: [](this:0xb8f59690,id:4067,api:0,p:-1,c:193) allocateBuffers: allocating from 0 buffers up to 3 buffers
03-21 00:40:30.164 193 358 I [MALI][Gralloc]: usage: 0x900, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:30.164 20287 20305 D OpenGLRenderer: Created EGL context (0xb90679d8)
03-21 00:40:30.164 193 358 D GraphicBuffer: alloc, handle(0xb8f38478) (w:480 h:800 s:480 f:0x1 u:0x000900) err(0)
03-21 00:40:30.165 193 358 I [MALI][Gralloc]: usage: 0x900, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:30.165 1543 1551 I PerfService: PerfServiceNative_getPackName
03-21 00:40:30.165 718 735 I libPerfService: perfGetLastBoostPid 20287
03-21 00:40:30.165 718 735 D PerfServiceManager: [PerfService] getLastBoostPid 20287
03-21 00:40:30.165 718 735 I libPerfService: perfGetLastBoostPid 20287
03-21 00:40:30.166 1543 1551 I PerfService: PerfServiceNative_getPackName
03-21 00:40:30.166 193 358 D GraphicBuffer: alloc, handle(0xb8f38508) (w:480 h:800 s:480 f:0x1 u:0x000900) err(0)
03-21 00:40:30.166 193 358 I [MALI][Gralloc]: usage: 0x900, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:30.167 718 1372 I libPerfService: perfGetLastBoostPid 20287
03-21 00:40:30.167 217 379 D AALService: Output backlight = 534/1023, CABC gain = 256
03-21 00:40:30.167 718 1372 D PerfServiceManager: [PerfService] getLastBoostPid 20287
03-21 00:40:30.167 718 1372 I libPerfService: perfGetLastBoostPid 20287
03-21 00:40:30.167 1543 1551 D GasService: FG app changed: from com.android.launcher3 to com.tembac.extensionsTest
03-21 00:40:30.167 1543 1551 I PerfService: PerfServiceNative_getPackName
03-21 00:40:30.168 718 734 I libPerfService: perfGetLastBoostPid 20287
03-21 00:40:30.168 718 734 D PerfServiceManager: [PerfService] getLastBoostPid 20287
03-21 00:40:30.168 718 734 I libPerfService: perfGetLastBoostPid 20287
03-21 00:40:30.169 718 769 I WindowManager: Focus moving from null to Window{59f4ee2 u0 com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}
03-21 00:40:30.169 718 769 I WindowManager: Gaining focus: Window{59f4ee2 u0 com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}
03-21 00:40:30.170 193 358 D GraphicBuffer: alloc, handle(0xb8ee5750) (w:480 h:800 s:480 f:0x1 u:0x000900) err(0)
03-21 00:40:30.170 193 358 D BufferQueueProducer: [](this:0xb8f59690,id:4067,api:0,p:-1,c:193) allocateBuffers: allocating from 3 buffers up to 3 buffers
03-21 00:40:30.170 20287 20305 I OpenGLRenderer: Get disable program binary service property (0)
03-21 00:40:30.171 20287 20305 I OpenGLRenderer: Initializing program atlas...
03-21 00:40:30.171 1072 1072 D PhoneStatusBar: setSystemUiVisibility vis=505 mask=ffffffff oldVal=0 newVal=505 diff=505
03-21 00:40:30.173 20287 20287 V InputMethodManager: onWindowFocus: null softInputMode=288 first=true flags=#1810500
03-21 00:40:30.173 1072 1072 D DefaultStatusBarPlmnPlugin: into supportCustomizeCarrierLabel: false
03-21 00:40:30.174 20287 20287 V InputMethodManager: START INPUT: com.android.internal.policy.PhoneWindow$DecorView{ca28e47 V.E...... R.....ID 0,0-480,800} ic=null tba=android.view.inputmethod.EditorInfo@cdaad55 controlFlags=#104
03-21 00:40:30.174 1072 1072 D PhoneStatusBar: hiding the MENU button
03-21 00:40:30.174 1072 1072 D SettingsInterface: from settings cache , name = device_provisioned , value = 1
03-21 00:40:30.174 20287 20305 I ProgramBinary/Service: ProgramBinaryService client side disable debugging.
03-21 00:40:30.174 20287 20305 I ProgramBinary/Service: ProgramBinaryService client side disable binary content debugging.
03-21 00:40:30.174 20287 20305 D ProgramBinary/Service: BpProgramBinaryService.getReady
03-21 00:40:30.174 718 1127 V InputMethodManagerService: windowGainedFocus: android.os.BinderProxy@87d00c4 controlFlags=#104 softInputMode=#120 windowFlags=#1810500
03-21 00:40:30.175 20287 20305 D ProgramBinary/Service: BpProgramBinaryService.getProgramBinaryData
03-21 00:40:30.175 718 1513 V ActivityManager: Broadcast: Intent { act=action_hide_recents_activity flg=0x14000010 pkg=com.android.systemui (has extras) } ordered=false userid=-2 callerApp=ProcessRecord{89db7b7 1072:com.android.systemui/u0a27}
03-21 00:40:30.177 20287 20305 I OpenGLRenderer: Program binary detail: Binary length is 111796, program map length is 152.
03-21 00:40:30.177 20287 20305 I OpenGLRenderer: Succeeded to mmap program binaries. File descriptor is 27, and path is /dev/ashmem¸¹ºº¹»¼½¾¾½¿ÀÁÂÂÁÃÄÅÆÆÅÇÈÉÊÊÉËÌÍÎÎÍÏÐÑÒÒÑÓÔÕÖÖÕ×ØÙÚÚÙÛÜÝÞÞÝß3.
03-21 00:40:30.177 20287 20305 I OpenGLRenderer: No need to use file discriptor anymore, close fd(27).
03-21 00:40:30.181 217 379 D AALService: Output backlight = 535/1023, CABC gain = 256
03-21 00:40:30.186 20287 20305 D OpenGLRenderer: Initializing program cache from 0xb6d8103c, size = 5
03-21 00:40:30.187 20287 20305 D OpenGLRenderer: -- init (key = 0x0000000000000000)
03-21 00:40:30.188 20287 20305 D OpenGLRenderer: -- init (key = 0x0000000000500041)
03-21 00:40:30.188 20287 20305 D OpenGLRenderer: -- init (key = 0x0000000800000003)
03-21 00:40:30.188 20287 20305 D OpenGLRenderer: -- init (key = 0x0000003800000000)
03-21 00:40:30.189 20287 20305 D OpenGLRenderer: -- init (key = 0x0000020000000008)
03-21 00:40:30.189 20287 20305 D Surface : Surface::connect(this=0xb9058b80,api=1)
03-21 00:40:30.190 193 360 I BufferQueueProducer: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity](this:0xb8f59690,id:4067,api:1,p:20287,c:193) connect(P): api=1 producer=(20287:com.tembac.extensionsTest) producerControlledByApp=true
03-21 00:40:30.190 20287 20305 W libEGL : [ANDROID_RECORDABLE] format: 1
03-21 00:40:30.190 20287 20305 D Surface : Surface::setBufferCount(this=0xb9058b80,bufferCount=4)
03-21 00:40:30.190 193 4223 I BufferQueueProducer: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity](this:0xb8f59690,id:4067,api:1,p:20287,c:193) setBufferCount: count = 4
03-21 00:40:30.190 193 4223 D GraphicBuffer: free, handle(0xb8f38478) (w:480 h:800 s:480 f:0x1 u:0x000900)
03-21 00:40:30.191 193 4223 D GraphicBuffer: free, handle(0xb8f38508) (w:480 h:800 s:480 f:0x1 u:0x000900)
03-21 00:40:30.191 193 4223 D GraphicBuffer: free, handle(0xb8ee5750) (w:480 h:800 s:480 f:0x1 u:0x000900)
03-21 00:40:30.192 193 4223 I BufferQueueConsumer: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity](this:0xb8f59690,id:4067,api:1,p:20287,c:193) getReleasedBuffers: returning mask 0xffffffffffffffff
03-21 00:40:30.192 193 1031 I BufferQueueProducer: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity](this:0xb8f59690,id:4067,api:1,p:20287,c:193) new GraphicBuffer needed
03-21 00:40:30.192 193 1031 I [MALI][Gralloc]: usage: 0xf02, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:30.193 193 1031 D GraphicBuffer: alloc, handle(0xb8ee5750) (w:480 h:800 s:480 f:0x1 u:0x000f02) err(0)
03-21 00:40:30.210 217 379 D AALService: Output backlight = 536/1023, CABC gain = 256
03-21 00:40:30.211 20287 20305 D GraphicBuffer: register, handle(0xb9075e40) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:30.213 1072 1072 D PhoneStatusBar: setSystemUiVisibility vis=1706 mask=ffffffff oldVal=505 newVal=1706 diff=1203
03-21 00:40:30.214 1072 1072 D DefaultStatusBarPlmnPlugin: into supportCustomizeCarrierLabel: false
03-21 00:40:30.215 1072 1072 D PhoneStatusBar: hiding the MENU button
03-21 00:40:30.224 217 379 D AALService: Output backlight = 537/1023, CABC gain = 256
03-21 00:40:30.226 20287 20305 D OpenGLRenderer: ProgramCache save to disk, size = 5
03-21 00:40:30.232 718 1372 D PowerManagerService: releaseWakeLockInternal: lock=62844727 [*launch*], flags=0x0, total_time=710ms
03-21 00:40:30.232 718 1372 D PowerManagerNotifier: onWakeLockReleased: flags=1, tag="*launch*", packageName=android, ownerUid=1000, ownerPid=718, workSource=WorkSource{10090}
03-21 00:40:30.232 718 1372 D PowerManagerService: updateWakeLockSummaryLocked: mWakefulness=Awake, mWakeLockSummary=0x0
03-21 00:40:30.232 718 1372 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x1, nextTimeout=470171756 (in 52190 ms)
03-21 00:40:30.233 718 1372 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:30.233 718 1372 I PowerManagerService: setBrightness mButtonLight 0.
03-21 00:40:30.233 718 1372 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x0, mUserActivitySummary=0x1, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:30.233 718 1372 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-21 00:40:30.235 718 769 I ActivityManager: [AppLaunch] Displayed Displayed com.tembac.extensionsTest/.MainActivity: +700ms
03-21 00:40:30.235 718 769 D ActivityManager: AP_PROF:AppLaunch_LaunchTime:com.tembac.extensionsTest/.MainActivity:700:470119568
03-21 00:40:30.235 718 769 D ActivityManager: ACT-IDLE_NOW_MSG from windowsVisible() for idle: ActivityRecord{960fc00 u0 com.tembac.extensionsTest/.MainActivity t527}
03-21 00:40:30.235 718 1049 I libPerfService: 1: set: 3
03-21 00:40:30.236 718 1049 I libPerfService: 1: set freq: 819000
03-21 00:40:30.236 718 1049 I libPerfService: 1: set freq max: 0
03-21 00:40:30.237 718 769 V WindowManager: Looking for focus: 8 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:30.237 718 769 V WindowManager: findFocusedWindow: Found new focus @ 4 = Window{59f4ee2 u0 com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}
03-21 00:40:30.240 718 769 D WindowClient: Remove from mViews: com.android.internal.policy.PhoneWindow$DecorView{da653df V.E...... R.....I. 0,0-480,800}, this = android.view.WindowManagerGlobal@3dc2cbc
03-21 00:40:30.243 718 754 V NetworkStats: setKernelCounterSet uid=10018 set=0
03-21 00:40:30.247 18747 18747 V ActivityThread: Finishing stop of ActivityRecord{483f586 token=android.os.BinderProxy@ca28e47 {com.android.launcher3/com.android.launcher3.Launcher}}: show=false win=com.android.internal.policy.PhoneWindow@6c9ec17
03-21 00:40:30.248 18747 18747 V PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =ViewRoot{d3fbaf9 com.android.launcher3/com.android.launcher3.Launcher,ident = 0}, this =com.android.internal.policy.PhoneWindow$DecorView{448100c I.ED..... R......D 0,0-480,800}
03-21 00:40:30.248 18747 18747 D ActivityThread: ACT-STOP_ACTIVITY_HIDE handled : 0 / android.os.BinderProxy@ca28e47
03-21 00:40:30.253 217 379 D AALService: Output backlight = 538/1023, CABC gain = 256
03-21 00:40:30.282 217 379 D AALService: Output backlight = 539/1023, CABC gain = 256
03-21 00:40:30.296 217 379 D AALService: Output backlight = 540/1023, CABC gain = 256
03-21 00:40:30.325 217 379 D AALService: Output backlight = 541/1023, CABC gain = 256
03-21 00:40:30.339 217 379 D AALService: Output backlight = 542/1023, CABC gain = 256
03-21 00:40:30.342 718 769 D Surface : Surface::disconnect(this=0xb92123f0,api=2)
03-21 00:40:30.342 193 4223 I BufferQueueProducer: [Starting com.tembac.extensionsTest](this:0xb8ee0a60,id:4066,api:2,p:-1,c:193) disconnect(P): api 2
03-21 00:40:30.343 193 4223 I BufferQueueConsumer: [Starting com.tembac.extensionsTest](this:0xb8ee0a60,id:4066,api:2,p:-1,c:193) getReleasedBuffers: returning mask 0xffffffffffffffff
03-21 00:40:30.343 718 769 D GraphicBuffer: unregister, handle(0xb9360020) (w:480 h:800 s:480 f:0x1 u:0x000933)
03-21 00:40:30.354 217 379 D AALService: Output backlight = 538/1023, CABC gain = 257
03-21 00:40:30.354 193 193 I BufferQueueConsumer: [Starting com.tembac.extensionsTest](this:0xb8ee0a60,id:4066,api:2,p:-1,c:-1) disconnect(C)
03-21 00:40:30.355 193 193 D GraphicBuffer: free, handle(0xb8f40c58) (w:480 h:800 s:480 f:0x1 u:0x000933)
03-21 00:40:30.355 193 193 I BufferQueue: [Starting com.tembac.extensionsTest](this:0xb8ee0a60,id:4066,api:2,p:-1,c:-1) ~BufferQueueCore
03-21 00:40:30.363 718 718 E WifiTrafficPoller: TRAFFIC_STATS_POLL true Token 1789 num clients 5
03-21 00:40:30.364 718 718 E WifiTrafficPoller: packet count Tx=402590 Rx=726058
03-21 00:40:30.368 217 379 D AALService: Output backlight = 535/1023, CABC gain = 258
03-21 00:40:30.383 217 379 D AALService: Output backlight = 528/1023, CABC gain = 260
03-21 00:40:30.397 217 379 D AALService: Output backlight = 524/1023, CABC gain = 261
03-21 00:40:30.411 217 379 D AALService: Output backlight = 517/1023, CABC gain = 263
03-21 00:40:30.426 217 379 D AALService: Output backlight = 510/1023, CABC gain = 265
03-21 00:40:30.440 217 379 D AALService: Output backlight = 499/1023, CABC gain = 268
03-21 00:40:30.455 217 379 D AALService: Output backlight = 488/1023, CABC gain = 271
03-21 00:40:30.469 217 379 D AALService: Output backlight = 476/1023, CABC gain = 274
03-21 00:40:30.484 217 379 D AALService: Output backlight = 462/1023, CABC gain = 278
03-21 00:40:30.498 217 379 D AALService: Output backlight = 450/1023, CABC gain = 281
03-21 00:40:30.512 217 379 D AALService: Output backlight = 435/1023, CABC gain = 285
03-21 00:40:30.527 217 379 D AALService: Output backlight = 424/1023, CABC gain = 288
03-21 00:40:30.528 193 193 I SurfaceFlinger: [Built-in Screen (type:0)] fps:67.102699,dur:1013.37,max:29.15,min:12.01
03-21 00:40:30.541 217 379 D AALService: Output backlight = 416/1023, CABC gain = 291
03-21 00:40:30.556 217 379 D AALService: Output backlight = 408/1023, CABC gain = 294
03-21 00:40:30.570 217 379 D AALService: Output backlight = 400/1023, CABC gain = 297
03-21 00:40:30.585 217 379 D AALService: Output backlight = 393/1023, CABC gain = 300
03-21 00:40:30.599 217 379 D AALService: Output backlight = 385/1023, CABC gain = 303
03-21 00:40:30.613 217 379 D AALService: Output backlight = 380/1023, CABC gain = 305
03-21 00:40:30.628 217 379 D AALService: Output backlight = 375/1023, CABC gain = 307
03-21 00:40:30.642 217 379 D AALService: Output backlight = 367/1023, CABC gain = 310
03-21 00:40:30.656 217 379 D AALService: Output backlight = 362/1023, CABC gain = 312
03-21 00:40:30.671 217 379 D AALService: Output backlight = 357/1023, CABC gain = 314
03-21 00:40:30.685 217 379 D AALService: Output backlight = 351/1023, CABC gain = 316
03-21 00:40:30.699 217 379 D AALService: Output backlight = 346/1023, CABC gain = 318
03-21 00:40:30.714 217 379 D AALService: Output backlight = 341/1023, CABC gain = 320
03-21 00:40:30.728 217 379 D AALService: Output backlight = 340/1023, CABC gain = 321
03-21 00:40:30.743 217 379 D AALService: Output backlight = 336/1023, CABC gain = 323
03-21 00:40:30.757 217 379 D AALService: Output backlight = 334/1023, CABC gain = 324
03-21 00:40:30.772 217 379 D AALService: Output backlight = 331/1023, CABC gain = 326
03-21 00:40:30.786 217 379 D AALService: Output backlight = 329/1023, CABC gain = 327
03-21 00:40:30.801 217 379 D AALService: Output backlight = 326/1023, CABC gain = 329
03-21 00:40:30.804 193 1031 I BufferQueueProducer: [StatusBar](this:0xb8ef7228,id:7,api:1,p:1072,c:193) queueBuffer: fps=65.66 dur=1005.10 max=71.44 min=11.76
03-21 00:40:30.815 217 379 D AALService: Output backlight = 324/1023, CABC gain = 330
03-21 00:40:30.829 217 379 D AALService: Output backlight = 322/1023, CABC gain = 331
03-21 00:40:30.843 217 379 D AALService: Output backlight = 320/1023, CABC gain = 332
03-21 00:40:30.858 217 379 D AALService: Output backlight = 319/1023, CABC gain = 333
03-21 00:40:30.872 217 379 D AALService: Output backlight = 315/1023, CABC gain = 335
03-21 00:40:30.887 217 379 D AALService: Output backlight = 313/1023, CABC gain = 336
03-21 00:40:30.901 217 379 D AALService: Output backlight = 311/1023, CABC gain = 337
03-21 00:40:30.930 217 379 D AALService: Output backlight = 310/1023, CABC gain = 338
03-21 00:40:30.944 217 379 D AALService: Output backlight = 308/1023, CABC gain = 339
03-21 00:40:30.959 217 379 D AALService: Output backlight = 306/1023, CABC gain = 340
03-21 00:40:30.973 217 379 D AALService: Output backlight = 304/1023, CABC gain = 341
03-21 00:40:30.987 217 379 D AALService: Output backlight = 305/1023, CABC gain = 341
03-21 00:40:31.002 217 379 D AALService: Output backlight = 303/1023, CABC gain = 342
03-21 00:40:31.016 217 379 D AALService: Output backlight = 301/1023, CABC gain = 343
03-21 00:40:31.031 217 379 D AALService: Output backlight = 302/1023, CABC gain = 343
03-21 00:40:31.045 217 379 D AALService: Output backlight = 300/1023, CABC gain = 344
03-21 00:40:31.059 217 379 D AALService: Output backlight = 298/1023, CABC gain = 345
03-21 00:40:31.074 217 379 D AALService: Output backlight = 299/1023, CABC gain = 345
03-21 00:40:31.088 217 379 D AALService: Output backlight = 297/1023, CABC gain = 346
03-21 00:40:31.101 718 1049 D PerfServiceManager: [PerfService] MESSAGE_TIMEOUT:105
03-21 00:40:31.101 718 1049 I libPerfService: 5: set: 1
03-21 00:40:31.101 718 1049 I libPerfService: 5: set freq: 0
03-21 00:40:31.101 718 1049 I libPerfService: 5: set freq max: 0
03-21 00:40:31.102 718 1049 D PerfServiceManager: [PerfService] set utilization:0.8
03-21 00:40:31.117 217 379 D AALService: Output backlight = 295/1023, CABC gain = 347
03-21 00:40:31.131 217 379 D AALService: Output backlight = 296/1023, CABC gain = 347
03-21 00:40:31.160 217 379 D AALService: Output backlight = 294/1023, CABC gain = 348
03-21 00:40:31.170 1543 1551 I PerfService: PerfServiceNative_getPackName
03-21 00:40:31.170 718 1441 I libPerfService: perfGetLastBoostPid 20287
03-21 00:40:31.170 718 1441 D PerfServiceManager: [PerfService] getLastBoostPid 20287
03-21 00:40:31.171 718 1441 I libPerfService: perfGetLastBoostPid 20287
03-21 00:40:31.174 217 379 D AALService: Output backlight = 295/1023, CABC gain = 348
03-21 00:40:31.189 217 379 D AALService: Output backlight = 293/1023, CABC gain = 349
03-21 00:40:31.218 217 379 D AALService: Output backlight = 294/1023, CABC gain = 349
03-21 00:40:31.232 217 379 D AALService: Output backlight = 292/1023, CABC gain = 350
03-21 00:40:31.290 217 379 D AALService: Output backlight = 291/1023, CABC gain = 351
03-21 00:40:31.304 217 379 D AALService: Output backlight = 292/1023, CABC gain = 351
03-21 00:40:31.347 217 379 D AALService: Output backlight = 290/1023, CABC gain = 352
03-21 00:40:31.366 718 718 E WifiTrafficPoller: TRAFFIC_STATS_POLL true Token 1789 num clients 5
03-21 00:40:31.367 718 718 E WifiTrafficPoller: packet count Tx=402590 Rx=726058
03-21 00:40:31.376 217 379 D AALService: Output backlight = 291/1023, CABC gain = 352
03-21 00:40:31.419 217 379 D AALService: Output backlight = 290/1023, CABC gain = 353
03-21 00:40:31.462 217 379 D AALService: Output backlight = 291/1023, CABC gain = 353
03-21 00:40:31.491 217 379 D AALService: Output backlight = 292/1023, CABC gain = 353
03-21 00:40:31.506 718 1027 V SettingsProvider: packageValueForCallResult, name = haptic_feedback_enabled, value : 1
03-21 00:40:31.507 718 1027 D AppOps : startOperation: allowing code 3 uid 1000 package android
03-21 00:40:31.507 718 1027 D PowerManagerService: acquireWakeLockInternal: lock=74015297, flags=0x1, tag="*vibrator*", ws=WorkSource{1000}, uid=1000, pid=718
03-21 00:40:31.507 718 1027 D PowerManagerService: updateWakeLockSummaryLocked: mWakefulness=Awake, mWakeLockSummary=0x1
03-21 00:40:31.507 718 1027 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x1, nextTimeout=470171756 (in 50915 ms)
03-21 00:40:31.508 718 1027 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:31.508 718 1027 I PowerManagerService: setBrightness mButtonLight 0.
03-21 00:40:31.508 718 1027 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x1, mUserActivitySummary=0x1, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:31.508 718 1027 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-21 00:40:31.508 718 1027 D PowerManagerNotifier: onWakeLockAcquired: flags=1, tag="*vibrator*", packageName=android, ownerUid=1000, ownerPid=718, workSource=WorkSource{1000}
03-21 00:40:31.509 718 1027 V SettingsProvider: packageValueForCallResult, name = haptic_feedback_enabled, value : 1
03-21 00:40:31.509 718 1027 D AppOps : startOperation: allowing code 3 uid 1000 package android
03-21 00:40:31.509 718 20308 D PowerManagerService: releaseWakeLockInternal: lock=74015297 [*vibrator*], flags=0x0, total_time=2ms
03-21 00:40:31.509 718 20308 D PowerManagerNotifier: onWakeLockReleased: flags=1, tag="*vibrator*", packageName=android, ownerUid=1000, ownerPid=718, workSource=WorkSource{1000}
03-21 00:40:31.510 718 20308 D PowerManagerService: updateWakeLockSummaryLocked: mWakefulness=Awake, mWakeLockSummary=0x0
03-21 00:40:31.510 718 20308 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x1, nextTimeout=470171756 (in 50913 ms)
03-21 00:40:31.510 718 20308 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:31.510 718 20308 I PowerManagerService: setBrightness mButtonLight 0.
03-21 00:40:31.510 718 20308 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x0, mUserActivitySummary=0x1, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:31.510 718 20308 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-21 00:40:31.510 718 1027 D PowerManagerService: acquireWakeLockInternal: lock=74015297, flags=0x1, tag="*vibrator*", ws=WorkSource{1000}, uid=1000, pid=718
03-21 00:40:31.510 718 1027 D PowerManagerService: updateWakeLockSummaryLocked: mWakefulness=Awake, mWakeLockSummary=0x1
03-21 00:40:31.511 718 1027 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x1, nextTimeout=470171756 (in 50912 ms)
03-21 00:40:31.511 718 1027 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:31.511 718 1027 I PowerManagerService: setBrightness mButtonLight 0.
03-21 00:40:31.511 718 1027 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x1, mUserActivitySummary=0x1, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:31.511 718 1027 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-21 00:40:31.511 718 1027 D PowerManagerNotifier: onWakeLockAcquired: flags=1, tag="*vibrator*", packageName=android, ownerUid=1000, ownerPid=718, workSource=WorkSource{1000}
03-21 00:40:31.512 718 1026 D PowerManagerService: userActivityFromNative
03-21 00:40:31.512 718 1026 D PowerManagerService: userActivityNoUpdateLocked: eventTime=470120839, event=1, flags=0x0, uid=1000
03-21 00:40:31.512 718 1026 D PowerManagerNotifier: onUserActivity: event=1, uid=1000
03-21 00:40:31.512 718 1026 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x9, nextTimeout=470125839 (in 4993 ms)
03-21 00:40:31.512 718 1026 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:31.513 718 1026 D lights : write_int open fd=-1
03-21 00:40:31.513 718 1026 I PowerManagerService: setBrightness mButtonLight, screenBrightness=163
03-21 00:40:31.513 718 1026 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x1, mUserActivitySummary=0x9, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:31.513 718 1026 V tianyunfei: className=com.tembac.extensionsTest.MainActivity
03-21 00:40:31.513 718 1026 V tianyunfei: win.getOwningPackage()=com.tembac.extensionsTest
03-21 00:40:31.514 718 735 V ActivityManager: Broadcast: Intent { act=android.intent.action.CLOSE_SYSTEM_DIALOGS flg=0x50000010 (has extras) } ordered=false userid=-1 callerApp=null
03-21 00:40:31.515 1072 1072 D SettingsInterface: from settings cache , name = device_provisioned , value = 1
03-21 00:40:31.517 18747 18747 D Launcher3: Launcher, Close system dialogs: reason = recentapps
03-21 00:40:31.518 1072 1072 D SettingsInterface: from settings cache , name = development_settings_enabled , value = 1
03-21 00:40:31.518 1072 1072 D SettingsInterface: from settings cache , name = lock_to_app_enabled , value = null
03-21 00:40:31.520 217 379 D AALService: Output backlight = 291/1023, CABC gain = 354
03-21 00:40:31.529 718 2140 I ActivityManager: START u0 {act=com.android.systemui.recents.SHOW_RECENTS flg=0x10804000 cmp=com.android.systemui/.recents.RecentsActivity} from uid 10027 from pid 1072 on display 0
03-21 00:40:31.531 718 730 I System : FinalizerDaemon: finalize objects = 364
03-21 00:40:31.531 718 2140 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:31.531 718 2140 V WindowManager: findFocusedWindow: Found new focus @ 2 = Window{59f4ee2 u0 com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}
03-21 00:40:31.533 718 2140 V WindowManager: Set focused app to: AppWindowToken{cc4138a token=Token{e7d09f5 ActivityRecord{3fd7b2c u0 com.android.systemui/.recents.RecentsActivity t61}}} old focus=AppWindowToken{c3b727e token=Token{3137c39 ActivityRecord{960fc00 u0 com.tembac.extensionsTest/.MainActivity t527}}} moveFocusNow=true
03-21 00:40:31.535 718 2140 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:31.535 718 2140 V WindowManager: findFocusedWindow: Reached focused app=AppWindowToken{cc4138a token=Token{e7d09f5 ActivityRecord{3fd7b2c u0 com.android.systemui/.recents.RecentsActivity t61}}}
03-21 00:40:31.536 193 193 I SurfaceFlinger: [Built-in Screen (type:0)] fps:30.744230,dur:1008.32,max:576.50,min:13.43
03-21 00:40:31.536 718 2140 V WindowManager: Changing focus from Window{59f4ee2 u0 com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity} to null Callers=com.android.server.wm.WindowManagerService.setFocusedApp:4470 com.android.server.am.ActivityManagerService.setFocusedActivityLocked:2927 com.android.server.am.ActivityStack.moveTaskToFrontLocked:4430 com.android.server.am.ActivityStackSupervisor.startActivityUncheckedLocked:2331
03-21 00:40:31.537 718 2140 D WindowManager: Input focus has changed to null
03-21 00:40:31.539 718 769 I WindowManager: Focus moving from Window{59f4ee2 u0 com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity} to null
03-21 00:40:31.539 718 769 I WindowManager: Losing focus: Window{59f4ee2 u0 com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}
03-21 00:40:31.540 718 1049 I libPerfService: 1: set freq: 1300000
03-21 00:40:31.540 718 1049 I libPerfService: 1: set: 4
03-21 00:40:31.541 718 2140 I BufferQueue: [unnamed-718-1295](this:0xb91e0040,id:1295,api:0,p:-1,c:-1) BufferQueue core=(718:system_server)
03-21 00:40:31.541 718 2140 D BufferQueueDump: [unnamed-718-1295] this:0xb96d8cb0, value:0x9c23a178, iLen:6
03-21 00:40:31.541 718 2140 I BufferQueueConsumer: [unnamed-718-1295](this:0xb91e0040,id:1295,api:0,p:-1,c:718) connect(C): consumer=(718:system_server) controlledByApp=false
03-21 00:40:31.541 718 2140 D BufferQueueDump: [unnamed-718-1295] this:0xb96d8cb0, value:0x9c23a1b8, iLen:6
03-21 00:40:31.541 718 2140 I BufferQueueConsumer: [unnamed-718-1295](this:0xb91e0040,id:1295,api:0,p:-1,c:718) setConsumerName: unnamed-718-1295
03-21 00:40:31.541 718 2140 D BufferQueueDump: [ScreenshotClient] this:0xb96d8cb0, value:0x9c23a1f0, iLen:6
03-21 00:40:31.541 718 2140 I BufferQueueConsumer: [ScreenshotClient](this:0xb91e0040,id:1295,api:0,p:-1,c:718) setConsumerName: ScreenshotClient
03-21 00:40:31.542 193 193 D Surface : Surface::connect(this=0xb8f48828,api=1)
03-21 00:40:31.543 718 2140 I BufferQueueProducer: [ScreenshotClient](this:0xb91e0040,id:1295,api:1,p:193,c:718) connect(P): api=1 producer=(193:/system/bin/surfaceflinger) producerControlledByApp=false
03-21 00:40:31.543 718 2140 I BufferQueueProducer: [ScreenshotClient](this:0xb91e0040,id:1295,api:1,p:193,c:718) new GraphicBuffer needed
03-21 00:40:31.543 193 1520 I [MALI][Gralloc]: usage: 0x333, format: 1 stride: 288 vertical_stride: 288 size: 331776
03-21 00:40:31.544 193 1520 D GraphicBuffer: alloc, handle(0xb8f4c520) (w:288 h:288 s:288 f:0x1 u:0x000333) err(0)
03-21 00:40:31.545 718 2140 D GraphicBuffer: register, handle(0xb9230710) (w:288 h:288 s:288 f:0x1 u:0x000333)
03-21 00:40:31.546 193 1031 D GraphicBuffer: free, handle(0xb8f4c520) (w:288 h:288 s:288 f:0x1 u:0x000333)
03-21 00:40:31.546 193 193 D GraphicBuffer: register, handle(0xb8ef8940) (w:288 h:288 s:288 f:0x1 u:0x000333)
03-21 00:40:31.549 217 379 D AALService: Output backlight = 292/1023, CABC gain = 354
03-21 00:40:31.550 193 193 D Surface : Surface::disconnect(this=0xb8f48828,api=1)
03-21 00:40:31.550 193 193 D GraphicBuffer: unregister, handle(0xb8ef8940) (w:288 h:288 s:288 f:0x1 u:0x000333)
03-21 00:40:31.551 718 2140 I BufferQueueProducer: [ScreenshotClient](this:0xb91e0040,id:1295,api:1,p:-1,c:718) disconnect(P): api 1
03-21 00:40:31.552 718 2140 I BufferQueueConsumer: [ScreenshotClient](this:0xb91e0040,id:1295,api:1,p:-1,c:718) getReleasedBuffers: returning mask 0xffffffffffffffff
03-21 00:40:31.554 718 2140 I BufferQueueConsumer: [ScreenshotClient](this:0xb91e0040,id:1295,api:1,p:-1,c:-1) disconnect(C)
03-21 00:40:31.554 718 2140 D GraphicBuffer: unregister, handle(0xb9230710) (w:288 h:288 s:288 f:0x1 u:0x000333)
03-21 00:40:31.555 718 2140 I BufferQueue: [ScreenshotClient](this:0xb91e0040,id:1295,api:1,p:-1,c:-1) ~BufferQueueCore
03-21 00:40:31.559 718 2140 D PowerManagerService: acquireWakeLockInternal: lock=62844727, flags=0x1, tag="*launch*", ws=WorkSource{10027}, uid=1000, pid=718
03-21 00:40:31.559 718 2140 D PowerManagerService: updateWakeLockSummaryLocked: mWakefulness=Awake, mWakeLockSummary=0x1
03-21 00:40:31.559 718 2140 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x9, nextTimeout=470125839 (in 4946 ms)
03-21 00:40:31.560 718 2140 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:31.560 20287 20287 D ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{3c17ba token=android.os.BinderProxy@cacf66b {com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}}
03-21 00:40:31.560 718 2140 I PowerManagerService: setBrightness mButtonLight, screenBrightness=163
03-21 00:40:31.560 718 2140 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x1, mUserActivitySummary=0x9, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:31.560 20287 20287 D ActivityThread: ACT-PAUSE_ACTIVITY handled : 3 / android.os.BinderProxy@cacf66b
03-21 00:40:31.560 718 2140 D PowerManagerNotifier: onWakeLockAcquired: flags=1, tag="*launch*", packageName=android, ownerUid=1000, ownerPid=718, workSource=WorkSource{10027}
03-21 00:40:31.561 718 2140 D ActivityManager: Delay resumeKeyDispatchingLocked() to avoid deadlock.
03-21 00:40:31.565 718 2140 D InputReader: InputReader:: getSwitchState lock
03-21 00:40:31.565 718 2140 D InputReader: InputReader::getStateLocked:: return
03-21 00:40:31.568 718 2140 D ActivityManager: Set intentActivity.task.mMovingToFront = true
03-21 00:40:31.570 1072 1072 V PhoneStatusBar: onReceive: Intent { act=android.intent.action.CLOSE_SYSTEM_DIALOGS flg=0x50000010 (has extras) }
03-21 00:40:31.571 1072 1072 V ActivityThread: Performing resume of ActivityRecord{6733a9e token=android.os.BinderProxy@f20497f {com.android.systemui/com.android.systemui.recents.RecentsActivity}}
03-21 00:40:31.573 718 20309 D PowerManagerService: releaseWakeLockInternal: lock=74015297 [*vibrator*], flags=0x0, total_time=63ms
03-21 00:40:31.574 718 20309 D PowerManagerNotifier: onWakeLockReleased: flags=1, tag="*vibrator*", packageName=android, ownerUid=1000, ownerPid=718, workSource=WorkSource{1000}
03-21 00:40:31.574 718 20309 D PowerManagerService: updateWakeLockSummaryLocked: mWakefulness=Awake, mWakeLockSummary=0x1
03-21 00:40:31.573 20287 20287 V ActivityThread: Finishing stop of ActivityRecord{3c17ba token=android.os.BinderProxy@cacf66b {com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity}}: show=false win=com.android.internal.policy.PhoneWindow@69f75c2
03-21 00:40:31.574 718 20309 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x9, nextTimeout=470125839 (in 4932 ms)
03-21 00:40:31.574 718 20309 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:31.574 718 20309 I PowerManagerService: setBrightness mButtonLight, screenBrightness=163
03-21 00:40:31.574 718 20309 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x1, mUserActivitySummary=0x9, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:31.574 20287 20287 V PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =ViewRoot{448100c com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity,ident = 0}, this =com.android.internal.policy.PhoneWindow$DecorView{ca28e47 I.E...... R....... 0,0-480,800}
03-21 00:40:31.574 20287 20287 D ActivityThread: ACT-STOP_ACTIVITY_HIDE handled : 0 / android.os.BinderProxy@cacf66b
03-21 00:40:31.574 718 754 V NetworkStats: setKernelCounterSet uid=10090 set=0
03-21 00:40:31.577 1072 1072 D SettingsInterface: from settings cache , name = assistant , value = null
03-21 00:40:31.579 20287 20305 D Surface : Surface::disconnect(this=0xb9058b80,api=1)
03-21 00:40:31.579 20287 20305 D GraphicBuffer: unregister, handle(0xb9075e40) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:31.580 193 1031 I BufferQueueProducer: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity](this:0xb8f59690,id:4067,api:1,p:-1,c:193) disconnect(P): api 1
03-21 00:40:31.580 193 1031 I BufferQueueConsumer: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity](this:0xb8f59690,id:4067,api:1,p:-1,c:193) getReleasedBuffers: returning mask 0xffffffffffffffff
03-21 00:40:31.581 20287 20305 D Surface : Surface::disconnect(this=0xb9058b80,api=1)
03-21 00:40:31.581 193 1520 I BufferQueueProducer: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity](this:0xb8f59690,id:4067,api:1,p:-1,c:193) disconnect(P): api 1
03-21 00:40:31.583 718 745 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:31.583 718 745 V WindowManager: findFocusedWindow: No focusable windows.
03-21 00:40:31.585 1072 1072 D SettingsInterface: from settings cache , name = assistant , value = null
03-21 00:40:31.591 1072 1072 D recents.RecentsActivity: updateRecentsTasks:mConfig.mClearVisible= true
03-21 00:40:31.591 1072 1072 D recents.RecentsActivity: mClearAll: visible
03-21 00:40:31.594 718 1026 V tianyunfei: className=com.android.systemui.recents.RecentsActivity
03-21 00:40:31.594 1072 1072 D ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{6733a9e token=android.os.BinderProxy@f20497f {com.android.systemui/com.android.systemui.recents.RecentsActivity}}
03-21 00:40:31.595 1072 1072 V ActivityThread: Resume ActivityRecord{6733a9e token=android.os.BinderProxy@f20497f {com.android.systemui/com.android.systemui.recents.RecentsActivity}} started activity: false, hideForNow: false, finished: false
03-21 00:40:31.595 1072 1072 V ActivityThread: Resuming ActivityRecord{6733a9e token=android.os.BinderProxy@f20497f {com.android.systemui/com.android.systemui.recents.RecentsActivity}} with isForward=true
03-21 00:40:31.596 1072 1072 V PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{14c8e71 com.android.systemui/com.android.systemui.recents.RecentsActivity,ident = 23}, this =com.android.internal.policy.PhoneWindow$DecorView{308bd6e V.E...... R.....ID 0,0-480,800}
03-21 00:40:31.596 1072 1072 V ActivityThread: Scheduling idle handler for ActivityRecord{6733a9e token=android.os.BinderProxy@f20497f {com.android.systemui/com.android.systemui.recents.RecentsActivity}}
03-21 00:40:31.597 1072 1072 D ActivityThread: ACT-RESUME_ACTIVITY handled : 1 / android.os.BinderProxy@f20497f
03-21 00:40:31.599 1072 1072 D ActivityThread: ACT-NEW_INTENT handled : 0 / NewIntentData{intents=[Intent { act=com.android.systemui.recents.SHOW_RECENTS flg=0x10c04000 cmp=com.android.systemui/.recents.RecentsActivity }] token=android.os.BinderProxy@f20497f}
03-21 00:40:31.606 217 379 D AALService: Output backlight = 293/1023, CABC gain = 354
03-21 00:40:31.612 193 193 I BufferQueue: [unnamed-193-4068](this:0xb8ee0a60,id:4068,api:0,p:-1,c:-1) BufferQueue core=(193:/system/bin/surfaceflinger)
03-21 00:40:31.612 193 193 D BufferQueueDump: [unnamed-193-4068] this:0xb8f03e50, value:0xbecb5650, iLen:6
03-21 00:40:31.613 193 193 I BufferQueueConsumer: [unnamed-193-4068](this:0xb8ee0a60,id:4068,api:0,p:-1,c:193) connect(C): consumer=(193:/system/bin/surfaceflinger) controlledByApp=false
03-21 00:40:31.613 193 193 D BufferQueueDump: [unnamed-193-4068] this:0xb8f03e50, value:0xbecb5670, iLen:6
03-21 00:40:31.613 193 193 I BufferQueueConsumer: [unnamed-193-4068](this:0xb8ee0a60,id:4068,api:0,p:-1,c:193) setConsumerName: unnamed-193-4068
03-21 00:40:31.613 193 193 D BufferQueueDump: [com.android.systemui/com.android.systemui.recents.RecentsActivity] this:0xb8f03e50, value:0xbecb56c8, iLen:6
03-21 00:40:31.613 193 193 I BufferQueueConsumer: [com.android.systemui/com.android.systemui.recents.RecentsActivity](this:0xb8ee0a60,id:4068,api:0,p:-1,c:193) setConsumerName: com.android.systemui/com.android.systemui.recents.RecentsActivity
03-21 00:40:31.613 193 193 I BufferQueueConsumer: [com.android.systemui/com.android.systemui.recents.RecentsActivity](this:0xb8ee0a60,id:4068,api:0,p:-1,c:193) setDefaultBufferSize: width=480 height=800
03-21 00:40:31.614 718 735 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:31.615 718 735 V WindowManager: findFocusedWindow: Found new focus @ 4 = Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
03-21 00:40:31.615 718 735 V WindowManager: Changing focus from null to Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity} Callers=com.android.server.wm.WindowManagerService.relayoutWindow:3589 com.android.server.wm.Session.relayout:201 android.view.IWindowSession$Stub.onTransact:284 com.android.server.wm.Session.onTransact:133
03-21 00:40:31.615 718 735 D WindowManager: Input focus has changed to Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
03-21 00:40:31.619 718 769 I WindowManager: Focus moving from null to Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
03-21 00:40:31.619 718 769 I WindowManager: Gaining focus: Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
03-21 00:40:31.619 1072 1389 D OpenGLRenderer: CanvasContext() 0xb9431830 initialize window=0xb96782d0, title=com.android.systemui/com.android.systemui.recents.RecentsActivity
03-21 00:40:31.619 1072 1389 D Surface : Surface::connect(this=0xb96782c8,api=1)
03-21 00:40:31.620 1072 1072 D Surface : Surface::allocateBuffers(this=0xb96782c8)
03-21 00:40:31.620 193 1031 I BufferQueueProducer: [com.android.systemui/com.android.systemui.recents.RecentsActivity](this:0xb8ee0a60,id:4068,api:1,p:1072,c:193) connect(P): api=1 producer=(1072:com.android.systemui) producerControlledByApp=true
03-21 00:40:31.620 193 4223 D BufferQueueProducer: [com.android.systemui/com.android.systemui.recents.RecentsActivity](this:0xb8ee0a60,id:4068,api:1,p:1072,c:193) allocateBuffers: allocating from 0 buffers up to 3 buffers
03-21 00:40:31.620 193 4223 I [MALI][Gralloc]: usage: 0x900, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:31.621 1072 1389 W libEGL : [ANDROID_RECORDABLE] format: 1
03-21 00:40:31.622 1072 1389 D Surface : Surface::setBufferCount(this=0xb96782c8,bufferCount=4)
03-21 00:40:31.622 193 1520 I BufferQueueProducer: [com.android.systemui/com.android.systemui.recents.RecentsActivity](this:0xb8ee0a60,id:4068,api:1,p:1072,c:193) setBufferCount: count = 4
03-21 00:40:31.623 1072 1092 I System : FinalizerDaemon: finalize objects = 182
03-21 00:40:31.624 193 4223 D GraphicBuffer: alloc, handle(0xb8ee0858) (w:480 h:800 s:480 f:0x1 u:0x000900) err(0)
03-21 00:40:31.624 193 4223 I [MALI][Gralloc]: usage: 0x900, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:31.625 193 4223 D GraphicBuffer: alloc, handle(0xb8f71288) (w:480 h:800 s:480 f:0x1 u:0x000900) err(0)
03-21 00:40:31.625 193 4223 I [MALI][Gralloc]: usage: 0x900, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:31.627 193 4223 D GraphicBuffer: alloc, handle(0xb8f38478) (w:480 h:800 s:480 f:0x1 u:0x000900) err(0)
03-21 00:40:31.627 193 4223 D BufferQueueProducer: [com.android.systemui/com.android.systemui.recents.RecentsActivity](this:0xb8ee0a60,id:4068,api:1,p:1072,c:193) allocateBuffers: allocating from 3 buffers up to 3 buffers
03-21 00:40:31.627 193 1520 D GraphicBuffer: free, handle(0xb8ee0858) (w:480 h:800 s:480 f:0x1 u:0x000900)
03-21 00:40:31.627 193 1520 D GraphicBuffer: free, handle(0xb8f71288) (w:480 h:800 s:480 f:0x1 u:0x000900)
03-21 00:40:31.628 193 1520 D GraphicBuffer: free, handle(0xb8f38478) (w:480 h:800 s:480 f:0x1 u:0x000900)
03-21 00:40:31.628 193 1520 I BufferQueueConsumer: [com.android.systemui/com.android.systemui.recents.RecentsActivity](this:0xb8ee0a60,id:4068,api:1,p:1072,c:193) getReleasedBuffers: returning mask 0xffffffffffffffff
03-21 00:40:31.629 193 1031 I BufferQueueProducer: [com.android.systemui/com.android.systemui.recents.RecentsActivity](this:0xb8ee0a60,id:4068,api:1,p:1072,c:193) new GraphicBuffer needed
03-21 00:40:31.629 193 1031 I [MALI][Gralloc]: usage: 0xf02, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:31.631 193 1031 D GraphicBuffer: alloc, handle(0xb8f40c00) (w:480 h:800 s:480 f:0x1 u:0x000f02) err(0)
03-21 00:40:31.632 1072 1389 D GraphicBuffer: register, handle(0xb97da5b8) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:31.635 217 379 D AALService: Output backlight = 294/1023, CABC gain = 354
03-21 00:40:31.645 1072 1389 D OpenGLRenderer: CacheTexture 6 upload: x, y, width height = 0, 16, 512, 212
03-21 00:40:31.652 718 769 V WallpaperManagerService: Visibility changed from WMS : true
03-21 00:40:31.652 1072 1072 D PhoneStatusBar: setSystemUiVisibility vis=700 mask=ffffffff oldVal=5706 newVal=700 diff=5006
03-21 00:40:31.652 1072 1072 D PhoneStatusBar: hiding the MENU button
03-21 00:40:31.653 1072 1072 V InputMethodManager: onWindowFocus: null softInputMode=288 first=true flags=#1910100
03-21 00:40:31.653 1072 1072 V InputMethodManager: START INPUT: com.android.internal.policy.PhoneWindow$DecorView{308bd6e V.E...... R......D 0,0-480,800} ic=null tba=android.view.inputmethod.EditorInfo@9ac261 controlFlags=#104
03-21 00:40:31.655 718 1286 V InputMethodManagerService: windowGainedFocus: android.os.BinderProxy@476646b controlFlags=#104 softInputMode=#120 windowFlags=#1910100
03-21 00:40:31.655 193 193 I BufferQueue: [unnamed-193-4069](this:0xb8f46480,id:4069,api:0,p:-1,c:-1) BufferQueue core=(193:/system/bin/surfaceflinger)
03-21 00:40:31.655 193 193 D BufferQueueDump: [unnamed-193-4069] this:0xb8ee0548, value:0xbecb5650, iLen:6
03-21 00:40:31.655 193 193 I BufferQueueConsumer: [unnamed-193-4069](this:0xb8f46480,id:4069,api:0,p:-1,c:193) connect(C): consumer=(193:/system/bin/surfaceflinger) controlledByApp=false
03-21 00:40:31.655 193 193 D BufferQueueDump: [unnamed-193-4069] this:0xb8ee0548, value:0xbecb5670, iLen:6
03-21 00:40:31.655 193 193 I BufferQueueConsumer: [unnamed-193-4069](this:0xb8f46480,id:4069,api:0,p:-1,c:193) setConsumerName: unnamed-193-4069
03-21 00:40:31.655 193 193 D BufferQueueDump: [thumbnail anim] this:0xb8ee0548, value:0xbecb56c8, iLen:6
03-21 00:40:31.656 193 193 I BufferQueueConsumer: [thumbnail anim](this:0xb8f46480,id:4069,api:0,p:-1,c:193) setConsumerName: thumbnail anim
03-21 00:40:31.656 193 193 I BufferQueueConsumer: [thumbnail anim](this:0xb8f46480,id:4069,api:0,p:-1,c:193) setDefaultBufferSize: width=421 height=78
03-21 00:40:31.657 718 769 D Surface : Surface::connect(this=0xb93ce6f8,api=2)
03-21 00:40:31.657 193 1031 I BufferQueueProducer: [thumbnail anim](this:0xb8f46480,id:4069,api:2,p:718,c:193) connect(P): api=2 producer=(718:system_server) producerControlledByApp=false
03-21 00:40:31.657 193 358 I BufferQueueProducer: [thumbnail anim](this:0xb8f46480,id:4069,api:2,p:718,c:193) new GraphicBuffer needed
03-21 00:40:31.657 193 358 I [MALI][Gralloc]: usage: 0x933, format: 1 stride: 432 vertical_stride: 78 size: 134784
03-21 00:40:31.658 193 358 D GraphicBuffer: alloc, handle(0xb8eef7a0) (w:421 h:78 s:432 f:0x1 u:0x000933) err(0)
03-21 00:40:31.659 718 769 D GraphicBuffer: register, handle(0xb92ced98) (w:421 h:78 s:432 f:0x1 u:0x000933)
03-21 00:40:31.661 718 769 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:31.661 718 769 V WindowManager: findFocusedWindow: Found new focus @ 4 = Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
03-21 00:40:31.662 718 769 D WindowManager: notifyActivityDrawnForKeyguard: waiting=false Callers=com.android.server.wm.WindowManagerService.handleAppTransitionReadyLocked:10092 com.android.server.wm.WindowManagerService.performLayoutAndPlaceSurfacesLockedInner:10712 com.android.server.wm.WindowManagerService.performLayoutAndPlaceSurfacesLockedLoop:9456 com.android.server.wm.WindowManagerService.performLayoutAndPlaceSurfacesLocked:9403 com.android.server.wm.WindowManagerService.-wrap8:-1
03-21 00:40:31.673 1072 1072 V WallpaperService: Visibility change in com.android.systemui.ImageWallpaper$DrawableEngine@17b2049: 1
03-21 00:40:31.673 193 358 I BufferQueueProducer: [com.android.systemui/com.android.systemui.recents.RecentsActivity](this:0xb8ee0a60,id:4068,api:1,p:1072,c:193) new GraphicBuffer needed
03-21 00:40:31.673 193 358 I [MALI][Gralloc]: usage: 0xf02, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:31.674 718 1513 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:31.674 718 1513 V WindowManager: findFocusedWindow: Found new focus @ 4 = Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
03-21 00:40:31.674 193 358 D GraphicBuffer: alloc, handle(0xb8ef4bf8) (w:480 h:800 s:480 f:0x1 u:0x000f02) err(0)
03-21 00:40:31.675 1072 1072 V WallpaperService: onVisibilityChanged(true): com.android.systemui.ImageWallpaper$DrawableEngine@17b2049
03-21 00:40:31.675 1072 1072 V WallpaperService: Offsets change in com.android.systemui.ImageWallpaper$DrawableEngine@17b2049: 0.0,0.0
03-21 00:40:31.676 1072 1072 D ImageWallpaper: onOffsetsChanged: xOffset=0.0, yOffset=0.0, xOffsetStep=0.0, yOffsetStep=0.0, xPixels=0, yPixels=0
03-21 00:40:31.676 1072 1072 D ImageWallpaper: Suppressed drawFrame since redraw is not needed and offsets have not changed.
03-21 00:40:31.677 1072 1072 D ImageWallpaper: onVisibilityChanged: mVisible, visible=false, true
03-21 00:40:31.677 1072 1072 D ImageWallpaper: Visibility changed to visible=true
03-21 00:40:31.677 1072 1389 D GraphicBuffer: register, handle(0xb9463fd8) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:31.678 217 379 D AALService: Output backlight = 293/1023, CABC gain = 355
03-21 00:40:31.679 1072 1072 D ImageWallpaper: Suppressed drawFrame since redraw is not needed and offsets have not changed.
03-21 00:40:31.679 1072 1072 V WallpaperService: Changes: creating=false format=false size=false
03-21 00:40:31.681 193 193 I BufferQueueProducer: [FrameBufferSurface_0](this:0xb8ed3dc0,id:0,api:1,p:193,c:193) queueBuffer: fps=5.83 dur=1885.95 max=1353.39 min=13.86
03-21 00:40:31.693 1072 1072 V WallpaperService: New surface: Surface(name=null)/@0x44c7805, frame=Rect(0, 0 - 480, 800)
03-21 00:40:31.694 1072 1072 V WallpaperService: Wallpaper size has changed: (480, 800
03-21 00:40:31.694 1072 1072 V WallpaperService: Layout: x=0 y=0 w=480 h=800
03-21 00:40:31.694 1072 1072 V WallpaperService: Offsets change in com.android.systemui.ImageWallpaper$DrawableEngine@17b2049: 0.0,0.0
03-21 00:40:31.694 1072 1072 D ImageWallpaper: onOffsetsChanged: xOffset=0.0, yOffset=0.0, xOffsetStep=0.0, yOffsetStep=0.0, xPixels=0, yPixels=0
03-21 00:40:31.695 1072 1072 D ImageWallpaper: Suppressed drawFrame since redraw is not needed and offsets have not changed.
03-21 00:40:31.696 1072 1072 V WallpaperService: Changes: creating=false format=false size=false
03-21 00:40:31.701 718 732 I art : Background partial concurrent mark sweep GC freed 11898(987KB) AllocSpace objects, 0(0B) LOS objects, 8% free, 21MB/23MB, paused 5.328ms total 146.792ms
03-21 00:40:31.705 1072 1072 V WallpaperService: New surface: Surface(name=null)/@0x44c7805, frame=Rect(0, 0 - 480, 800)
03-21 00:40:31.705 1072 1072 V WallpaperService: Wallpaper size has changed: (480, 800
03-21 00:40:31.705 1072 1072 V WallpaperService: Layout: x=0 y=0 w=480 h=800
03-21 00:40:31.705 1072 1072 V WallpaperService: Offsets change in com.android.systemui.ImageWallpaper$DrawableEngine@17b2049: 0.0,0.0
03-21 00:40:31.705 1072 1072 D ImageWallpaper: onOffsetsChanged: xOffset=0.0, yOffset=0.0, xOffsetStep=0.0, yOffsetStep=0.0, xPixels=0, yPixels=0
03-21 00:40:31.706 1072 1072 D ImageWallpaper: Suppressed drawFrame since redraw is not needed and offsets have not changed.
03-21 00:40:31.707 718 1286 V ActivityManager: Broadcast: Intent { act=action_start_enter_animation flg=0x14000010 pkg=com.android.systemui } ordered=true userid=-2 callerApp=ProcessRecord{89db7b7 1072:com.android.systemui/u0a27}
03-21 00:40:31.707 217 379 D AALService: Output backlight = 294/1023, CABC gain = 355
03-21 00:40:31.709 718 1127 D PowerManagerService: releaseWakeLockInternal: lock=62844727 [*launch*], flags=0x0, total_time=150ms
03-21 00:40:31.709 718 1127 D PowerManagerNotifier: onWakeLockReleased: flags=1, tag="*launch*", packageName=android, ownerUid=1000, ownerPid=718, workSource=WorkSource{10027}
03-21 00:40:31.709 718 1127 D PowerManagerService: updateWakeLockSummaryLocked: mWakefulness=Awake, mWakeLockSummary=0x0
03-21 00:40:31.709 718 1127 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x9, nextTimeout=470125839 (in 4796 ms)
03-21 00:40:31.709 718 1127 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:31.710 718 1127 I PowerManagerService: setBrightness mButtonLight, screenBrightness=163
03-21 00:40:31.710 718 1127 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x0, mUserActivitySummary=0x9, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:31.710 718 1127 D PowerManagerService: Releasing suspend blocker "PowerManagerService.WakeLocks".
03-21 00:40:31.712 1072 1072 D ActivityThread: BDC-Calling finishReceiver: IIntentReceiver=48bd274
03-21 00:40:31.750 217 379 D AALService: Output backlight = 305/1023, CABC gain = 349
03-21 00:40:31.765 217 379 D AALService: Output backlight = 317/1023, CABC gain = 343
03-21 00:40:31.779 217 379 D AALService: Output backlight = 331/1023, CABC gain = 337
03-21 00:40:31.793 217 379 D AALService: Output backlight = 341/1023, CABC gain = 332
03-21 00:40:31.808 217 379 D AALService: Output backlight = 349/1023, CABC gain = 328
03-21 00:40:31.822 217 379 D AALService: Output backlight = 365/1023, CABC gain = 320
03-21 00:40:31.837 217 379 D AALService: Output backlight = 380/1023, CABC gain = 311
03-21 00:40:31.851 217 379 D AALService: Output backlight = 395/1023, CABC gain = 307
03-21 00:40:31.865 217 379 D AALService: Output backlight = 411/1023, CABC gain = 302
03-21 00:40:31.880 217 379 D AALService: Output backlight = 426/1023, CABC gain = 296
03-21 00:40:31.894 217 379 D AALService: Output backlight = 441/1023, CABC gain = 293
03-21 00:40:31.909 217 379 D AALService: Output backlight = 450/1023, CABC gain = 291
03-21 00:40:31.923 217 379 D AALService: Output backlight = 456/1023, CABC gain = 289
03-21 00:40:31.937 217 379 D AALService: Output backlight = 462/1023, CABC gain = 287
03-21 00:40:31.952 217 379 D AALService: Output backlight = 471/1023, CABC gain = 285
03-21 00:40:31.966 217 379 D AALService: Output backlight = 479/1023, CABC gain = 283
03-21 00:40:31.981 217 379 D AALService: Output backlight = 487/1023, CABC gain = 281
03-21 00:40:31.995 217 379 D AALService: Output backlight = 490/1023, CABC gain = 280
03-21 00:40:32.009 217 379 D AALService: Output backlight = 498/1023, CABC gain = 278
03-21 00:40:32.024 217 379 D AALService: Output backlight = 501/1023, CABC gain = 277
03-21 00:40:32.024 193 193 I BufferQueueConsumer: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity](this:0xb8f59690,id:4067,api:1,p:-1,c:-1) disconnect(C)
03-21 00:40:32.025 718 769 D Surface : Surface::disconnect(this=0xb93ce6f8,api=2)
03-21 00:40:32.026 193 193 D GraphicBuffer: free, handle(0xb8ee5750) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:32.026 193 358 I BufferQueueProducer: [thumbnail anim](this:0xb8f46480,id:4069,api:2,p:-1,c:193) disconnect(P): api 2
03-21 00:40:32.026 193 193 I BufferQueue: [com.tembac.extensionsTest/com.tembac.extensionsTest.MainActivity](this:0xb8f59690,id:4067,api:1,p:-1,c:-1) ~BufferQueueCore
03-21 00:40:32.026 193 358 I BufferQueueConsumer: [thumbnail anim](this:0xb8f46480,id:4069,api:2,p:-1,c:193) getReleasedBuffers: returning mask 0xffffffffffffffff
03-21 00:40:32.026 718 769 D GraphicBuffer: unregister, handle(0xb92ced98) (w:421 h:78 s:432 f:0x1 u:0x000933)
03-21 00:40:32.029 718 1049 I libPerfService: 1: set: 1
03-21 00:40:32.029 718 1049 I libPerfService: 1: set freq: 0
03-21 00:40:32.030 718 1049 I libPerfService: 1: set freq max: 0
03-21 00:40:32.030 718 769 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:32.030 718 769 V WindowManager: findFocusedWindow: Found new focus @ 4 = Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
03-21 00:40:32.039 217 379 D AALService: Output backlight = 513/1023, CABC gain = 274
03-21 00:40:32.039 193 193 I BufferQueueConsumer: [thumbnail anim](this:0xb8f46480,id:4069,api:2,p:-1,c:-1) disconnect(C)
03-21 00:40:32.040 193 193 D GraphicBuffer: free, handle(0xb8eef7a0) (w:421 h:78 s:432 f:0x1 u:0x000933)
03-21 00:40:32.040 193 193 I BufferQueue: [thumbnail anim](this:0xb8f46480,id:4069,api:2,p:-1,c:-1) ~BufferQueueCore
03-21 00:40:32.053 217 379 D AALService: Output backlight = 518/1023, CABC gain = 273
03-21 00:40:32.067 217 379 D AALService: Output backlight = 521/1023, CABC gain = 272
03-21 00:40:32.082 217 379 D AALService: Output backlight = 525/1023, CABC gain = 271
03-21 00:40:32.096 217 379 D AALService: Output backlight = 529/1023, CABC gain = 270
03-21 00:40:32.110 217 379 D AALService: Output backlight = 532/1023, CABC gain = 269
03-21 00:40:32.115 232 232 I thermal_repeater: oh, queryMdThermalInfo (0)Connection refused
03-21 00:40:32.116 232 232 I thermal_repeater: [recvMdThermalInfo] ret=5, strLen=127, ERROR
03-21 00:40:32.118 193 360 I BufferQueueProducer: [com.android.systemui/com.android.systemui.recents.RecentsActivity](this:0xb8ee0a60,id:4068,api:1,p:1072,c:193) new GraphicBuffer needed
03-21 00:40:32.118 193 360 I [MALI][Gralloc]: usage: 0xf02, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:32.119 193 360 D GraphicBuffer: alloc, handle(0xb8ee3e68) (w:480 h:800 s:480 f:0x1 u:0x000f02) err(0)
03-21 00:40:32.120 1072 1389 D GraphicBuffer: register, handle(0xb959d770) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:32.125 217 379 D AALService: Output backlight = 536/1023, CABC gain = 268
03-21 00:40:32.139 217 379 D AALService: Output backlight = 540/1023, CABC gain = 267
03-21 00:40:32.154 217 379 D AALService: Output backlight = 539/1023, CABC gain = 267
03-21 00:40:32.167 718 1037 D WifiStateMachine: ConnectedState (when=-2ms what=131143 arg1=-2 arg2=19962) !CMD_START_SCAN rt=470121499/4552295982 -2 19962 ic=1 proc(ms):20002 dur:1322 cnt=19962 rssi=-33 f=2412 sc=60 link=65 tx=0.0, 0.0, 0.0 rx=0.0 list=2412 [on:0 tx:0 rx:0 period:2023] from screen [on:0 period:1188809382]
03-21 00:40:32.168 718 1037 D WifiStateMachine: L2ConnectedState (when=-4ms what=131143 arg1=-2 arg2=19962) !CMD_START_SCAN rt=470121501/4552295984 -2 19962 ic=1 proc(ms):20003 dur:1322 cnt=19962 rssi=-33 f=2412 sc=60 link=65 tx=0.0, 0.0, 0.0 rx=0.0 list=2412 [on:0 tx:0 rx:0 period:1] from screen [on:0 period:1188809383]
03-21 00:40:32.168 217 379 D AALService: Output backlight = 542/1023, CABC gain = 266
03-21 00:40:32.168 718 1037 D WifiStateMachine: CMD_START_SCAN source -2 txSuccessRate=0.04 rxSuccessRate=0.04 targetRoamBSSID=any RSSI=-33
03-21 00:40:32.169 718 1037 D WifiStateMachine: startDelayedScan send -> 19963 milli 20000
03-21 00:40:32.169 718 1037 D WifiStateMachine: CMD_START_SCAN with age=120033 interval=341718 maxinterval=300000
03-21 00:40:32.169 718 1037 D WifiStateMachine: CMD_START_SCAN full=false
03-21 00:40:32.169 718 1037 E WifiConfigStore: makeChannelList age=3600000 for "Fibertel WiFi413 2.4GHz"WPA_PSK max=6 bssids=1
03-21 00:40:32.169 718 1037 E WifiConfigStore: has 60:14:b3:0b:b2:20 freq=2412 age=2030 ?=true
03-21 00:40:32.169 718 1037 D WifiStateMachine: starting scan for "Fibertel WiFi413 2.4GHz"WPA_PSK with 2412
03-21 00:40:32.169 718 1037 D WifiStateMachine: stopReconnectWifi Wfd=false StopScan=false mDontReconnectAndScan=false
03-21 00:40:32.170 718 1037 D WifiHW : enter -->wifi_send_command cmd=IFNAME=wlan0 SCAN TYPE=ONLY freq=2412
03-21 00:40:32.170 26577 26577 D wpa_supplicant: wlan0: Control interface command 'SCAN TYPE=ONLY freq=2412'
03-21 00:40:32.170 26577 26577 D wpa_supplicant: hw.num_modes = 2
03-21 00:40:32.170 26577 26577 D wpa_supplicant: wlan0: Setting scan request: 0.000000 sec
03-21 00:40:32.171 26577 26577 D wpa_supplicant: wlan0: Starting AP scan for wildcard SSID
03-21 00:40:32.171 718 1037 D WifiHW : leave --> reply=OK
03-21 00:40:32.171 718 1037 D WifiHW :
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: Building WPS IE for Probe Request
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Version (hardcoded 0x10)
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Request Type
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Config Methods (4288)
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * UUID-E
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Primary Device Type
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * RF Bands (1)
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Association State
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Configuration Error (0)
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Device Password ID (0)
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Manufacturer
03-21 00:40:32.171 718 1037 D WifiStateMachine: [1,521,607,232,171 ms] noteScanstart no scan source uid -2
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Model Name
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Model Number
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Device Name
03-21 00:40:32.171 26577 26577 D wpa_supplicant: WPS: * Version2 (0x20)
03-21 00:40:32.171 26577 26577 D wpa_supplicant: P2P: * P2P IE header
03-21 00:40:32.172 26577 26577 D wpa_supplicant: P2P: * Capability dev=25 group=00
03-21 00:40:32.172 26577 26577 D wpa_supplicant: P2P: * Listen Channel: Regulatory Class 81 Channel 6
03-21 00:40:32.172 26577 26577 D wpa_supplicant: wlan0: Limit manual scan to specified channels
03-21 00:40:32.172 26577 26577 D wpa_supplicant: wlan0: Add radio work 'scan'@0xb8a4dba0
03-21 00:40:32.172 26577 26577 D wpa_supplicant: wlan0: First radio work item in the queue - schedule start immediately
03-21 00:40:32.172 26577 26577 D wpa_supplicant: wlan0: Starting radio work 'scan'@0xb8a4dba0 after 0.000098 second wait
03-21 00:40:32.172 26577 26577 D wpa_supplicant: wlan0: nl80211: scan request
03-21 00:40:32.172 26577 26577 D wpa_supplicant: nl80211: Scan SSID - hexdump(len=0): [NULL]
03-21 00:40:32.172 26577 26577 D wpa_supplicant: nl80211: Scan extra IEs - hexdump(len=164): 7f 04 00 00 0a 02 dd 89 00 50 f2 04 10 4a 00 01 10 10 3a 00 01 00 10 08 00 02 42 88 10 47 00 10 38 e6 fa 62 c5 66 59 6e 87 15 e5 14 0e 3f a6 eb 10 54 00 08 00 0a 00 50 f2 04 00 05 10 3c 00 01 01 10 02 00 02 00 00 10 09 00 02 00 00 10 12 00 02 00 00 10 21 00 03 42 4c 55 10 23 00 0b 42 4c 55 20 44 41 53 48 20 4c 32 10 24 00 0b 42 4c 55 20 44 41 53 48 20 4c 32 10 11 00 0b 42 4c 55 5f 44 41 53 48 5f 4c 32 10 49 00 06 00 37 2a 00 01 20 dd 11 50 6f 9a 09 02 02 00 25 00 06 05 00 41 52 04 51 06
03-21 00:40:32.172 26577 26577 D wpa_supplicant: nl80211: Scan frequency 2412 MHz
03-21 00:40:32.172 1543 1551 I PerfService: PerfServiceNative_getPackName
03-21 00:40:32.173 718 735 I libPerfService: perfGetLastBoostPid 20287
03-21 00:40:32.173 718 735 D PerfServiceManager: [PerfService] getLastBoostPid 20287
03-21 00:40:32.173 718 735 I libPerfService: perfGetLastBoostPid 20287
03-21 00:40:32.174 26577 26577 D wpa_supplicant: Scan requested (ret=0) - scan timeout 30 seconds
03-21 00:40:32.174 26577 26577 D wpa_supplicant: nl80211: Event message available
03-21 00:40:32.174 26577 26577 D wpa_supplicant: nl80211: Ignored event (cmd=33) for foreign interface (ifindex 14 wdev 0x0)
03-21 00:40:32.174 26577 26577 D wpa_supplicant: nl80211: Drv Event 33 (NL80211_CMD_TRIGGER_SCAN) received for wlan0
03-21 00:40:32.174 26577 26577 D wpa_supplicant: wlan0: nl80211: Scan trigger
03-21 00:40:32.174 26577 26577 D wpa_supplicant: wlan0: Event SCAN_STARTED (47) received
03-21 00:40:32.174 26577 26577 D wpa_supplicant: wlan0: Own scan request started a scan in 0.000404 seconds
03-21 00:40:32.174 26577 26577 D wpa_supplicant: CTRL_IFACE monitor sent successfully to /data/misc/wifi/sockets/wpa_ctrl_718-6\x00
03-21 00:40:32.174 718 26578 D WifiHW : [1] get event: IFNAME=wlan0 <3>CTRL-EVENT-SCAN-STARTED
03-21 00:40:32.174 718 26578 D WifiHW : [2] get event: IFNAME=wlan0 CTRL-EVENT-SCAN-STARTED
03-21 00:40:32.175 718 26576 D WifiHAL : event received NL80211_CMD_TRIGGER_SCAN
03-21 00:40:32.175 718 26578 D WifiMonitor: Event [IFNAME=wlan0 CTRL-EVENT-SCAN-STARTED ]
03-21 00:40:32.175 718 26578 E WifiMonitor: handleEvent unknown: 14 CTRL-EVENT-SCAN-STARTED
03-21 00:40:32.175 718 26578 D WifiHW : enter -->wifi_wait_on_socket buflen=2048
03-21 00:40:32.182 217 379 D AALService: Output backlight = 546/1023, CABC gain = 265
03-21 00:40:32.197 217 379 D AALService: Output backlight = 545/1023, CABC gain = 265
03-21 00:40:32.211 217 379 D AALService: Output backlight = 549/1023, CABC gain = 264
03-21 00:40:32.240 217 379 D AALService: Output backlight = 552/1023, CABC gain = 263
03-21 00:40:32.254 217 379 D AALService: Output backlight = 551/1023, CABC gain = 263
03-21 00:40:32.269 217 379 D AALService: Output backlight = 555/1023, CABC gain = 262
03-21 00:40:32.283 217 379 D AALService: Output backlight = 554/1023, CABC gain = 262
03-21 00:40:32.312 217 379 D AALService: Output backlight = 557/1023, CABC gain = 261
03-21 00:40:32.327 217 379 D AALService: Output backlight = 556/1023, CABC gain = 261
03-21 00:40:32.355 217 379 D AALService: Output backlight = 560/1023, CABC gain = 260
03-21 00:40:32.367 718 718 E WifiTrafficPoller: TRAFFIC_STATS_POLL true Token 1789 num clients 5
03-21 00:40:32.368 718 718 E WifiTrafficPoller: packet count Tx=402590 Rx=726058
03-21 00:40:32.370 217 379 D AALService: Output backlight = 559/1023, CABC gain = 260
03-21 00:40:32.384 217 379 D AALService: Output backlight = 558/1023, CABC gain = 260
03-21 00:40:32.413 217 379 D AALService: Output backlight = 561/1023, CABC gain = 259
03-21 00:40:32.423 718 1027 D InputReader: AP_PROF:AppLaunch_dispatchPtr:Down:470121756, ID:0, Index:-1190185160
03-21 00:40:32.423 718 1027 I PerfService: PerfServiceNative_boostEnableAsync:3
03-21 00:40:32.424 718 1049 I libPerfService: 3: set freq: 819000
03-21 00:40:32.424 718 1026 D PowerManagerService: userActivityFromNative
03-21 00:40:32.425 718 1026 D PowerManagerService: userActivityNoUpdateLocked: eventTime=470121756, event=2, flags=0x0, uid=1000
03-21 00:40:32.425 718 1049 I libPerfService: 3: set: 3
03-21 00:40:32.425 718 1026 D PowerManagerNotifier: onUserActivity: event=2, uid=1000
03-21 00:40:32.425 718 1026 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x9, nextTimeout=470125839 (in 4081 ms)
03-21 00:40:32.425 718 1026 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:32.425 718 1026 I PowerManagerService: setBrightness mButtonLight, screenBrightness=163
03-21 00:40:32.425 718 1026 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x0, mUserActivitySummary=0x9, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:32.426 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_DOWN, actionButton=0, id[0]=0, x[0]=298.3784, y[0]=334.5818, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470121756, downTime=470121756, deviceId=2, source=0x1002 }
03-21 00:40:32.427 217 379 D AALService: Output backlight = 560/1023, CABC gain = 259
03-21 00:40:32.438 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=298.3784, y[0]=334.5818, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470121771, downTime=470121756, deviceId=2, source=0x1002 }
03-21 00:40:32.453 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=298.3784, y[0]=334.5818, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470121785, downTime=470121756, deviceId=2, source=0x1002 }
03-21 00:40:32.456 217 379 D AALService: Output backlight = 559/1023, CABC gain = 259
03-21 00:40:32.468 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=298.3784, y[0]=334.5818, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470121800, downTime=470121756, deviceId=2, source=0x1002 }
03-21 00:40:32.470 217 379 D AALService: Output backlight = 558/1023, CABC gain = 259
03-21 00:40:32.482 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_MOVE, actionButton=0, id[0]=0, x[0]=298.3784, y[0]=334.5818, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470121815, downTime=470121756, deviceId=2, source=0x1002 }
03-21 00:40:32.485 217 379 D AALService: Output backlight = 562/1023, CABC gain = 258
03-21 00:40:32.496 718 1027 D InputReader: AP_PROF:AppLaunch_dispatchPtr:Up:470121829, ID:0, Index:-1190181768
03-21 00:40:32.496 718 1027 I PerfService: PerfServiceNative_boostEnableTimeoutMsAsync:3, 100
03-21 00:40:32.498 1072 1072 D SettingsInterface: from settings cache , name = sound_effects_enabled , value = 0
03-21 00:40:32.499 217 379 D AALService: Output backlight = 561/1023, CABC gain = 258
03-21 00:40:32.501 718 1441 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:32.501 718 1441 V WindowManager: findFocusedWindow: Found new focus @ 2 = Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
03-21 00:40:32.503 718 1441 V WindowManager: Set focused app to: AppWindowToken{b627f01 token=Token{aa2ace8 ActivityRecord{706d60b u0 com.google.android.apps.messaging/.ui.conversation.ConversationActivity t508}}} old focus=AppWindowToken{cc4138a token=Token{e7d09f5 ActivityRecord{3fd7b2c u0 com.android.systemui/.recents.RecentsActivity t61}}} moveFocusNow=true
03-21 00:40:32.504 718 1441 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:32.504 718 1441 V WindowManager: findFocusedWindow: Reached focused app=AppWindowToken{b627f01 token=Token{aa2ace8 ActivityRecord{706d60b u0 com.google.android.apps.messaging/.ui.conversation.ConversationActivity t508}}}
03-21 00:40:32.505 718 1441 V WindowManager: Changing focus from Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity} to null Callers=com.android.server.wm.WindowManagerService.setFocusedApp:4470 com.android.server.am.ActivityManagerService.setFocusedActivityLocked:2927 com.android.server.am.ActivityStack.moveTaskToFrontLocked:4430 com.android.server.am.ActivityStackSupervisor.findTaskToMoveToFrontLocked:3175
03-21 00:40:32.505 718 1441 D WindowManager: Input focus has changed to null
03-21 00:40:32.505 718 769 I WindowManager: Focus moving from Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity} to null
03-21 00:40:32.506 718 769 I WindowManager: Losing focus: Window{1e893d0 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}
03-21 00:40:32.507 718 1441 D PowerManagerService: acquireWakeLockInternal: lock=62844727, flags=0x1, tag="*launch*", ws=WorkSource{10058}, uid=1000, pid=718
03-21 00:40:32.507 718 1049 I libPerfService: 1: set freq: 1300000
03-21 00:40:32.507 718 1441 D PowerManagerService: updateWakeLockSummaryLocked: mWakefulness=Awake, mWakeLockSummary=0x1
03-21 00:40:32.507 718 1049 I libPerfService: 1: set: 4
03-21 00:40:32.507 718 1441 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x9, nextTimeout=470125839 (in 3998 ms)
03-21 00:40:32.508 718 1441 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:32.508 718 1441 I PowerManagerService: setBrightness mButtonLight, screenBrightness=163
03-21 00:40:32.508 718 1441 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x1, mUserActivitySummary=0x9, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:32.508 718 1441 D PowerManagerService: Acquiring suspend blocker "PowerManagerService.WakeLocks".
03-21 00:40:32.508 718 1441 D PowerManagerNotifier: onWakeLockAcquired: flags=1, tag="*launch*", packageName=android, ownerUid=1000, ownerPid=718, workSource=WorkSource{10058}
03-21 00:40:32.512 1072 1072 D ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{6733a9e token=android.os.BinderProxy@f20497f {com.android.systemui/com.android.systemui.recents.RecentsActivity}}
03-21 00:40:32.514 718 1372 I libPerfService: perfSetFavorPid - pid:19353, 4b99
03-21 00:40:32.520 718 1372 D InputReader: InputReader:: getSwitchState lock
03-21 00:40:32.520 718 1372 D InputReader: InputReader::getStateLocked:: return
03-21 00:40:32.523 718 1372 D ActivityManager: Delay resumeKeyDispatchingLocked() to avoid deadlock.
03-21 00:40:32.526 718 754 V NetworkStats: setKernelCounterSet uid=10058 set=1
03-21 00:40:32.527 718 754 V NetworkStats: setKernelCounterSet uid=10013 set=1
03-21 00:40:32.527 1072 1072 D ActivityThread: ACT-PAUSE_ACTIVITY handled : 1 / android.os.BinderProxy@f20497f
03-21 00:40:32.528 1072 1072 V WallpaperService: Delivering touch event: MotionEvent { action=ACTION_UP, actionButton=0, id[0]=0, x[0]=298.3784, y[0]=334.5818, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x3, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=470121829, downTime=470121756, deviceId=2, source=0x1002 }
03-21 00:40:32.528 217 379 D AALService: Output backlight = 560/1023, CABC gain = 258
03-21 00:40:32.545 193 193 I SurfaceFlinger: [Built-in Screen (type:0)] fps:59.482067,dur:1008.71,max:71.98,min:13.31
03-21 00:40:32.557 217 379 D AALService: Output backlight = 559/1023, CABC gain = 258
03-21 00:40:32.568 1072 1389 D OpenGLRenderer: CacheTexture 12 upload: x, y, width height = 0, 0, 512, 99
03-21 00:40:32.571 217 379 D AALService: Output backlight = 558/1023, CABC gain = 258
03-21 00:40:32.597 718 1049 D PerfServiceManager: [PerfService] MESSAGE_TIMEOUT:103
03-21 00:40:32.598 718 1049 I libPerfService: 3: set freq: 1300000
03-21 00:40:32.598 718 1049 I libPerfService: 3: set freq max: 0
03-21 00:40:32.600 217 379 D AALService: Output backlight = 561/1023, CABC gain = 257
03-21 00:40:32.603 19417 19427 I art : CollectorTransition marksweep + semispace GC freed 1922(-324KB) AllocSpace objects, 0(0B) LOS objects, 17% free, 9MB/11MB, paused 78.908ms total 78.908ms
03-21 00:40:32.603 19417 19425 I System : FinalizerDaemon: finalize objects = 137
03-21 00:40:32.629 217 379 D AALService: Output backlight = 560/1023, CABC gain = 257
03-21 00:40:32.635 19353 19363 I art : CollectorTransition marksweep + semispace GC freed 3503(-532KB) AllocSpace objects, 0(0B) LOS objects, 16% free, 10MB/12MB, paused 117.589ms total 117.589ms
03-21 00:40:32.636 19353 19361 I System : FinalizerDaemon: finalize objects = 1599
03-21 00:40:32.637 718 2141 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:32.637 718 2141 V WindowManager: findFocusedWindow: No focusable windows.
03-21 00:40:32.640 19353 19353 V ActivityThread: Performing resume of ActivityRecord{7f7dcfc token=android.os.BinderProxy@c60f85 {com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity}}
03-21 00:40:32.657 217 379 D AALService: Output backlight = 559/1023, CABC gain = 257
03-21 00:40:32.658 19353 19353 I Bugle : SearchUtils: CONNECT #1
03-21 00:40:32.672 217 379 D AALService: Output backlight = 558/1023, CABC gain = 257
03-21 00:40:32.700 19417 19417 D ActivityThread: SVC-Calling onStartCommand: com.google.android.gms.walletp2p.service.firstparty.FirstPartyWalletP2PService@fbdceb7, flags=0, startId=3
03-21 00:40:32.700 19417 19417 D ActivityThread: SVC-SERVICE_ARGS handled : 0 / ServiceArgsData{token=android.os.BinderProxy@c84018c startId=3 args=Intent { cmp=com.google.android.gms/.walletp2p.service.firstparty.FirstPartyWalletP2PService }}
03-21 00:40:32.701 217 379 D AALService: Output backlight = 557/1023, CABC gain = 257
03-21 00:40:32.701 718 1127 D ActivityManager: getContentProviderImpl: from caller=android.app.ApplicationThreadProxy@d216a1d (pid=19417, userId=0) to get content provider com.google.android.gms.auth.accounts cpr=ContentProviderRecord{a606db8 u0 com.google.android.gms/.auth.account.be.legacy.AccountContentProvider}
03-21 00:40:32.702 718 1127 D ActivityManager: getContentProviderImpl: updateLruProcessLocked cpr.proc=ProcessRecord{3218e45 15272:com.google.android.gms.persistent/u0a13}
03-21 00:40:32.703 19417 19503 D ActivityThread: holder:android.app.IActivityManager$ContentProviderHolder@783d80e, holder.provider:android.content.ContentProviderProxy@7cb722f
03-21 00:40:32.715 217 379 D AALService: Output backlight = 556/1023, CABC gain = 257
03-21 00:40:32.733 19353 19353 D SettingsInterface: from settings cache , name = sms_default_application , value = com.google.android.apps.messaging
03-21 00:40:32.734 718 734 D AppOps : noteOperation: allowing code 62 uid 10013 package com.google.android.gms
03-21 00:40:32.735 718 734 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true
03-21 00:40:32.740 1390 1643 D SettingsInterface: from settings cache , name = multi_sim_sms , value = 1
03-21 00:40:32.744 217 379 D AALService: Output backlight = 555/1023, CABC gain = 257
03-21 00:40:32.745 718 1127 D PowerManagerService: acquireWakeLockInternal: lock=12586595, flags=0x1, tag="bugle_datamodel_executor_wakelock", ws=null, uid=10058, pid=19353
03-21 00:40:32.745 718 1127 D PowerManagerService: updateWakeLockSummaryLocked: mWakefulness=Awake, mWakeLockSummary=0x1
03-21 00:40:32.745 718 1127 D PowerManagerService: updateUserActivitySummaryLocked: mWakefulness=Awake, mUserActivitySummary=0x9, nextTimeout=470125839 (in 3760 ms)
03-21 00:40:32.746 718 1127 D DisplayPowerController: requestPowerState: policy=BRIGHT, useProximitySensor=false, screenBrightness=163, screenAutoBrightnessAdjustment=0.0, brightnessSetByUser=true, useAutoBrightness=false, blockScreenOn=false, lowPowerMode=false, boostScreenBrightness=false, dozeScreenBrightness=-1, dozeScreenState=UNKNOWN, waitForNegativeProximity=false
03-21 00:40:32.746 718 1127 I PowerManagerService: setBrightness mButtonLight, screenBrightness=163
03-21 00:40:32.746 718 1127 D PowerManagerService: updateDisplayPowerStateLocked: mDisplayReady=true, policy=3, mWakefulness=1, mWakeLockSummary=0x1, mUserActivitySummary=0x9, mBootCompleted=true, mScreenBrightnessBoostInProgress=false
03-21 00:40:32.746 718 1127 D PowerManagerNotifier: onWakeLockAcquired: flags=1, tag="bugle_datamodel_executor_wakelock", packageName=com.google.android.apps.messaging, ownerUid=10058, ownerPid=19353, workSource=null
03-21 00:40:32.746 718 1127 D AppOps : startOperation: allowing code 40 uid 10058 package com.google.android.apps.messaging
03-21 00:40:32.754 718 1383 D ActivityManager: getContentProviderImpl: from caller=android.app.ApplicationThreadProxy@9ba7a60 (pid=19353, userId=0) to get content provider sms cpr=ContentProviderRecord{feb197d u0 com.android.providers.telephony/.SmsProvider}
03-21 00:40:32.755 718 1383 D ActivityManager: getContentProviderImpl: updateLruProcessLocked cpr.proc=ProcessRecord{c471f74 1390:com.android.phone/1001}
03-21 00:40:32.756 19353 19414 D ActivityThread: holder:android.app.IActivityManager$ContentProviderHolder@dfc4485, holder.provider:android.content.ContentProviderProxy@527e2da
03-21 00:40:32.757 19353 19353 D Bugle : DraftMessageData: loading for conversationId=1
03-21 00:40:32.757 718 22892 D AppOps : noteOperation: allowing code 21 uid 1001 package com.android.phone
03-21 00:40:32.757 718 22892 D AppOps : noteOperation: allowing code 21 uid 10058 package com.google.android.apps.messaging
03-21 00:40:32.758 217 379 D AALService: Output backlight = 554/1023, CABC gain = 257
03-21 00:40:32.759 19353 19353 I Bugle : draft switching to MMS
03-21 00:40:32.760 1390 1575 D SettingsInterface: from settings cache , name = multi_sim_sms , value = 1
03-21 00:40:32.761 1390 1754 D SettingsInterface: from settings cache , name = multi_sim_sms , value = 1
03-21 00:40:32.761 1390 13101 D SettingsInterface: from settings cache , name = multi_sim_sms , value = 1
03-21 00:40:32.784 1390 1576 D SettingsInterface: from settings cache , name = multi_sim_sms , value = 1
03-21 00:40:32.785 1390 1425 D SettingsInterface: from settings cache , name = multi_sim_sms , value = 1
03-21 00:40:32.787 217 379 D AALService: Output backlight = 553/1023, CABC gain = 257
03-21 00:40:32.788 718 1441 D AppOps : noteOperation: allowing code 14 uid 1001 package com.android.phone
03-21 00:40:32.788 718 1441 D AppOps : noteOperation: allowing code 14 uid 10058 package com.google.android.apps.messaging
03-21 00:40:32.794 1390 1426 D SettingsInterface: from settings cache , name = sms_default_application , value = com.google.android.apps.messaging
03-21 00:40:32.794 1390 1426 D Mms/Provider/Sms: query begin, uri = content://sms, selection = ((type IN (1, 4, 6, 5, 2)) AND (thread_id>=0)) AND date<1521607089000
03-21 00:40:32.796 1390 1426 D Mms/Provider/Sms: query end
03-21 00:40:32.798 1390 1643 D SettingsInterface: from settings cache , name = multi_sim_sms , value = 1
03-21 00:40:32.799 1390 1575 D SettingsInterface: from settings cache , name = multi_sim_sms , value = 1
03-21 00:40:32.801 19353 19353 I Bugle : RCS Status: RCS is disabled because the device has multiple SIM slots
03-21 00:40:32.801 217 379 D AALService: Output backlight = 552/1023, CABC gain = 257
03-21 00:40:32.804 19353 19353 D ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{7f7dcfc token=android.os.BinderProxy@c60f85 {com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity}}
03-21 00:40:32.804 19353 19353 V ActivityThread: Resume ActivityRecord{7f7dcfc token=android.os.BinderProxy@c60f85 {com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity}} started activity: false, hideForNow: false, finished: false
03-21 00:40:32.804 19353 19353 V ActivityThread: Resuming ActivityRecord{7f7dcfc token=android.os.BinderProxy@c60f85 {com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity}} with isForward=true
03-21 00:40:32.807 19353 19353 V PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{7eeb90d com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity,ident = 0}, this =com.android.internal.policy.PhoneWindow$DecorView{f6a7d2c V.E...... R.....ID 0,0-480,800}
03-21 00:40:32.807 19353 19353 V ActivityThread: Scheduling idle handler for ActivityRecord{7f7dcfc token=android.os.BinderProxy@c60f85 {com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity}}
03-21 00:40:32.808 19353 19353 D ActivityThread: ACT-RESUME_ACTIVITY handled : 1 / android.os.BinderProxy@c60f85
03-21 00:40:32.811 193 193 I BufferQueue: [unnamed-193-4070](this:0xb8f59690,id:4070,api:0,p:-1,c:-1) BufferQueue core=(193:/system/bin/surfaceflinger)
03-21 00:40:32.811 193 193 D BufferQueueDump: [unnamed-193-4070] this:0xb8f73c00, value:0xbecb5650, iLen:6
03-21 00:40:32.812 193 193 I BufferQueueConsumer: [unnamed-193-4070](this:0xb8f59690,id:4070,api:0,p:-1,c:193) connect(C): consumer=(193:/system/bin/surfaceflinger) controlledByApp=false
03-21 00:40:32.812 193 193 D BufferQueueDump: [unnamed-193-4070] this:0xb8f73c00, value:0xbecb5670, iLen:6
03-21 00:40:32.812 718 1127 D ActivityManager: getContentProviderImpl: from caller=android.app.ApplicationThreadProxy@bef8b19 (pid=19353, userId=0) to get content provider mms cpr=ContentProviderRecord{f223270 u0 com.android.providers.telephony/.MmsProvider}
03-21 00:40:32.812 193 193 I BufferQueueConsumer: [unnamed-193-4070](this:0xb8f59690,id:4070,api:0,p:-1,c:193) setConsumerName: unnamed-193-4070
03-21 00:40:32.812 193 193 D BufferQueueDump: [com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity] this:0xb8f73c00, value:0xbecb56c8, iLen:6
03-21 00:40:32.812 193 193 I BufferQueueConsumer: [com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity](this:0xb8f59690,id:4070,api:0,p:-1,c:193) setConsumerName: com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity
03-21 00:40:32.812 718 1127 D ActivityManager: getContentProviderImpl: updateLruProcessLocked cpr.proc=ProcessRecord{c471f74 1390:com.android.phone/1001}
03-21 00:40:32.812 193 193 I BufferQueueConsumer: [com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity](this:0xb8f59690,id:4070,api:0,p:-1,c:193) setDefaultBufferSize: width=480 height=800
03-21 00:40:32.813 19353 19414 D ActivityThread: holder:android.app.IActivityManager$ContentProviderHolder@4b152a6, holder.provider:android.content.ContentProviderProxy@912f4e7
03-21 00:40:32.813 718 745 V WindowManager: Looking for focus: 7 = Window{289a461 u0 StatusBar}, flags=-2122055608, canReceive=false
03-21 00:40:32.813 718 745 V WindowManager: findFocusedWindow: Found new focus @ 4 = Window{23529c6 u0 com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity}
03-21 00:40:32.814 718 745 V WindowManager: Changing focus from null to Window{23529c6 u0 com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity} Callers=com.android.server.wm.WindowManagerService.relayoutWindow:3589 com.android.server.wm.Session.relayout:201 android.view.IWindowSession$Stub.onTransact:284 com.android.server.wm.Session.onTransact:133
03-21 00:40:32.814 718 745 D WindowManager: Input focus has changed to Window{23529c6 u0 com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity}
03-21 00:40:32.815 1072 1072 D PhoneStatusBar: setSystemUiVisibility vis=0 mask=ffffffff oldVal=4700 newVal=0 diff=4700
03-21 00:40:32.816 1072 1072 D PhoneStatusBar: hiding the MENU button
03-21 00:40:32.817 718 2139 D AppOps : noteOperation: allowing code 21 uid 1001 package com.android.phone
03-21 00:40:32.817 718 2139 D AppOps : noteOperation: allowing code 21 uid 10058 package com.google.android.apps.messaging
03-21 00:40:32.818 718 769 I WindowManager: Focus moving from null to Window{23529c6 u0 com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity}
03-21 00:40:32.818 718 1372 D AppOps : noteOperation: allowing code 14 uid 1001 package com.android.phone
03-21 00:40:32.818 718 769 I WindowManager: Gaining focus: Window{23529c6 u0 com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity}
03-21 00:40:32.818 718 1372 D AppOps : noteOperation: allowing code 14 uid 10058 package com.google.android.apps.messaging
03-21 00:40:32.819 19353 19353 D Surface : Surface::allocateBuffers(this=0xb907ac48)
03-21 00:40:32.819 19353 19447 D OpenGLRenderer: CanvasContext() 0xb90ffce8 initialize window=0xb907ac50, title=com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity
03-21 00:40:32.819 19353 19447 D Surface : Surface::connect(this=0xb907ac48,api=1)
03-21 00:40:32.820 193 4223 I BufferQueueProducer: [com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity](this:0xb8f59690,id:4070,api:1,p:19353,c:193) connect(P): api=1 producer=(19353:com.google.android.apps.messaging) producerControlledByApp=true
03-21 00:40:32.820 19353 19447 W libEGL : [ANDROID_RECORDABLE] format: 1
03-21 00:40:32.820 193 360 D BufferQueueProducer: [com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity](this:0xb8f59690,id:4070,api:1,p:19353,c:193) allocateBuffers: allocating from 0 buffers up to 3 buffers
03-21 00:40:32.820 193 360 I [MALI][Gralloc]: usage: 0x900, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:32.821 19353 19447 D Surface : Surface::setBufferCount(this=0xb907ac48,bufferCount=4)
03-21 00:40:32.821 193 1520 I BufferQueueProducer: [com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity](this:0xb8f59690,id:4070,api:1,p:19353,c:193) setBufferCount: count = 4
03-21 00:40:32.821 193 360 D GraphicBuffer: alloc, handle(0xb8f4a548) (w:480 h:800 s:480 f:0x1 u:0x000900) err(0)
03-21 00:40:32.822 193 360 I [MALI][Gralloc]: usage: 0x900, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:32.824 193 360 D GraphicBuffer: alloc, handle(0xb8ee55e8) (w:480 h:800 s:480 f:0x1 u:0x000900) err(0)
03-21 00:40:32.824 193 360 I [MALI][Gralloc]: usage: 0x900, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:32.825 1390 1754 D SettingsInterface: from settings cache , name = sms_default_application , value = com.google.android.apps.messaging
03-21 00:40:32.826 1390 1754 D Mms/Provider/Mms: query begin, uri = content://mms, selection = ((msg_box IN (1, 4, 2, 5)) AND (m_type IN (128, 130, 132)) AND (thread_id>=0)) AND date<1521607089
03-21 00:40:32.827 1390 1754 D Mms/Provider/Mms: query getReadableDatabase query end cursor count =1
03-21 00:40:32.827 193 360 D GraphicBuffer: alloc, handle(0xb8ee3588) (w:480 h:800 s:480 f:0x1 u:0x000900) err(0)
03-21 00:40:32.827 193 360 D BufferQueueProducer: [com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity](this:0xb8f59690,id:4070,api:1,p:19353,c:193) allocateBuffers: allocating from 3 buffers up to 3 buffers
03-21 00:40:32.827 193 1520 D GraphicBuffer: free, handle(0xb8f4a548) (w:480 h:800 s:480 f:0x1 u:0x000900)
03-21 00:40:32.828 193 1520 D GraphicBuffer: free, handle(0xb8ee55e8) (w:480 h:800 s:480 f:0x1 u:0x000900)
03-21 00:40:32.828 193 1520 D GraphicBuffer: free, handle(0xb8ee3588) (w:480 h:800 s:480 f:0x1 u:0x000900)
03-21 00:40:32.828 193 1520 I BufferQueueConsumer: [com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity](this:0xb8f59690,id:4070,api:1,p:19353,c:193) getReleasedBuffers: returning mask 0xffffffffffffffff
03-21 00:40:32.829 1390 1754 D Mms/Provider/Mms: query end
03-21 00:40:32.830 193 4223 I BufferQueueProducer: [com.google.android.apps.messaging/com.google.android.apps.messaging.ui.conversation.ConversationActivity](this:0xb8f59690,id:4070,api:1,p:19353,c:193) new GraphicBuffer needed
03-21 00:40:32.831 193 4223 I [MALI][Gralloc]: usage: 0xf02, format: 1 stride: 480 vertical_stride: 800 size: 1536000
03-21 00:40:32.831 217 379 D AALService: Output backlight = 551/1023, CABC gain = 257
03-21 00:40:32.832 193 4223 D GraphicBuffer: alloc, handle(0xb8f4a548) (w:480 h:800 s:480 f:0x1 u:0x000f02) err(0)
03-21 00:40:32.837 19353 19447 D GraphicBuffer: register, handle(0xb91d1b80) (w:480 h:800 s:480 f:0x1 u:0x000f02)
03-21 00:40:32.839 19353 19353 D SettingsInterface: from settings cache , name = time_12_24 , value = 12
03-21 00:40:32.840 19353 19415 I BugleDataModel: SyncMessagesAction: Starting batch for messages from 1521607088539 to 1521607232733 (message update limit = 80, message scan limit = 4000)
03-21 00:40:32.840 19353 19444 D MPlugin : createInstance(): Begin = 470122174
03-21 00:40:32.840 19353 19444 D MPlugin : create Instance (two parameters) with : com.mediatek.common.util.IWebProtocolNames
03-21 00:40:32.841 19353 19444 D MPlugin : Clazz exists on mapping table : true
03-21 00:40:32.841 19353 19444 D MPlugin : create Instance from : com.mediatek.op.util.DefaultWebProtocolNames
03-21 00:40:32.842 19353 19444 D MPluginGuard: SystemProperties is 1
03-21 00:40:32.842 19353 19444 D MPluginGuard: /system/plugin/FwkPlugin/FwkPlugin.apk(com.mediatek.fwk.plugin) exists in the sApkCache with status : Success
03-21 00:40:32.842 19353 19444 D MPluginGuard: (FwkPlugin.apk) had been checked --> Success
03-21 00:40:32.842 718 2141 D AppOps : noteOperation: allowing code 21 uid 1001 package com.android.phone
03-21 00:40:32.842 718 2141 D AppOps : noteOperation: allowing code 21 uid 10058 package com.google.android.apps.messaging
03-21 00:40:32.842 19353 19444 V MPlugin : Get cached path class loader (/system/plugin/FwkPlugin/FwkPlugin.apk)
03-21 00:40:32.843 19353 19444 D MPlugin : Init PathClassLoader successfully : dalvik.system.PathClassLoader[DexPathList[[zip file "/system/plugin/FwkPlugin/FwkPlugin.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]]
03-21 00:40:32.843 718 22893 D AppOps : noteOperation: allowing code 14 uid 1001 package com.android.phone
03-21 00:40:32.843 718 22893 D AppOps : noteOperation: allowing code 14 uid 10058 package com.google.android.apps.messaging
03-21 00:40:32.844 19353 19444 D MPlugin : Load class : com.mediatek.op.util.DefaultWebProtocolNames successfully
03-21 00:40:32.844 19353 19444 D MPlugin : Create default constructor successfully
03-21 00:40:32.844 19353 19444 D MPlugin : createInstance(): End = 470122178
03-21 00:40:32.845 217 379 D AALService: Output backlight = 554/1023, CABC gain = 256
03-21 00:40:32.845 19353 19444 D DefaultWebProtocolNames: getWebProtocolNames
03-21 00:40:32.849 1390 1425 D SettingsInterface: from settings cache , name = sms_default_application , value = com.google.android.apps.messaging
03-21 00:40:32.849 1390 1425 D Mms/Provider/Sms: query begin, uri = content://sms, selection = ((type IN (1, 4, 6, 5, 2)) AND (thread_id>=0)) AND date>=1521607088000 AND date<1521607233000
03-21 00:40:32.851 1390 1425 D Mms/Provider/Sms: query end
03-21 00:40:32.855 718 1372 D AppOps : noteOperation: allowing code 21 uid 1001 package com.android.phone
03-21 00:40:32.855 718 1372 D AppOps : noteOperation: allowing code 21 uid 10058 package com.google.android.apps.messaging
03-21 00:40:32.856 718 735 D AppOps : noteOperation: allowing code 14 uid 1001 package com.android.phone
03-21 00:40:32.856 718 735 D AppOps : noteOperation: allowing code 14 uid 10058 package com.google.android.apps.messaging
03-21 00:40:32.859 217 379 D AALService: enableAALEvent: 1 -> 0
03-21 00:40:32.860 1390 1643 D SettingsInterface: from settings cache , name = sms_default_application , value = com.google.android.apps.messaging
03-21 00:40:32.860 1390 1643 D Mms/Provider/Mms: query begin, uri = content://mms, selection = ((msg_box IN (1, 4, 2, 5)) AND (m_type IN (128, 130, 132)) AND (thread_id>=0)) AND date>=1521607088 AND date<1521607233
03-21 00:40:32.870 19353 19353 D SettingsInterface: from settings cache , name = sms_default_application , value = com.google.android.apps.messaging
03-21 00:40:32.872 19353 19353 D SettingsInterface: from settings cache , name = time_12_24 , value = 12
03-21 00:40:32.873 217 379 D AALService: enableAALEvent: 0 -> 1
03-21 00:40:32.873 217 379 D AALService: Output backlight = 553/1023, CABC gain = 256
03-21 00:40:32.880 19353 19353 D SettingsInterface: from settings cache , name = time_12_24 , value = 12
03-21 00:40:32.880 19353 19443 D MPlugin : createInstance(): Begin = 470122214
03-21 00:40:32.880 19353 19443 D MPlugin : create Instance (two parameters) with : com.mediatek.common.util.IWebProtocolNames
03-21 00:40:32.881 19353 19353 D SettingsInterface: from settings cache , name = time_12_24 , value = 12
03-21 00:40:32.881 19353 19443 D MPlugin : Clazz exists on mapping table : true
03-21 00:40:32.881 19353 19443 D MPlugin : create Instance from : com.mediatek.op.util.DefaultWebProtocolNames
03-21 00:40:32.881 19353 19443 D MPluginGuard: SystemProperties is 1
03-21 00:40:32.882 19353 19443 D MPluginGuard: /system/plugin/FwkPlugin/FwkPlugin.apk(com.mediatek.fwk.plugin) exists in the sApkCache with status : Success
03-21 00:40:32.882 19353 19443 D MPluginGuard: (FwkPlugin.apk) had been checked --> Success
03-21 00:40:32.882 19353 19443 V MPlugin : Get cached path class loader (/system/plugin/FwkPlugin/FwkPlugin.apk)
03-21 00:40:32.882 19353 19353 D SettingsInterface: from settings cache , name = time_12_24 , value = 12
03-21 00:40:32.882 19353 19443 D MPlugin : Init PathClassLoader successfully : dalvik.system.PathClassLoader[DexPathList[[zip file "/system/plugin/FwkPlugin/FwkPlugin.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]]
03-21 00:40:32.882 19353 19443 D MPlugin : Load class : com.mediatek.op.util.DefaultWebProtocolNames successfully
03-21 00:40:32.882 19353 19443 D MPlugin : Create default constructor successfully
03-21 00:40:32.882 19353 19443 D MPlugin : createInstance(): End = 470122216
03-21 00:40:32.882 19353 19443 D DefaultWebProtocolNames: getWebProtocolNames
03-21 00:40:32.886 19353 19353 D SettingsInterface: from settings cache , name = time_12_24 , value = 12
03-21 00:40:32.886 19353 19435 D MPlugin : createInstance(): Begin = 470122219
03-21 00:40:32.886 19353 19435 D MPlugin : create Instance (two parameters) with : com.mediatek.common.util.IWebProtocolNames