-
Notifications
You must be signed in to change notification settings - Fork 11
/
crash.log
3083 lines (3082 loc) · 350 KB
/
crash.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
int logctl_get(): open '/dev/hwlog_switch' fail -1, 13. Permission denied
Note: log switch off, only log_main and log_events will have logs!
--------- beginning of main
12-28 13:54:11.036 16421 16435 E linker : warning: unable to get realpath for the library "/system/lib64/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:11.036 16387 16387 I CryptoMessageService_CryptoMessageService: subID:1 ss:LOADED
12-28 13:54:11.040 364 2123 I gralloc : Free handle(0x7f8fa88300)
12-28 13:54:11.046 16320 16415 I HwSystemManager: TafficState:default sub id = 0slotIndex = 0 subscriptionId = 0
12-28 13:54:11.053 16320 16415 E HwSystemManager: LeisureTrafficSetting:result is empty
12-28 13:54:11.056 16320 16408 I HwSystemManager: HsmPackageManager:init locale:zh_CN
12-28 13:54:11.058 16320 16410 I HwSystemManager: PowerGenieDbHelper:delete protect app:com.koudle.andyogaexample
12-28 13:54:11.058 16320 16408 I HwSystemManager: PermissionServiceManager:Get hold service:com.huawei.permission.IHoldService$Stub$Proxy@dc4dd8c
12-28 13:54:11.061 16421 16421 W System : ClassLoader referenced unknown path: /system/app/HwPushService/lib/arm64
12-28 13:54:11.068 515 988 I iptables: iptables v1.4.20: owner: Bad value for "--uid-owner" option: "-1"
12-28 13:54:11.068 515 988 I iptables: Try `iptables -h' or 'iptables --help' for more information.
12-28 13:54:11.068 515 988 I iptables: iptables terminated by exit(2)
12-28 13:54:11.068 515 988 E BandwidthController: runIptablesCmd(): res=1 status=512 failed /system/bin/iptables -w -D mobile_reject_list -m owner --uid-owner -1 --jump REJECT
12-28 13:54:11.073 16421 16421 I PushLogAC2713: [main-1]action is android.intent.action.PACKAGE_REMOVED(pushagent/null:-1)
12-28 13:54:11.074 16320 16408 I HwSystemManager: PermissionDBAdapter:refreshAppList begin refreshAppList. reason:get instance, db items size:111
12-28 13:54:11.075 16320 16408 I HwSystemManager: HsmPackageManager:get all installed packages, flag:0, size:227
12-28 13:54:11.077 515 988 I ip6tables: ip6tables v1.4.20: owner: Bad value for "--uid-owner" option: "-1"
12-28 13:54:11.077 515 988 I ip6tables: Try `ip6tables -h' or 'ip6tables --help' for more information.
12-28 13:54:11.077 515 988 I ip6tables: ip6tables terminated by exit(2)
12-28 13:54:11.077 515 988 E BandwidthController: runIptablesCmd(): res=1 status=512 failed /system/bin/ip6tables -w -D mobile_reject_list -m owner --uid-owner -1 --jump REJECT
12-28 13:54:11.081 16421 16445 I PushLogAC2713: [Thread-1807-1807]votedPackage from file:android(pushagent/null:-1)
12-28 13:54:11.082 2241 4322 I PgedBinderListener: kstate callback type:8 value1=15537 value2=KILLED
12-28 13:54:11.083 16421 16445 I PushLogAC2713: [Thread-1807-1807]framework push exist, use framework push first(pushagent/null:-1)
12-28 13:54:11.083 2241 2254 I PgedBinderListener: kstate callback type:8 value1=15245 value2=KILLED
12-28 13:54:11.083 1563 1563 I AppUninstallReceiver: replaced = false dataRemoved = true
12-28 13:54:11.083 1563 1563 I AppUninstallReceiver: package name = com.koudle.andyogaexample
12-28 13:54:11.083 1563 1563 I AppUninstallReceiver: Deleting file : /data/sec_storage/com.koudle.andyogaexample
12-28 13:54:11.084 1563 1563 I AppUninstallReceiver: Deleting file : /data/sec_storage_data/com.koudle.andyogaexample
12-28 13:54:11.088 515 988 I iptables: iptables v1.4.20: owner: Bad value for "--uid-owner" option: "-1"
12-28 13:54:11.088 515 988 I iptables: Try `iptables -h' or 'iptables --help' for more information.
12-28 13:54:11.088 515 988 I iptables: iptables terminated by exit(2)
12-28 13:54:11.088 515 988 E BandwidthController: runIptablesCmd(): res=1 status=512 failed /system/bin/iptables -w -D mobile_reject_list -m owner --uid-owner -1 --jump REJECT
12-28 13:54:11.089 2241 2241 I ash : apps cleanList state changed
12-28 13:54:11.091 16320 16418 I HwSystemManager: SpaceCleanReceiver:no uninstalled trash, pkg:com.koudle.andyogaexample
12-28 13:54:11.094 1724 2397 I HwSystemManager: ProtectAppService:send unprotect list broadcast to FWK, size: 100
12-28 13:54:11.094 1724 2397 I HwSystemManager: , unprotect list:[com.huawei.android.ds, com.autonavi.minimap, cn.wps.moffice_eng, com.android.calculator2, com.huawei.KoBackup, com.nuance.swype.emui, com.akazam.android.wlandialer, com.huawei.phoneservice, ctrip.android.view, com.huawei.hidisk, com.taobao.taobao, com.huawei.android.thememanager, com.huawei.compass, tv.danmaku.bili, com.youku.phone, com.hundsun.stockwinner.zxzq, com.sdu.didi.psnger, com.jingdong.app.mall, cn.amazon.mShop.android, com.MobileTicket, com.umetrip.android.msky.app, com.htinns, com.hexin.plat.android, com.koudai.weishop, com.taobao.trip, com.zhihu.android, com.brandbigdata.ustock, com.tencent.rdm, com.xueqiu.android, com.shanbay.words, com.szzc, com.alibaba.android.rimet, com.ct.client, com.longzhu.tga, com.alibaba.wireless, com.smzdm.client.android, com.sohu.inputmethod.sogou, com.taobao.etao, com.taptap, com.tencent.rtxlite, com.android.vending, com.huajiao, com.tencent.mobileqq, com.spdbccc.app, org.mopria.printplugin, com.unioncast.oleducation, com.netease.newsreader.activity, com.cmbchina.ccd.pluto.cmbActivity, cmb.pb, com.koudai.weidian.buyer, com.csair.mbp, com.rytong.ceair, com.wuba.jiazheng, com.baidu.patient, com.google.android.youtube, com.gelonghui.glhapp, com.lenka, com.ximalaya.ting.android, com.microsoft.office.onenote, com.tc.cm, air.jp.ne.hap.mom, air.jp.ne.hap.chase, air.jp.ne.hap.ushiro, air.jp.ne.hap.fk, air.jp.ne.hap.toast, air.jp.ne.hap.tdb, air.jp.ne.hap.sbc, air.jp.ne.hap.kurukuru, air.jp.ne.hap.nyadle, air.jp.ne.hap.captain, com.huawei.appmarket, com.huawei.android.airsharing, com.google.android.inputmethod.japanese, com.tencent.android.qqdownloader, com.ub.main, com.tencent.minigame8, com.tmall.wireless, com.besttone.hall, chinatelecom.mwallet, com.mobike.mobikeapp, com.ikm, com.rytong.app.bankhx, com.eastmoney.android.berlin, com.webank.wemoney, com.kaola, com.baidu.travel, com.meelive.ingkee, com.pdager, com.huawei.fans, com.huawei.lives, cn.egame.terminal.client4g, com.huawei.wallet, com.telecom.video.ikan4g, com.vmall.client, com.baidu.lbs.waimai, me.ele, com.togo.apps, com.example.koudleren.canvasview, com.unionpay, com.tencent.now]
12-28 13:54:11.095 1724 2397 I SendBroadcastPermission: action:huawei.intent.action.HW_STOPPED_PACKAGE_ACTION, mPermissionType:0
12-28 13:54:11.098 515 988 I ip6tables: ip6tables v1.4.20: owner: Bad value for "--uid-owner" option: "-1"
12-28 13:54:11.098 515 988 I ip6tables: Try `ip6tables -h' or 'ip6tables --help' for more information.
12-28 13:54:11.098 515 988 I ip6tables: ip6tables terminated by exit(2)
12-28 13:54:11.098 515 988 E BandwidthController: runIptablesCmd(): res=1 status=512 failed /system/bin/ip6tables -w -D mobile_reject_list -m owner --uid-owner -1 --jump REJECT
12-28 13:54:11.100 993 2271 W System.err: com.android.server.NativeDaemonConnector$NativeDaemonArgumentException: command '266 bandwidth firewall allow mobile -1 1' failed with '500 266 Usage: bandwidth firewall allow <interface> <appUid>'
12-28 13:54:11.100 993 2271 W System.err: at com.android.server.NativeDaemonConnector.executeForList(NativeDaemonConnector.java:528)
12-28 13:54:11.100 993 2271 W System.err: at com.android.server.NativeDaemonConnector.execute(NativeDaemonConnector.java:386)
12-28 13:54:11.100 993 2271 W System.err: at com.android.server.NativeDaemonConnector.execute(NativeDaemonConnector.java:381)
12-28 13:54:11.100 993 2271 W System.err: at com.android.server.HwNetworkManagementService.executeHsmCommand(HwNetworkManagementService.java:277)
12-28 13:54:11.100 993 2271 W System.err: at com.android.server.HwNetworkManagementService.onTransact(HwNetworkManagementService.java:163)
12-28 13:54:11.100 993 2271 W System.err: at android.os.Binder.execTransact(Binder.java:453)
12-28 13:54:11.101 16320 16415 I HwSystemManager: NativeDaemonConnectManager:send cmd = bandwidth success = false
12-28 13:54:11.109 993 1756 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:11.109 993 1756 W MediaProcessHandler: processOp uid 1000 is not concerned!
12-28 13:54:11.125 16320 16459 I HwSystemManager: TafficState:default sub id = 0slotIndex = 0 subscriptionId = 0
12-28 13:54:11.126 364 421 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:11.126 364 421 I gralloc : Alloc handle(0x7f799c7200): interfmt=0x1, stride=64, size=4096
12-28 13:54:11.127 16452 16467 E linker : readlink('/proc/self/fd/23') failed: Permission denied [fd=23]
12-28 13:54:11.127 16452 16467 E linker : warning: unable to get realpath for the library "/system/lib64/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:11.130 364 419 I gralloc : Free handle(0x7f799c7200)
12-28 13:54:11.131 16320 16459 E HwSystemManager: LeisureTrafficSetting:result is empty
12-28 13:54:11.142 16452 16452 W System : ClassLoader referenced unknown path: /system/app/KeyChain/lib/arm64
12-28 13:54:11.142 515 988 I iptables: iptables v1.4.20: owner: Bad value for "--uid-owner" option: "-1"
12-28 13:54:11.142 515 988 I iptables: Try `iptables -h' or 'iptables --help' for more information.
12-28 13:54:11.143 515 988 I iptables: iptables terminated by exit(2)
12-28 13:54:11.143 515 988 E BandwidthController: runIptablesCmd(): res=1 status=512 failed /system/bin/iptables -w -D wifi_reject_list -m owner --uid-owner -1 --jump REJECT
12-28 13:54:11.148 2241 2254 I PgedBinderListener: kstate callback type:8 value1=15537 value2=KILLED
12-28 13:54:11.153 515 988 I ip6tables: ip6tables v1.4.20: owner: Bad value for "--uid-owner" option: "-1"
12-28 13:54:11.153 515 988 I ip6tables: Try `ip6tables -h' or 'ip6tables --help' for more information.
12-28 13:54:11.153 515 988 I ip6tables: ip6tables terminated by exit(2)
12-28 13:54:11.153 515 988 E BandwidthController: runIptablesCmd(): res=1 status=512 failed /system/bin/ip6tables -w -D wifi_reject_list -m owner --uid-owner -1 --jump REJECT
12-28 13:54:11.161 515 988 I iptables: iptables v1.4.20: owner: Bad value for "--uid-owner" option: "-1"
12-28 13:54:11.161 515 988 I iptables: Try `iptables -h' or 'iptables --help' for more information.
12-28 13:54:11.161 515 988 I iptables: iptables terminated by exit(2)
12-28 13:54:11.161 515 988 E BandwidthController: runIptablesCmd(): res=1 status=512 failed /system/bin/iptables -w -D wifi_reject_list -m owner --uid-owner -1 --jump REJECT
12-28 13:54:11.163 993 2079 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:11.163 993 2079 I MediaProcessHandler: processOp opType: 1, uid: 10027, pid: 15245
12-28 13:54:11.163 993 2079 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10027, pid: 15245
12-28 13:54:11.171 515 988 I ip6tables: ip6tables v1.4.20: owner: Bad value for "--uid-owner" option: "-1"
12-28 13:54:11.171 515 988 I ip6tables: Try `ip6tables -h' or 'ip6tables --help' for more information.
12-28 13:54:11.171 515 988 I ip6tables: ip6tables terminated by exit(2)
12-28 13:54:11.171 515 988 E BandwidthController: runIptablesCmd(): res=1 status=512 failed /system/bin/ip6tables -w -D wifi_reject_list -m owner --uid-owner -1 --jump REJECT
12-28 13:54:11.173 993 2274 W System.err: com.android.server.NativeDaemonConnector$NativeDaemonArgumentException: command '267 bandwidth firewall allow wifi -1 2' failed with '500 267 Usage: bandwidth firewall allow <interface> <appUid>'
12-28 13:54:11.173 993 2274 W System.err: at com.android.server.NativeDaemonConnector.executeForList(NativeDaemonConnector.java:528)
12-28 13:54:11.173 993 2274 W System.err: at com.android.server.NativeDaemonConnector.execute(NativeDaemonConnector.java:386)
12-28 13:54:11.173 993 2274 W System.err: at com.android.server.NativeDaemonConnector.execute(NativeDaemonConnector.java:381)
12-28 13:54:11.173 993 2274 W System.err: at com.android.server.HwNetworkManagementService.executeHsmCommand(HwNetworkManagementService.java:277)
12-28 13:54:11.173 993 2274 W System.err: at com.android.server.HwNetworkManagementService.onTransact(HwNetworkManagementService.java:163)
12-28 13:54:11.173 993 2274 W System.err: at android.os.Binder.execTransact(Binder.java:453)
12-28 13:54:11.173 16320 16459 I HwSystemManager: NativeDaemonConnectManager:send cmd = bandwidth success = false
12-28 13:54:11.204 2241 3244 I ash : start refresh apps, unShown pkgs:[com.android.location.fused, com.huawei.bd]
12-28 13:54:11.205 2241 4322 I PgedBinderListener: kstate callback type:8 value1=15820 value2=KILLED
12-28 13:54:11.209 2241 3244 I ash : protect frz apps: [com.android.exchange, com.eg.android.AlipayGphone, com.huawei.screenrecorder, com.huawei.bd, com.huawei.geofence, com.alibaba.mobileim, com.google.android.youtube, com.android.backupconfirm, com.android.location.fused, com.tencent.mm, com.android.dreams.basic, com.android.nfc, com.huawei.phonediagnose, com.google.android.webview, com.huawei.android.hwaps, com.huawei.health]
12-28 13:54:11.209 2241 3244 I ash : unprotect frz apps: [com.huawei.android.ds, com.ximalaya.ting.android, com.huawei.appmarket, com.android.gallery3d, com.baidu.patient, com.hundsun.stockwinner.zxzq, com.autonavi.minimap, cn.wps.moffice_eng, com.android.dreams.phototable, com.android.galaxy4, com.android.mediacenter, com.lenka, com.huawei.android.airsharing, com.MobileTicket, com.android.chrome, air.jp.ne.hap.nyadle, cmb.pb, com.huawei.KoBackup, com.ub.main, com.example.koudleren.canvasview, com.android.hwmirror, com.tencent.android.qqdownloader, com.android.wallpaper.livepicker, com.dianping.v1, com.rytong.app.bankhx, com.sankuai.meituan.takeoutnew, com.example.android.notepad, com.gelonghui.glhapp, com.tencent.mobileqq, com.nuance.swype.emui, com.unionpay, com.csair.mbp, cn.amazon.mShop.android, com.google.android.apps.maps, air.jp.ne.hap.kurukuru, com.wuba.jiazheng, com.akazam.android.wlandialer, com.android.noisefield, com.netease.cloudmusic, air.jp.ne.hap.ushiro, com.sina.weibo, com.android.phasebeam, air.jp.ne.hap.fk, com.brandbigdata.ustock, com.android.email, com.umetrip.android.msky.app, com.android.vending, air.jp.ne.hap.toast, com.baidu.lbs.waimai, com.zhihu.android, ctrip.android.view, com.kaola, com.tencent.minigame8, com.spdbccc.app, air.jp.ne.hap.chase, com.microsoft.office.onenote, com.koudai.weishop, com.jingdong.app.mall, com.huawei.hidisk, com.google.android.inputmethod.japanese, com.ct.client, com.htinns, com.huajiao, com.shanbay.words, com.tc.cm, tv.danmaku.bili, com.xueqiu.android, com.taobao.taobao, com.android.wallpapercropper, com.alibaba.wireless, com.taobao.etao, com.baidu.BaiduMap, com.cmbchina.ccd.pluto.cmbActivity, com.youku.phone, com.sankuai.meituan, me.ele, air.jp.ne.hap.captain, com.alibaba.android.rimet, com.koudai.weidian.buyer, com.mobike.mobikeapp, com.taptap, com.tencent.now, com.taobao.trip, com.huawei.camera, com.sdu.didi.psnger, com.smzdm.client.android, com.webank.wemoney, com.tmall.wireless, com.huawei.compass, com.meelive.ingkee, com.baidu.input_huawei, com.huawei.hwmwlauncher, air.jp.ne.hap.tdb, com.baidu.travel, com.android.wallpaper.holospiral, com.tencent.rdm, com.tencent.rtxlite, com.sohu.inputmethod.sogou, com.togo.apps, air.jp.ne.hap.mom, com.szzc, com.ikm, com.longzhu.tga, com.rytong.ceair, com.hexin.plat.android, com.android.browser, com.eastmoney.android.berlin, air.jp.ne.hap.sbc]
12-28 13:54:11.216 364 2092 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:11.216 364 2092 I gralloc : Alloc handle(0x7f79604a00): interfmt=0x1, stride=64, size=4096
12-28 13:54:11.217 16475 16489 E linker : readlink('/proc/self/fd/23') failed: Permission denied [fd=23]
12-28 13:54:11.217 16475 16489 E linker : warning: unable to get realpath for the library "/system/lib64/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:11.220 364 421 I gralloc : Free handle(0x7f79604a00)
12-28 13:54:11.247 2587 2904 I Bluetooth_app: HeadsetStateMachine:Disconnected process message: 10, size: 0
12-28 13:54:11.250 2278 6264 I HwPowerMonitor.PowerExceptionObservable: unhandled onEvent actionID: 3002
12-28 13:54:11.250 2278 6264 W HwPowerMonitor.DayActObserver: mModemLogStatsTimes = 0, ModemLogState = 0
12-28 13:54:11.250 2278 6264 W HwPowerMonitor.DayActObserver: BAT_CHANGED, mIsScrnOffBatStatsEnabled = true, mIsCharging = true, mIsScrnOfBatDropMonitorStart = false
12-28 13:54:11.261 16492 16492 E dex2oat : Failed to create oat file: /data/dalvik-cache/arm64/data@[email protected]@[email protected]: Permission denied
12-28 13:54:11.261 16492 16492 I dex2oat : dex2oat took 537.500us (threads: 4)
12-28 13:54:11.263 16475 16475 W art : Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.huawei.appmarket-2/base.apk --oat-file=/data/dalvik-cache/arm64/data@[email protected]@[email protected]) because non-0 exit status
12-28 13:54:11.330 993 2271 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:11.330 993 2271 I MediaProcessHandler: processOp opType: 1, uid: 10025, pid: 15820
12-28 13:54:11.330 993 2271 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10025, pid: 15820
12-28 13:54:11.436 16475 16475 I PushLogSC2705: [main-1]action is android.intent.action.PACKAGE_REMOVED(appmarket/null:-1)
12-28 13:54:11.446 16475 16519 I PushLogSC2705: [Thread-1837-1837]framework push exist, use framework push first(appmarket/null:-1)
12-28 13:54:11.456 2241 2254 I PgedBinderListener: kstate callback type:8 value1=14562 value2=KILLED
12-28 13:54:11.467 364 419 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:11.468 364 419 I gralloc : Alloc handle(0x7f799c7200): interfmt=0x1, stride=64, size=4096
12-28 13:54:11.468 16520 16536 E linker : readlink('/proc/self/fd/22') failed: Permission denied [fd=22]
12-28 13:54:11.468 16520 16536 E linker : warning: unable to get realpath for the library "/system/lib/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:11.470 364 2123 I gralloc : Free handle(0x7f799c7200)
12-28 13:54:11.503 16520 16520 I LogAdaptor: createAppLog, file:/storage/emulated/0/Android/data/com.huawei.hwid/files/Log/HMSCore.log, module:HMSCore
12-28 13:54:11.510 16520 16520 I LogAdaptor: createAppLog, file:/storage/emulated/0/Android/data/com.huawei.hwid/files/Log/HMSCore.log, module:PushLog
12-28 13:54:11.511 16520 16520 E HwID_MainEntry: log has not init finished
12-28 13:54:11.512 16520 16520 E hwid : log has not init finished
12-28 13:54:11.512 16520 16520 I LogAdaptor: createAppLog, file:/storage/emulated/0/Android/data/com.huawei.hwid/files/Log/HMSCore.log, module:HwID
12-28 13:54:11.513 16520 16520 I mainEntry: init sns hms.
12-28 13:54:11.514 16520 16551 E HwID.VersionUpdateHelper: [Thread-1376{1376}] old version is 1, current version is 1 (LogX.java:88)
12-28 13:54:11.516 993 1078 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true
12-28 13:54:11.517 993 2274 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true
12-28 13:54:11.519 16520 16520 I LogAdaptor: createAppLog, file:/storage/emulated/0/Android/data/com.huawei.hwid/files/Log/HMSCore.log, module:Pay
12-28 13:54:11.520 16520 16520 I PushLogSC2816_hwid: [main-1]action is android.intent.action.PACKAGE_REMOVED(hwid/null:-1)
12-28 13:54:11.521 16520 16551 E HwID.AES128_CBC: [Thread-1376{1376}] length=32; regionStart=32; regionLength=16 (LogX.java:88)
12-28 13:54:11.522 16520 16551 E HwID.AES128_CBC: [Thread-1376{1376}] length=32; index=48 (LogX.java:88)
12-28 13:54:11.524 16520 16553 I PushLogSC2816_hwid: [Thread-1377-1377]votedPackage from file:android(hwid/null:-1)
12-28 13:54:11.525 993 1538 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true
12-28 13:54:11.526 16520 16553 I PushLogSC2816_hwid: [Thread-1377-1377]framework push exist, use framework push first(hwid/null:-1)
12-28 13:54:11.526 993 1538 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true
12-28 13:54:11.528 16520 16553 I PushLogSC2816_hwid: [Thread-1377-1377]not box version!(hwid/null:-1)
12-28 13:54:11.529 16520 16551 E HwID.AES128_CBC: [Thread-1376{1376}] length=32; regionStart=32; regionLength=16 (LogX.java:88)
12-28 13:54:11.529 16520 16551 E HwID.AES128_CBC: [Thread-1376{1376}] length=32; index=48 (LogX.java:88)
12-28 13:54:11.544 2241 4322 I PgedBinderListener: kstate callback type:8 value1=12220 value2=KILLED
12-28 13:54:11.565 993 2274 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:11.565 993 2274 I MediaProcessHandler: processOp opType: 1, uid: 10015, pid: 14562
12-28 13:54:11.565 993 2274 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10015, pid: 14562
12-28 13:54:11.566 364 2092 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:11.566 364 2092 I gralloc : Alloc handle(0x7f7970d100): interfmt=0x1, stride=64, size=4096
12-28 13:54:11.571 16556 16569 E linker : readlink('/proc/self/fd/22') failed: Permission denied [fd=22]
12-28 13:54:11.571 16556 16569 E linker : warning: unable to get realpath for the library "/system/lib/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:11.573 364 2123 I gralloc : Free handle(0x7f7970d100)
12-28 13:54:11.601 16556 16556 I MultiDex: VM with version 2.1.0 has multidex support
12-28 13:54:11.601 16556 16556 I MultiDex: install
12-28 13:54:11.601 16556 16556 I MultiDex: VM has multidex support, MultiDex support library is disabled.
12-28 13:54:11.606 16556 16556 I MyCrashHandler: 10128302|init()
12-28 13:54:11.608 3812 3812 I DE_SynCloudService: 10128302|onStartCommand
12-28 13:54:11.608 3812 3812 I DE_NewStatService: 10128302|newStat() null == newStatDataId || newStatDataId.isEmpty()
12-28 13:54:11.610 16556 16556 I PushLogSC2705: [main-1]action is android.intent.action.PACKAGE_REMOVED(health/null:-1)
12-28 13:54:11.611 3812 3812 I DE_SynCloudService: 10128302|biData !userAgreementStatus
12-28 13:54:11.617 2241 2254 I PgedBinderListener: kstate callback type:8 value1=14263 value2=KILLED
12-28 13:54:11.617 16556 16579 I PushLogSC2705: [Thread-1374-1374]framework push exist, use framework push first(health/null:-1)
12-28 13:54:11.618 2241 4322 I PgedBinderListener: kstate callback type:8 value1=12220 value2=KILLED
12-28 13:54:11.636 993 1753 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:11.636 993 1753 I MediaProcessHandler: processOp opType: 1, uid: 10009, pid: 14263
12-28 13:54:11.636 993 1753 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10009, pid: 14263
12-28 13:54:11.656 364 492 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:11.656 364 492 I gralloc : Alloc handle(0x7f7970d500): interfmt=0x1, stride=64, size=4096
12-28 13:54:11.657 16583 16596 E linker : readlink('/proc/self/fd/23') failed: Permission denied [fd=23]
12-28 13:54:11.657 16583 16596 E linker : warning: unable to get realpath for the library "/system/lib64/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:11.659 364 2092 I gralloc : Free handle(0x7f7970d500)
12-28 13:54:11.665 2241 2256 I PgedBinderListener: kstate callback type:8 value1=14263 value2=KILLED
12-28 13:54:11.669 993 2271 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:11.669 993 2271 I MediaProcessHandler: processOp opType: 1, uid: 10009, pid: 12220
12-28 13:54:11.669 993 2271 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10009, pid: 12220
12-28 13:54:11.716 16583 16583 I PushLogSC2609: [main-1]action is android.intent.action.PACKAGE_REMOVED(ds/null:-1)
12-28 13:54:11.722 2241 2254 I PgedBinderListener: kstate callback type:8 value1=14533 value2=KILLED
12-28 13:54:11.731 16583 16621 I PushLogSC2609: [Thread-1837-1837]framework push exist, use framework push first(ds/null:-1)
12-28 13:54:11.764 364 419 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:11.764 364 419 I gralloc : Alloc handle(0x7f79604500): interfmt=0x1, stride=64, size=4096
12-28 13:54:11.765 16622 16638 E linker : readlink('/proc/self/fd/23') failed: Permission denied [fd=23]
12-28 13:54:11.765 16622 16638 E linker : warning: unable to get realpath for the library "/system/lib64/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:11.769 364 2123 I gralloc : Free handle(0x7f79604500)
12-28 13:54:11.831 16643 16643 E dex2oat : Failed to create oat file: /data/dalvik-cache/arm64/data@[email protected]@[email protected]: Permission denied
12-28 13:54:11.831 16643 16643 I dex2oat : dex2oat took 484.375us (threads: 4)
12-28 13:54:11.831 993 1583 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:11.831 993 1583 I MediaProcessHandler: processOp opType: 1, uid: 10022, pid: 14533
12-28 13:54:11.831 993 1583 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10022, pid: 14533
12-28 13:54:11.832 16622 16622 W art : Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=generic --instruction-set-features=default --dex-file=/data/app/com.huawei.android.remotecontrol-1/base.apk --oat-file=/data/dalvik-cache/arm64/data@[email protected]@[email protected]) because non-0 exit status
12-28 13:54:11.873 993 993 I TrafficMonitor: update:rxPkts:1,txPkts:1,rxBytes:40,txBytes:40
12-28 13:54:11.873 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:11.873 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:12.017 366 370 E tee_get_app_cert: cannot find package:system_server
12-28 13:54:12.017 366 370 E tee_get_app_cert: get certs for app failed
12-28 13:54:12.052 366 370 I teecd : Waiting for a connection...
12-28 13:54:12.262 366 370 E tee_get_app_cert: cannot find package:system_server
12-28 13:54:12.262 366 370 E tee_get_app_cert: get certs for app failed
12-28 13:54:12.262 16320 16408 I HwSystemManager: PermissionDBAdapter:refreshAppList, all size:227, new apps:[]
12-28 13:54:12.270 16320 16408 I HwSystemManager: PermissionDBAdapter:delete permission record:com.koudle.andyogaexample
12-28 13:54:12.287 1724 2793 I HwSystemManager: PermissionDBAdapter:remove from runtim table:com.koudle.andyogaexample
12-28 13:54:12.287 1724 16646 I HwSystemManager: PermissionDBAdapter:refreshAppList begin refreshAppList. reason:data changed, db items size:110
12-28 13:54:12.287 1724 16646 I HwSystemManager: HsmPackageManager:get all installed packages, flag:0, size:227
12-28 13:54:12.288 1724 2793 W HwSystemManager: PermissionDBAdapter:remove from runtim table:com.koudle.andyogaexample, not deleted.
12-28 13:54:12.289 16320 16647 I HwSystemManager: PermissionDBAdapter:refreshAppList begin refreshAppList. reason:data changed, db items size:110
12-28 13:54:12.289 16320 16647 I HwSystemManager: HsmPackageManager:get all installed packages, flag:0, size:227
12-28 13:54:12.291 16320 16408 I HwSystemManager: PermissionDbVisitor:removeHistoryRecord,pkgName:com.koudle.andyogaexample, delete count:0
12-28 13:54:12.292 16320 16408 I SendBroadcastPermission: action:PACKAGE_ADDED_OR_REMOVED, mPermissionType:0
12-28 13:54:12.296 530 530 E Thermal-daemon: [flash_led] temp_new :35 temp_old :34
12-28 13:54:12.296 530 530 E Thermal-daemon: Report temperature: [flash_led] temp :35 report_threshold:1
12-28 13:54:12.297 530 530 E Thermal-daemon: [ap] temp_new :35 temp_old :34
12-28 13:54:12.297 530 530 E Thermal-daemon: Report temperature: [ap] temp :35 report_threshold:1
12-28 13:54:12.297 2241 3242 W ThermalStateManager: warning: no config thermal type:3 temperature:35
12-28 13:54:12.309 366 370 I teecd : Waiting for a connection...
12-28 13:54:12.349 2241 3244 W AppsCleanUp: frequently crash process:com.svox.pico time:6991165ms, crash:40 uid:10025
12-28 13:54:12.351 2241 4322 I PgedBinderListener: kstate callback type:8 value1=15621 value2=KILLED
12-28 13:54:12.363 364 2092 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:12.364 364 2092 I gralloc : Alloc handle(0x7f7970d500): interfmt=0x1, stride=64, size=4096
12-28 13:54:12.364 16648 16661 E linker : readlink('/proc/self/fd/22') failed: Permission denied [fd=22]
12-28 13:54:12.364 16648 16661 E linker : warning: unable to get realpath for the library "/system/lib/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:12.366 364 419 I gralloc : Free handle(0x7f7970d500)
12-28 13:54:12.369 1724 16646 I HwSystemManager: PermissionDBAdapter:refreshAppList, all size:227, new apps:[]
12-28 13:54:12.374 16320 16647 I HwSystemManager: PermissionDBAdapter:refreshAppList, all size:227, new apps:[]
12-28 13:54:12.389 993 2274 E libteec : invoke cmd failed, code=0xffff7106, origin=3
12-28 13:54:12.389 993 2274 E huawei_antiTheft: invoke command 20002 failed, code=0xffff7106, origin=0x3 , type=0x1 in huawei_antiTheft_getFileSize
12-28 13:54:12.389 993 2274 E HwAntiTheftService_jni: native_read getFileSize fail
12-28 13:54:12.396 2241 2256 I PgedBinderListener: kstate callback type:8 value1=16252 value2=KILLED
12-28 13:54:12.400 2241 2254 I PgedBinderListener: kstate callback type:8 value1=15621 value2=KILLED
12-28 13:54:12.413 16622 16622 E 9.1.0.300-hisync.STUtils: decrypterCbc Exceptionjava.lang.IllegalArgumentException: input.length=0; inputOffset=16; inputLen=-16
12-28 13:54:12.414 16622 16622 E 9.1.0.300-hisync.STUtils: decrypterCbc Exceptionjava.lang.IllegalArgumentException: input.length=0; inputOffset=16; inputLen=-16
12-28 13:54:12.414 16622 16622 E 9.1.0.300-hisync.STUtils: decrypterCbc Exceptionjava.lang.IllegalArgumentException: input.length=0; inputOffset=16; inputLen=-16
12-28 13:54:12.414 16622 16622 E 9.1.0.300-hisync.STUtils: decrypterCbc Exceptionjava.lang.IllegalArgumentException: input.length=0; inputOffset=16; inputLen=-16
12-28 13:54:12.415 16622 16622 E 9.1.0.300-hisync.STUtils: decrypterCbc Exceptionjava.lang.IllegalArgumentException: input.length=0; inputOffset=16; inputLen=-16
12-28 13:54:12.421 16622 16622 I PushLogSC2609: [main-1]action is android.intent.action.PACKAGE_REMOVED(remotecontrol/null:-1)
12-28 13:54:12.429 2241 4322 I PgedBinderListener: kstate callback type:8 value1=15214 value2=KILLED
12-28 13:54:12.431 2241 2256 I PgedBinderListener: kstate callback type:8 value1=15621 value2=KILLED
12-28 13:54:12.434 16622 16665 I PushLogSC2609: [Thread-1821-1821]framework push exist, use framework push first(remotecontrol/null:-1)
12-28 13:54:12.445 993 1583 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:12.445 993 1583 I MediaProcessHandler: processOp opType: 1, uid: 10014, pid: 15621
12-28 13:54:12.445 993 1583 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10014, pid: 15621
12-28 13:54:12.447 2241 2254 I PgedBinderListener: kstate callback type:8 value1=16252 value2=KILLED
12-28 13:54:12.471 364 421 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:12.471 364 421 I gralloc : Alloc handle(0x7f79604a00): interfmt=0x1, stride=64, size=4096
12-28 13:54:12.472 16667 16683 E linker : readlink('/proc/self/fd/23') failed: Permission denied [fd=23]
12-28 13:54:12.472 16667 16683 E linker : warning: unable to get realpath for the library "/system/lib64/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:12.474 364 2092 I gralloc : Free handle(0x7f79604a00)
12-28 13:54:12.481 2951 2951 E NetworkScheduler.SR: Invalid parameter app
12-28 13:54:12.481 2951 2951 E NetworkScheduler.SR: Invalid package name : Perhaps you didn't include a PendingIntent in the extras?
12-28 13:54:12.487 993 1075 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:12.487 993 1075 I MediaProcessHandler: processOp opType: 1, uid: 10002, pid: 16252
12-28 13:54:12.487 993 1075 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10002, pid: 16252
12-28 13:54:12.489 2241 4322 I PgedBinderListener: kstate callback type:8 value1=15214 value2=KILLED
12-28 13:54:12.511 993 2209 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:12.511 993 2209 I MediaProcessHandler: processOp opType: 1, uid: 10004, pid: 15214
12-28 13:54:12.511 993 2209 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10004, pid: 15214
12-28 13:54:12.704 364 421 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:12.704 364 421 I gralloc : Alloc handle(0x7f799c7e00): interfmt=0x1, stride=64, size=4096
12-28 13:54:12.706 16795 16814 E linker : readlink('/proc/self/fd/23') failed: Permission denied [fd=23]
12-28 13:54:12.706 16795 16814 E linker : warning: unable to get realpath for the library "/system/lib64/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:12.710 364 2092 I gralloc : Free handle(0x7f799c7e00)
12-28 13:54:12.723 16795 16795 W System : ClassLoader referenced unknown path: /system/priv-app/GoogleServicesFramework/lib/arm64
12-28 13:54:12.737 16795 16795 I GservicesProvider: Gservices pushing to system: true; secure/global: true
12-28 13:54:12.803 16795 16795 I GoogleHttpClient: GMS http client unavailable, use old client
12-28 13:54:12.810 993 1756 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true
12-28 13:54:12.824 16667 16667 W linker : /data/app/com.google.android.gms-2/lib/arm64/libgmscore.so: unused DT entry: type 0x7ffffffd arg 0x885
12-28 13:54:12.848 16667 16667 W linker : /data/app/com.google.android.gms-2/lib/arm64/libconscrypt_gmscore_jni.so: unused DT entry: type 0x1d arg 0x80
12-28 13:54:12.848 16667 16667 W linker : /data/app/com.google.android.gms-2/lib/arm64/libconscrypt_gmscore_jni.so: unused DT entry: type 0x7ffffffd arg 0x169
12-28 13:54:12.881 16667 16667 I art : Rejecting re-init on previously-failed class java.lang.Class<com.google.android.gms.org.conscrypt.OpenSSLExtendedSessionImpl>
12-28 13:54:12.881 16667 16667 I art : Rejecting re-init on previously-failed class java.lang.Class<com.google.android.gms.org.conscrypt.OpenSSLExtendedSessionImpl>
12-28 13:54:12.990 2241 2256 I PgedBinderListener: kstate callback type:8 value1=16276 value2=KILLED
12-28 13:54:13.003 993 2240 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:13.003 993 2240 I MediaProcessHandler: processOp opType: 1, uid: 10011, pid: 16276
12-28 13:54:13.004 993 2240 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10011, pid: 16276
12-28 13:54:13.028 364 2123 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:13.028 364 2123 I gralloc : Alloc handle(0x7f79604500): interfmt=0x1, stride=64, size=4096
12-28 13:54:13.029 16823 16838 E linker : readlink('/proc/self/fd/22') failed: Permission denied [fd=22]
12-28 13:54:13.029 16823 16838 E linker : warning: unable to get realpath for the library "/system/lib/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:13.031 364 492 I gralloc : Free handle(0x7f79604500)
12-28 13:54:13.120 16667 16822 I FA-SVC : App measurement is starting up, version: 9683
12-28 13:54:13.120 16667 16822 I FA-SVC : To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
12-28 13:54:13.131 16667 16850 E BaseAppContext: Tried to stop global GMSCore RequestQueue. This is likely unintended, so ignoring.
12-28 13:54:13.135 16667 16822 I FA-SVC : To enable faster debug mode event logging run:
12-28 13:54:13.135 16667 16822 I FA-SVC : adb shell setprop firebase.analytics.debug-mode com.google.android.gms
12-28 13:54:13.144 16667 16822 I HwCust : Constructor found for class android.app.HwCustAlarmManagerImpl
12-28 13:54:13.156 16667 16932 I FA-SVC : This instance being marked as an uploader
12-28 13:54:13.162 16823 16823 E DexLoadOat: Success
12-28 13:54:13.206 16667 16934 I Icing : Storage manager: low false usage 92.11MB avail 5.95GB capacity 24.63GB
12-28 13:54:13.217 16823 16823 I System : core_booster, getBoosterConfig = false
12-28 13:54:13.249 16823 16968 W ResourceType: For resource 0x7f0b0442, entry index(1090) is beyond type entryCount(1090)
12-28 13:54:13.249 16823 16968 W ResourceType: Failure getting entry for 0x7f0b0442 (t=10 e=1090) (error -75)
12-28 13:54:13.265 16823 16823 W beacon : get app channel fail!
12-28 13:54:13.285 16667 16904 W DriveInitializer: Awaiting to be initialized
12-28 13:54:13.286 16667 17008 W DriveInitializer: Background init thread started
12-28 13:54:13.297 993 2274 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true
12-28 13:54:13.301 993 1078 I SendBroadcastPermission: action:android.intent.action.SIG_STR, mPermissionType:0
12-28 13:54:13.309 1576 1633 I HwMobileSignalController: subId:0 phoneType:2 networktype:13 targetClass:3 masterLevel:3 slaveLevel:4
12-28 13:54:13.332 16667 17013 W IcingInternalCorpora: getNumBytesRead when not calculated.
12-28 13:54:13.335 16667 17008 W DriveInitializer: Background init thread ended
12-28 13:54:13.348 16667 17013 I SendBroadcastPermission: action:com.google.android.gms.icing.action.CONTACT_CHANGED, mPermissionType:0
12-28 13:54:13.393 16823 16823 I native_eup: Java_com_tencent_feedback_eup_jni_NativeExceptionUpload_registNativeExceptionHandler2 start
12-28 13:54:13.393 16823 16823 I native_eup: JARJNIVERSION:1
12-28 13:54:13.393 16823 16823 I native_eup: found native exception upload!
12-28 13:54:13.393 16823 16823 I native_eup: found native exception handler!
12-28 13:54:13.393 16823 16823 I native_eup: regist handler start procType 1 , level 23 , tombDir:/data/user/0/com.tencent.mobileqq/app_tombs
12-28 13:54:13.393 16823 16823 I native_eup: registSignal start
12-28 13:54:13.393 16823 16823 I native_eup: registSignal end
12-28 13:54:13.393 16823 16823 I native_eup: regist handler end
12-28 13:54:13.393 16823 16823 I native_eup: Java_com_tencent_feedback_eup_jni_NativeExceptionUpload_registNativeExceptionHandler end
12-28 13:54:13.393 16823 16823 I native_eup: NativeRQDVersion:testbuildnum
12-28 13:54:13.393 16823 16823 I native_eup: Java_com_tencent_feedback_eup_jni_NativeExceptionUpload_registNativeExceptionHandler2 start
12-28 13:54:13.393 16823 16823 I native_eup: JARJNIVERSION:0
12-28 13:54:13.393 16823 16823 I native_eup: found native exception upload!
12-28 13:54:13.393 16823 16823 I native_eup: found native exception handler!
12-28 13:54:13.393 16823 16823 I native_eup: regist handler start procType 1 , level 23 , tombDir:/data/user/0/com.tencent.mobileqq/app_tombs
12-28 13:54:13.393 16823 16823 I native_eup: registSignal start
12-28 13:54:13.393 16823 16823 I native_eup: registSignal end
12-28 13:54:13.393 16823 16823 I native_eup: regist handler end
12-28 13:54:13.393 16823 16823 I native_eup: Java_com_tencent_feedback_eup_jni_NativeExceptionUpload_registNativeExceptionHandler end
12-28 13:54:13.393 16823 16823 I native_eup: NativeRQDVersion:testbuildnum
12-28 13:54:13.399 16823 16823 E QQAppInterface: laResult: 15, verifyResult: 15
12-28 13:54:13.413 16823 16823 I mqq : [AppRuntime]ToolAppRuntime (*9339) onCreate,savedInstanceState=null
12-28 13:54:13.415 16823 17083 I SendBroadcastPermission: action:com.tencent.mobileqq.msf.startmsf, mPermissionType:0
12-28 13:54:13.419 16823 16823 I SendBroadcastPermission: action:mqq.intent.action.LAUNCH_com.tencent.mobileqq:tool, mPermissionType:0
12-28 13:54:13.435 16823 17097 E linker : readlink('/proc/self/fd/48') failed: Permission denied [fd=48]
12-28 13:54:13.435 16823 17097 E linker : warning: unable to get realpath for the library "/data/user/0/com.tencent.mobileqq/lib/libGIFEngine.so". Will use given name.
12-28 13:54:13.457 2241 2254 I PgedBinderListener: kstate callback type:8 value1=16298 value2=KILLED
12-28 13:54:13.470 364 419 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:13.470 364 419 I gralloc : Alloc handle(0x7f7970d500): interfmt=0x1, stride=64, size=4096
12-28 13:54:13.471 17107 17128 E linker : readlink('/proc/self/fd/22') failed: Permission denied [fd=22]
12-28 13:54:13.471 17107 17128 E linker : warning: unable to get realpath for the library "/system/lib/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:13.472 364 2123 I gralloc : Free handle(0x7f7970d500)
12-28 13:54:13.495 28584 29296 I MSF.S.AppProcessManager: onRegisterApp process=com.tencent.mobileqq:tool processBootName= appid=537048938 callback=com.tencent.qphone.base.remote.IMsfServiceCallbacker$Stub$Proxy@a39bd12
12-28 13:54:13.506 28584 28949 I MSF.S.AppProcessManager: onRegisterApp process=com.tencent.mobileqq:tool processBootName= appid=537048938 callback=com.tencent.qphone.base.remote.IMsfServiceCallbacker$Stub$Proxy@1d2ce3
12-28 13:54:13.509 17107 17107 I MultiDex: VM with version 2.1.0 has multidex support
12-28 13:54:13.509 17107 17107 I MultiDex: install
12-28 13:54:13.509 17107 17107 I MultiDex: VM has multidex support, MultiDex support library is disabled.
12-28 13:54:13.519 16667 16934 I Icing : MaintenanceDriver: Registering all GCM Tasks.
12-28 13:54:13.523 993 2251 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:13.523 993 2251 I MediaProcessHandler: processOp opType: 1, uid: 10013, pid: 16298
12-28 13:54:13.523 993 2251 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10013, pid: 16298
12-28 13:54:13.532 17107 17107 I SDKSupportProvider: SDKSupportProvider Create
12-28 13:54:13.557 16667 16934 W InstanceID/Rpc: Found 10009
12-28 13:54:13.560 16667 16934 I SendBroadcastPermission: action:com.google.android.gms.gcm.ACTION_SCHEDULE, mPermissionType:0
12-28 13:54:13.615 16823 17089 E art : No implementation found for int oicq.wlogin_sdk.tools.EcdhCrypt.GenECDHKeyEx(java.lang.String, java.lang.String, java.lang.String) (tried Java_oicq_wlogin_1sdk_tools_EcdhCrypt_GenECDHKeyEx and Java_oicq_wlogin_1sdk_tools_EcdhCrypt_GenECDHKeyEx__Ljava_lang_String_2Ljava_lang_String_2Ljava_lang_String_2)
12-28 13:54:13.622 993 2240 I AccountManagerService: getTypesVisibleToCaller: isPermitted? true
12-28 13:54:13.672 1724 10695 I HwSystemManager: PermissionDbVisitor:insertHistoryRecord:HistoryRecord[packageName:com.youku.phone,permissionType:8,action:10,dateStartTime:1482854400000,timestamp:1482904453672]
12-28 13:54:13.674 993 1453 E HwOldGpsLogServices: GPS permission denied!
12-28 13:54:13.674 993 2209 I LocationManagerService: getLastLocation: Request[POWER_LOW network requested=0 fastest=0 num=1]
12-28 13:54:13.687 1724 10695 I HwSystemManager: PermissionDbVisitor:insertHistoryRecord:HistoryRecord[packageName:com.youku.phone,permissionType:8,action:10,dateStartTime:1482854400000,timestamp:1482904453687]
12-28 13:54:13.698 28584 28995 W beacon : onUserAction return false, because eventName:[dim.Msf.AppConnectFail] is not allowed in server strategy!
12-28 13:54:13.700 28584 28995 W beacon : onUserAction return false, because eventName:[dim.Msf.AppConnectFail] is not allowed in server strategy!
12-28 13:54:13.702 28584 28995 W beacon : onUserAction return false, because eventName:[loadSoNew] is not allowed in server strategy!
12-28 13:54:13.705 28584 28995 W beacon : onUserAction return false, because eventName:[loadSoOld] is not allowed in server strategy!
12-28 13:54:13.728 17107 17107 I art : Rejecting re-init on previously-failed class java.lang.Class<com.ut.mini.core.WVUserTrack>
12-28 13:54:13.729 17107 17107 I art : Rejecting re-init on previously-failed class java.lang.Class<com.ut.mini.core.WVUserTrack>
12-28 13:54:13.760 17107 17271 I System : core_booster, getBoosterConfig = false
12-28 13:54:13.776 17107 17271 I HwCust : Constructor found for class android.app.HwCustAlarmManagerImpl
12-28 13:54:13.799 17107 17273 E linker : readlink('/proc/self/fd/38') failed: Permission denied [fd=38]
12-28 13:54:13.799 17107 17273 E linker : warning: unable to get realpath for the library "/data/app/com.youku.phone-1/lib/arm/libminizip.so". Will use given name.
12-28 13:54:13.800 2241 4322 I PgedBinderListener: kstate callback type:8 value1=16387 value2=KILLED
12-28 13:54:13.815 1724 8737 I HwSystemManager: PermissionDbVisitor:insertHistoryRecord:HistoryRecord[packageName:com.youku.phone,permissionType:8,action:10,dateStartTime:1482854400000,timestamp:1482904453814]
12-28 13:54:13.816 12815 12815 W System.err: android.content.pm.PackageManager$NameNotFoundException: ComponentInfo{com.alibaba.android.rimet/com.taobao.accs.ChannelService}
12-28 13:54:13.817 12815 12815 W System.err: at android.app.ApplicationPackageManager.getServiceInfo(ApplicationPackageManager.java:389)
12-28 13:54:13.817 12815 12815 W System.err: at com.taobao.accs.utl.UtilityImpl.getServiceEnabled(UtilityImpl.java:132)
12-28 13:54:13.817 12815 12815 W System.err: at com.taobao.accs.internal.ReceiverImpl.onReceive(ReceiverImpl.java:23)
12-28 13:54:13.817 993 1453 E HwOldGpsLogServices: GPS permission denied!
12-28 13:54:13.817 12815 12815 W System.err: at com.taobao.accs.base.BaseReceiver.onReceive(BaseReceiver.java:36)
12-28 13:54:13.817 12815 12815 W System.err: at android.app.ActivityThread.handleReceiver(ActivityThread.java:2788)
12-28 13:54:13.817 12815 12815 W System.err: at android.app.ActivityThread.access$1800(ActivityThread.java:168)
12-28 13:54:13.817 12815 12815 W System.err: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1456)
12-28 13:54:13.817 12815 12815 W System.err: at android.os.Handler.dispatchMessage(Handler.java:102)
12-28 13:54:13.817 12815 12815 W System.err: at android.os.Looper.loop(Looper.java:150)
12-28 13:54:13.817 12815 12815 W System.err: at android.app.ActivityThread.main(ActivityThread.java:5665)
12-28 13:54:13.817 12815 12815 W System.err: at java.lang.reflect.Method.invoke(Native Method)
12-28 13:54:13.817 12815 12815 W System.err: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:822)
12-28 13:54:13.817 12815 12815 W System.err: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:712)
12-28 13:54:13.817 17107 17273 I MMS : com.koudle.andyogaexample ACTION=0
12-28 13:54:13.818 17107 17260 I System : core_booster, getBoosterConfig = false
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: android.app.ApplicationPackageManager.getServiceInfo(ApplicationPackageManager.java:389)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: com.taobao.accs.utl.UtilityImpl.getServiceEnabled(UtilityImpl.java:132)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: com.taobao.accs.internal.ReceiverImpl.onReceive(ReceiverImpl.java:23)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: com.taobao.accs.base.BaseReceiver.onReceive(BaseReceiver.java:36)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: android.app.ActivityThread.handleReceiver(ActivityThread.java:2788)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: android.app.ActivityThread.access$1800(ActivityThread.java:168)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: android.app.ActivityThread$H.handleMessage(ActivityThread.java:1456)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: android.os.Handler.dispatchMessage(Handler.java:102)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: android.os.Looper.loop(Looper.java:150)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: android.app.ActivityThread.main(ActivityThread.java:5665)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: java.lang.reflect.Method.invoke(Native Method)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:822)
12-28 13:54:13.820 12815 12815 E accs.UtilityImpl: com.android.internal.os.ZygoteInit.main(ZygoteInit.java:712)
12-28 13:54:13.820 12815 12815 I Process : Sending signal. PID: 12815 SIG: 9
12-28 13:54:13.820 2241 2256 I PgedBinderListener: kstate callback type:8 value1=12815 value2=KILLED
12-28 13:54:13.823 2241 2254 I PgedBinderListener: kstate callback type:8 value1=16387 value2=KILLED
12-28 13:54:13.824 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-53 "Tencent-StaffWiFi"NONE
12-28 13:54:13.875 993 993 I TrafficMonitor: update:rxPkts:8,txPkts:11,rxBytes:1051,txBytes:1864
12-28 13:54:13.875 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:13.875 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:13.876 993 2234 I SendBroadcastPermission: action:android.intent.action.SIG_STR, mPermissionType:0
12-28 13:54:13.878 1576 1633 I HwMobileSignalController: subId:1 phoneType:1 networktype:2 targetClass:1 masterLevel:2 slaveLevel:-1
12-28 13:54:13.890 993 2271 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:13.890 993 2271 W MediaProcessHandler: processOp uid 1000 is not concerned!
12-28 13:54:13.891 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-51 "Tencent-StaffWiFi"NONE
12-28 13:54:13.893 993 993 I QosMonitor: queryRtt: rtt_type = 3
12-28 13:54:13.893 993 993 I WifiProJNI: ######### GET RTT:3 ########
12-28 13:54:13.893 993 1495 I QosMonitor: postEventFromNative: msg=100,arg1=4,arg2=9
12-28 13:54:13.893 993 1495 W WifiProJNI: poll before: g_monitor_fd =182
12-28 13:54:13.893 993 1497 I HuaweiWifiWatchdogStateMachine: spd good count:0, add sc:0.0, rate:1.0
12-28 13:54:13.893 993 1497 I HuaweiWifiWatchdogStateMachine: current mHighDataFlowRate = 1.0
12-28 13:54:13.893 993 1497 I HuaweiWifiWatchdogStateMachine: POta txb txg rxg:0, 20, 0. Lr =0% Totpkt=20
12-28 13:54:13.893 993 993 I QosMonitor: resetRtt: rtt_type = 3
12-28 13:54:13.893 993 993 I WifiProJNI: ######### RESET RTT:3 ########
12-28 13:54:13.893 993 993 I WifiProJNI: ######### CMD_QUERY_PKTS ########
12-28 13:54:13.894 993 1495 I QosMonitor: postEventFromNative: msg=100,arg1=0,arg2=9
12-28 13:54:13.894 993 1495 W WifiProJNI: poll before: g_monitor_fd =182
12-28 13:54:13.896 993 1497 I HuaweiWifiWatchdogStateMachine: PTcp RTT:0, rtt pkt=0, tcp_rx=10, tcp_tx=13, tcp_reTran=0, rtRate=0
12-28 13:54:13.896 993 1497 I HuaweiWifiWatchdogStateMachine: rs ota tcp lr rttvb bad: false, false, false, false, false; rsth:-75
12-28 13:54:13.896 993 1497 I HuaweiWifiWatchdogStateMachine: pkt chk not bad, reset sc to 0.
12-28 13:54:13.965 1576 1576 I NetworkSpeedManagerEx: mIsStop = false
12-28 13:54:13.966 1576 1576 I NetworkSpeedManagerEx: value = 1207.3334
12-28 13:54:13.967 1576 1576 I NetworkSpeedManagerEx: speed = 1.2K/s
12-28 13:54:13.967 1576 1576 I NetworkSpeedView: /update(), speed=1.2K/s
12-28 13:54:13.972 993 1583 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:13.972 993 1583 I MediaProcessHandler: processOp opType: 1, uid: 10158, pid: 12815
12-28 13:54:13.972 993 1583 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10158, pid: 12815
12-28 13:54:13.981 1576 1576 W View : requestLayout() improperly called by com.android.systemui.statusbar.phone.IconMerger{de50a0a V.E...... ......I. 0,0-225,60 #7f1000e8 app:id/notificationIcons} during layout: running second layout pass
12-28 13:54:14.027 364 492 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:14.027 364 492 I gralloc : Alloc handle(0x7f79604500): interfmt=0x1, stride=64, size=4096
12-28 13:54:14.028 17277 17290 E linker : readlink('/proc/self/fd/23') failed: Permission denied [fd=23]
12-28 13:54:14.028 17277 17290 E linker : warning: unable to get realpath for the library "/system/lib64/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:14.031 364 421 I gralloc : Free handle(0x7f79604500)
12-28 13:54:14.051 17277 17277 W System : ClassLoader referenced unknown path: /system/app/DocumentsUI/lib/arm64
12-28 13:54:14.085 2241 4322 I PgedBinderListener: kstate callback type:8 value1=16320 value2=KILLED
12-28 13:54:14.094 16667 16821 E IntentOperationSvc: Failed to instantiate Chimera operation impl, dropping operation
12-28 13:54:14.106 2241 2256 I PgedBinderListener: kstate callback type:8 value1=16421 value2=KILLED
12-28 13:54:14.109 2241 2254 I PgedBinderListener: kstate callback type:8 value1=16320 value2=KILLED
12-28 13:54:14.110 364 2123 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:14.110 364 2123 I gralloc : Alloc handle(0x7f7970d500): interfmt=0x1, stride=64, size=4096
12-28 13:54:14.114 17294 17307 E linker : readlink('/proc/self/fd/23') failed: Permission denied [fd=23]
12-28 13:54:14.115 17294 17307 E linker : warning: unable to get realpath for the library "/system/lib64/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:14.117 364 2092 I gralloc : Free handle(0x7f7970d500)
12-28 13:54:14.121 17294 17294 W System : ClassLoader referenced unknown path: /system/priv-app/ExternalStorageProvider/lib/arm64
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: Chimera module config error, dropping broadcast
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: com.google.android.chimera.config.InvalidConfigException: No registered Chimera receiver impl for ComponentInfo{com.google.android.gms/com.google.android.gms.nearby.settings.NearbyAppUninstallReceiver}
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: at com.google.android.chimera.container.BroadcastReceiverProxy.onReceive(:com.google.android.gms:64)
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: at android.app.ActivityThread.handleReceiver(ActivityThread.java:2788)
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: at android.app.ActivityThread.access$1800(ActivityThread.java:168)
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1456)
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: at android.os.Handler.dispatchMessage(Handler.java:102)
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: at android.os.Looper.loop(Looper.java:150)
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: at android.app.ActivityThread.main(ActivityThread.java:5665)
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: at java.lang.reflect.Method.invoke(Native Method)
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:822)
12-28 13:54:14.122 16667 16667 E ChimeraRcvrProxy: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:712)
12-28 13:54:14.127 4290 4290 I DownloadManager: enter DownloadReceiver::onReceive(action:android.intent.action.UID_REMOVED intent:Intent { act=android.intent.action.UID_REMOVED flg=0x4000010 cmp=com.android.providers.downloads/.DownloadReceiver (has extras) })
12-28 13:54:14.182 993 2271 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:14.182 993 2271 I MediaProcessHandler: processOp opType: 1, uid: 10056, pid: 16421
12-28 13:54:14.182 993 2271 W MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10056, pid: 16421
12-28 13:54:14.202 2241 4322 I PgedBinderListener: kstate callback type:8 value1=16452 value2=KILLED
12-28 13:54:14.202 993 2274 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:14.203 993 2274 W MediaProcessHandler: processOp uid 1000 is not concerned!
12-28 13:54:14.207 364 419 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:14.207 364 419 I gralloc : Alloc handle(0x7f799c7000): interfmt=0x1, stride=64, size=4096
12-28 13:54:14.210 17310 17323 E linker : readlink('/proc/self/fd/23') failed: Permission denied [fd=23]
12-28 13:54:14.210 17310 17323 E linker : warning: unable to get realpath for the library "/system/lib64/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:14.215 364 2123 I gralloc : Free handle(0x7f799c7000)
12-28 13:54:14.229 17310 17310 W System : ClassLoader referenced unknown path: /system/priv-app/Shell/lib/arm64
12-28 13:54:14.291 993 1078 E HsmCoreServiceImpl: onTransact in code is: 102
12-28 13:54:14.291 993 1078 W MediaProcessHandler: processOp uid 1000 is not concerned!
12-28 13:54:14.429 16667 16934 I Icing : updateResources: need to parse pmu{com.google.android.gms}
12-28 13:54:14.580 1576 1576 W View : requestLayout() improperly called by com.android.systemui.statusbar.phone.IconMerger{de50a0a V.E...... ........ 0,0-225,60 #7f1000e8 app:id/notificationIcons} during second layout pass: posting in next frame
12-28 13:54:14.606 16667 16934 I Icing : Removing corpus key A40D59232EFF954068B1E5A2F7A30B8460B431D9 for package com.google.android.gms
12-28 13:54:14.617 16667 16934 I SendBroadcastPermission: action:com.google.android.gms.icing.IME_NOTIFICATION, mPermissionType:0
12-28 13:54:14.619 16667 16934 I SendBroadcastPermission: action:com.google.android.gms.icing.IME_NOTIFICATION, mPermissionType:0
12-28 13:54:14.625 16667 16934 I SendBroadcastPermission: action:com.google.android.gms.icing.IME_NOTIFICATION, mPermissionType:0
12-28 13:54:14.631 16667 16934 I SendBroadcastPermission: action:com.google.android.gms.icing.IME_NOTIFICATION, mPermissionType:0
12-28 13:54:14.633 16667 16934 I SendBroadcastPermission: action:com.google.android.gms.icing.IME_NOTIFICATION, mPermissionType:0
12-28 13:54:14.635 16667 16934 I SendBroadcastPermission: action:com.google.android.gms.icing.IME_NOTIFICATION, mPermissionType:0
12-28 13:54:14.637 16667 16934 I SendBroadcastPermission: action:com.google.android.gms.icing.IME_NOTIFICATION, mPermissionType:0
12-28 13:54:14.639 16667 16934 I SendBroadcastPermission: action:com.google.android.gms.icing.IME_NOTIFICATION, mPermissionType:0
12-28 13:54:14.641 16667 16934 I SendBroadcastPermission: action:com.google.android.gms.icing.IME_NOTIFICATION, mPermissionType:0
12-28 13:54:14.725 1723 1723 I wpa_supplicant: wlan0: HEART-BEAT-ACK: 439
12-28 13:54:14.725 993 1891 W WifiMonitor: couldn't identify event type - HEART-BEAT-ACK: 439
12-28 13:54:14.836 993 1003 I art : GC statistics: 1 time(s), freed 40689(3MB) objects, paused 1.450ms total 26.181ms
12-28 13:54:14.836 993 1003 I art : Background partial concurrent mark sweep GC freed 48739(3MB) AllocSpace objects, 3(64KB) LOS objects, 6% free, 55MB/59MB, paused 1.784ms total 217.293ms at HeapTaskDaemon thread CareAboutPauseTimes 1
12-28 13:54:14.873 993 993 I TrafficMonitor: expired arrive. level:-1
12-28 13:54:14.873 993 993 I TrafficMonitor: during_ms:2001,period_ms:2000
12-28 13:54:14.873 993 993 I TrafficMonitor: count:284,rx_sum:8,tx_sum:11,rxBytes:1051,during_ms:2001,rx_speed:525.2373813093453,tx_speed:931.5342328835583,rto:0.7272727272727273
12-28 13:54:15.009 364 2092 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:15.009 364 2092 I gralloc : Alloc handle(0x7f7970d500): interfmt=0x1, stride=64, size=4096
12-28 13:54:15.010 17327 17340 E linker : readlink('/proc/self/fd/22') failed: Permission denied [fd=22]
12-28 13:54:15.010 17327 17340 E linker : warning: unable to get realpath for the library "/system/lib/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:15.011 364 419 I gralloc : Free handle(0x7f7970d500)
12-28 13:54:15.065 17360 17360 E dex2oat : Failed to create oat file: /data/dalvik-cache/arm/data@[email protected]@[email protected]: Permission denied
12-28 13:54:15.065 17360 17360 I dex2oat : dex2oat took 381.771us (threads: 4)
12-28 13:54:15.065 17327 17327 W art : Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm --instruction-set-features=smp,div,atomic_ldrd_strd --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a15 --instruction-set-features=default --dex-file=/data/app/com.alibaba.android.rimet-2/base.apk --oat-file=/data/dalvik-cache/arm/data@[email protected]@[email protected]) because non-0 exit status
12-28 13:54:15.875 993 993 I TrafficMonitor: update:rxPkts:3,txPkts:3,rxBytes:667,txBytes:120
12-28 13:54:15.875 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:15.876 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:15.912 17327 17337 I art : humin current process: com.alibaba.android.rimet:channel
12-28 13:54:15.915 17327 17327 E performance: smartdex install take time = 7
12-28 13:54:15.919 17327 17327 E performance: skipCreate
12-28 13:54:15.919 17327 17327 E performance: application oncreate take time isMainProcess false 2
12-28 13:54:15.945 16667 16934 I Icing : Internal init done: storage state 0
12-28 13:54:15.955 16667 16936 E WorkSourceUtil: Could not find package: com.koudle.andyogaexample
12-28 13:54:15.959 16667 16934 I Icing : Post-init done
12-28 13:54:15.960 16667 16934 I Icing : Indexing A40D59232EFF954068B1E5A2F7A30B8460B431D9 from com.google.android.gms
12-28 13:54:16.089 2241 3244 I ash : start clean protect apps
12-28 13:54:16.095 2241 3244 I ash : clean protect apps :[com.sina.weibo, com.sankuai.meituan.takeoutnew, com.eg.android.AlipayGphone, com.huawei.gamebox, com.alibaba.mobileim, com.huawei.remoteassistant, com.tencent.mm, com.android.chrome, com.google.android.apps.maps, com.baidu.BaiduMap, com.huawei.phonediagnose, com.sankuai.meituan, im.yixin, com.netease.cloudmusic, com.dianping.v1]
12-28 13:54:16.101 2241 3244 I ash : clean unprotect apps :[com.huawei.android.ds, com.ximalaya.ting.android, com.huawei.appmarket, com.baidu.patient, com.hundsun.stockwinner.zxzq, com.autonavi.minimap, cn.wps.moffice_eng, com.huawei.android.airsharing, com.lenka, com.android.calculator2, com.MobileTicket, air.jp.ne.hap.nyadle, cmb.pb, com.huawei.KoBackup, com.ub.main, com.example.koudleren.canvasview, com.tencent.android.qqdownloader, com.rytong.app.bankhx, com.gelonghui.glhapp, com.tencent.mobileqq, com.nuance.swype.emui, com.unionpay, org.mopria.printplugin, com.csair.mbp, cn.amazon.mShop.android, air.jp.ne.hap.kurukuru, com.wuba.jiazheng, com.akazam.android.wlandialer, com.besttone.hall, air.jp.ne.hap.ushiro, air.jp.ne.hap.fk, com.brandbigdata.ustock, com.netease.newsreader.activity, com.umetrip.android.msky.app, com.android.vending, air.jp.ne.hap.toast, com.huawei.phoneservice, com.baidu.lbs.waimai, com.zhihu.android, ctrip.android.view, com.kaola, com.tencent.minigame8, com.spdbccc.app, air.jp.ne.hap.chase, com.google.android.youtube, com.microsoft.office.onenote, com.koudai.weishop, com.jingdong.app.mall, com.huawei.hidisk, com.google.android.inputmethod.japanese, com.ct.client, com.htinns, com.huawei.wallet, com.huajiao, com.shanbay.words, com.tc.cm, tv.danmaku.bili, com.xueqiu.android, com.telecom.video.ikan4g, com.taobao.taobao, chinatelecom.mwallet, com.alibaba.wireless, com.huawei.fans, com.taobao.etao, com.cmbchina.ccd.pluto.cmbActivity, com.youku.phone, me.ele, air.jp.ne.hap.captain, com.alibaba.android.rimet, com.koudai.weidian.buyer, com.mobike.mobikeapp, com.taptap, com.huawei.android.thememanager, com.unioncast.oleducation, com.tencent.now, com.taobao.trip, com.sdu.didi.psnger, com.smzdm.client.android, com.webank.wemoney, com.huawei.lives, com.tmall.wireless, com.huawei.compass, com.meelive.ingkee, air.jp.ne.hap.tdb, com.baidu.travel, com.vmall.client, com.tencent.rdm, com.tencent.rtxlite, com.sohu.inputmethod.sogou, com.togo.apps, air.jp.ne.hap.mom, com.szzc, com.ikm, cn.egame.terminal.client4g, com.longzhu.tga, com.pdager, com.rytong.ceair, com.hexin.plat.android, com.eastmoney.android.berlin, air.jp.ne.hap.sbc]
12-28 13:54:16.321 16823 16998 W beacon : startQuery: query times or query success times arrive max, return!
12-28 13:54:16.345 993 2274 I SendBroadcastPermission: action:android.intent.action.SIG_STR, mPermissionType:0
12-28 13:54:16.349 1576 1633 I HwMobileSignalController: subId:1 phoneType:1 networktype:2 targetClass:1 masterLevel:3 slaveLevel:-1
12-28 13:54:16.700 4001 4047 I PhoneStepDataManager: 10128302|REPORT_TIMES_PRIVATE=41,REPORT_TIMES_STANDARD=41
12-28 13:54:16.833 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-53 "Tencent-StaffWiFi"NONE
12-28 13:54:16.968 1576 1576 I NetworkSpeedManagerEx: mIsStop = false
12-28 13:54:16.970 1576 1576 I NetworkSpeedManagerEx: value = 26.666666
12-28 13:54:16.972 1576 1576 I NetworkSpeedManagerEx: speed = 27B/s
12-28 13:54:16.972 1576 1576 I NetworkSpeedView: /update(), speed=27B/s
12-28 13:54:16.980 1576 1576 W View : requestLayout() improperly called by com.android.systemui.statusbar.phone.IconMerger{de50a0a V.E...... ......I. 0,0-225,60 #7f1000e8 app:id/notificationIcons} during layout: running second layout pass
12-28 13:54:17.298 530 530 E Thermal-daemon: [charger_ic] temp_new :35 temp_old :34
12-28 13:54:17.298 530 530 E Thermal-daemon: Report temperature: [charger_ic] temp :35 report_threshold:1
12-28 13:54:17.299 530 530 E Thermal-daemon: [flash_led] temp_new :36 temp_old :35
12-28 13:54:17.299 530 530 E Thermal-daemon: Report temperature: [flash_led] temp :36 report_threshold:1
12-28 13:54:17.301 530 530 E Thermal-daemon: [ap] temp_new :36 temp_old :35
12-28 13:54:17.301 530 530 E Thermal-daemon: Report temperature: [ap] temp :36 report_threshold:1
12-28 13:54:17.301 2241 3242 W ThermalStateManager: warning: no config thermal type:3 temperature:36
12-28 13:54:17.345 4001 4001 I PhoneStepDataManager: 10128302|onSensorChanged mSensorTotalSteps: 1522 1
12-28 13:54:17.483 993 1003 I art : Background partial concurrent mark sweep GC freed 20867(1651KB) AllocSpace objects, 0(0B) LOS objects, 6% free, 55MB/59MB, paused 1.665ms total 190.852ms at HeapTaskDaemon thread CareAboutPauseTimes 1
12-28 13:54:17.594 1576 1576 W View : requestLayout() improperly called by com.android.systemui.statusbar.phone.IconMerger{de50a0a V.E...... ........ 0,0-225,60 #7f1000e8 app:id/notificationIcons} during second layout pass: posting in next frame
12-28 13:54:17.846 8380 8380 I SendBroadcastPermission: action:com.huawei.action_MOTIONRECOGNITION, mPermissionType:0
12-28 13:54:17.850 8380 8380 I SendBroadcastPermission: action:com.huawei.action_MOTIONRECOGNITION_EX, mPermissionType:0
12-28 13:54:17.851 4001 4047 I MotionProxyOperator: 10128302|notifyMotionRecoResult() recoMsg: motionType: 1101 recoResult: 1 pMRes.mMotionExtras :Bundle[mParcelledData.dataSize=156]
12-28 13:54:17.851 4001 4047 I SensorHubStepCounter: 10128302|notifyMotionRecoResult() motionType = 1101 recoResult = 1 motionDirection = 0
12-28 13:54:17.852 4001 4047 I SensorHubStepCounter: 10128302|notifyMotionRecoResult() data1 = :[0] data2 = [0] data3 = [5]
12-28 13:54:17.853 4001 4047 I PhoneStepDataManager: 10128302|onStepData() System.currentTimeMillis() = 1482904457853 data0 = 1482904458000, data = [0] data1 = [0] data2 = [5]
12-28 13:54:17.877 993 993 I TrafficMonitor: update:rxPkts:1,txPkts:2,rxBytes:44,txBytes:84
12-28 13:54:17.878 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:17.878 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:18.839 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(16171792) is smaller than concurrent_start_bytes_(18630064)
12-28 13:54:18.977 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(59364144) is smaller than concurrent_start_bytes_(62354896)
12-28 13:54:19.023 16667 16675 W SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/metrics.db' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
12-28 13:54:19.023 16667 16675 W SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/help_responses.db' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
12-28 13:54:19.026 16667 16675 W SQLiteConnectionPool: A SQLiteConnection object for database '/data/user/0/com.google.android.gms/databases/auto_complete_suggestions.db' was leaked! Please fix your application to end transactions in progress properly and to close the database when it is no longer needed.
12-28 13:54:19.267 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:19.273 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:19.306 993 2079 I SendBroadcastPermission: action:android.intent.action.SIG_STR, mPermissionType:0
12-28 13:54:19.311 1576 1633 I HwMobileSignalController: subId:0 phoneType:2 networktype:13 targetClass:3 masterLevel:3 slaveLevel:4
12-28 13:54:19.843 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-55 "Tencent-StaffWiFi"NONE
12-28 13:54:19.879 993 993 I TrafficMonitor: update:rxPkts:0,txPkts:0,rxBytes:0,txBytes:0
12-28 13:54:19.879 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:19.879 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:19.946 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(17747792) is smaller than concurrent_start_bytes_(18630064)
12-28 13:54:19.974 1576 1576 I NetworkSpeedManagerEx: mIsStop = false
12-28 13:54:19.977 1576 1576 I NetworkSpeedManagerEx: value = 42.666668
12-28 13:54:19.979 1576 1576 I NetworkSpeedManagerEx: speed = 43B/s
12-28 13:54:19.979 1576 1576 I NetworkSpeedView: /update(), speed=43B/s
12-28 13:54:20.425 2587 2904 I Bluetooth_app: HeadsetStateMachine:Disconnected process message: 10, size: 0
12-28 13:54:20.427 2278 6264 I HwPowerMonitor.PowerExceptionObservable: unhandled onEvent actionID: 3002
12-28 13:54:20.427 2278 6264 W HwPowerMonitor.DayActObserver: mModemLogStatsTimes = 0, ModemLogState = 0
12-28 13:54:20.427 2278 6264 W HwPowerMonitor.DayActObserver: BAT_CHANGED, mIsScrnOffBatStatsEnabled = true, mIsCharging = true, mIsScrnOfBatDropMonitorStart = false
12-28 13:54:20.705 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(60815248) is smaller than concurrent_start_bytes_(62354896)
12-28 13:54:20.876 993 993 I TrafficMonitor: expired arrive. level:-1
12-28 13:54:20.876 993 993 I TrafficMonitor: during_ms:2001,period_ms:2000
12-28 13:54:20.876 993 993 I TrafficMonitor: count:287,rx_sum:0,tx_sum:0,rxBytes:0,during_ms:2001,rx_speed:0.0,tx_speed:0.0,rto:0.0
12-28 13:54:21.301 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:21.314 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:21.326 16667 16934 I Icing : doRemovePackageData com.koudle.andyogaexample
12-28 13:54:21.373 16667 16934 I Icing : Usage reports 0 indexed 0 rejected 0 imm upload false
12-28 13:54:21.382 16667 16934 I Icing : Usage reports 0 indexed 0 rejected 0 imm upload false
12-28 13:54:21.422 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:21.442 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:21.881 993 993 I TrafficMonitor: update:rxPkts:0,txPkts:0,rxBytes:0,txBytes:0
12-28 13:54:21.882 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:21.882 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:21.907 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-57 "Tencent-StaffWiFi"NONE
12-28 13:54:21.913 993 993 I QosMonitor: queryRtt: rtt_type = 3
12-28 13:54:21.913 993 993 I WifiProJNI: ######### GET RTT:3 ########
12-28 13:54:21.914 993 1495 I QosMonitor: postEventFromNative: msg=100,arg1=4,arg2=9
12-28 13:54:21.914 993 1495 W WifiProJNI: poll before: g_monitor_fd =182
12-28 13:54:21.914 993 1497 I HuaweiWifiWatchdogStateMachine: spd good count:0, add sc:0.0, rate:1.0
12-28 13:54:21.914 993 1497 I HuaweiWifiWatchdogStateMachine: current mHighDataFlowRate = 1.0
12-28 13:54:21.914 993 1497 I HuaweiWifiWatchdogStateMachine: POta txb txg rxg:0, 6, 0. Lr =0% Totpkt=6
12-28 13:54:21.914 993 993 I QosMonitor: resetRtt: rtt_type = 3
12-28 13:54:21.914 993 993 I WifiProJNI: ######### RESET RTT:3 ########
12-28 13:54:21.914 993 993 I WifiProJNI: ######### CMD_QUERY_PKTS ########
12-28 13:54:21.915 993 1495 I QosMonitor: postEventFromNative: msg=100,arg1=0,arg2=9
12-28 13:54:21.915 993 1495 W WifiProJNI: poll before: g_monitor_fd =182
12-28 13:54:21.919 993 1497 I HuaweiWifiWatchdogStateMachine: PTcp RTT:240, rtt pkt=3, tcp_rx=1, tcp_tx=2, tcp_reTran=0, rtRate=0
12-28 13:54:21.919 993 1497 I HuaweiWifiWatchdogStateMachine: rs ota tcp lr rttvb bad: false, false, false, false, false; rsth:-75
12-28 13:54:21.920 993 1497 I HuaweiWifiWatchdogStateMachine: judge good link######, goodLinkLevel=3
12-28 13:54:21.920 993 1497 I HuaweiWifiWatchdogStateMachine: sendResultMsgToQM bssid:64:f6:**:**:c9:ce, qoslevel=3
12-28 13:54:21.920 993 1497 I HuaweiWifiWatchdogStateMachine: link good reported, good base rssi:-52
12-28 13:54:21.920 993 1497 I HuaweiWifiWatchdogStateMachine: pkt chk not bad, reset sc to 0.
12-28 13:54:22.249 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:22.449 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(16372480) is smaller than concurrent_start_bytes_(18630064)
12-28 13:54:22.858 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-58 "Tencent-StaffWiFi"NONE
12-28 13:54:22.891 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(61736032) is smaller than concurrent_start_bytes_(62354896)
12-28 13:54:22.982 1576 1576 I NetworkSpeedManagerEx: mIsStop = false
12-28 13:54:22.987 1576 1576 I NetworkSpeedManagerEx: value = 0.0
12-28 13:54:22.991 1576 1576 I NetworkSpeedManagerEx: speed = 0K/s
12-28 13:54:22.992 1576 1576 I NetworkSpeedView: /update(), speed=0K/s
12-28 13:54:23.013 1576 1576 W View : requestLayout() improperly called by com.android.systemui.statusbar.phone.IconMerger{de50a0a V.E...... ......I. 0,0-225,60 #7f1000e8 app:id/notificationIcons} during layout: running second layout pass
12-28 13:54:23.143 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:23.156 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:23.168 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:23.883 993 993 I TrafficMonitor: update:rxPkts:0,txPkts:0,rxBytes:0,txBytes:0
12-28 13:54:23.883 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:23.883 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:24.064 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(17952048) is smaller than concurrent_start_bytes_(18630064)
12-28 13:54:25.087 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:25.310 993 2209 I SendBroadcastPermission: action:android.intent.action.SIG_STR, mPermissionType:0
12-28 13:54:25.314 1576 1633 I HwMobileSignalController: subId:0 phoneType:2 networktype:13 targetClass:3 masterLevel:3 slaveLevel:4
12-28 13:54:25.484 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:25.880 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-58 "Tencent-StaffWiFi"NONE
12-28 13:54:25.886 993 993 I TrafficMonitor: update:rxPkts:0,txPkts:0,rxBytes:0,txBytes:0
12-28 13:54:25.886 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:25.886 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:25.994 1576 1576 I NetworkSpeedManagerEx: mIsStop = false
12-28 13:54:25.996 1576 1576 I NetworkSpeedManagerEx: value = 0.0
12-28 13:54:25.998 1576 1576 I NetworkSpeedManagerEx: speed = 0K/s
12-28 13:54:25.998 1576 1576 I NetworkSpeedView: /update(), speed=0K/s
12-28 13:54:26.010 1576 1576 W View : requestLayout() improperly called by com.android.systemui.statusbar.phone.IconMerger{de50a0a V.E...... ........ 0,0-225,60 #7f1000e8 app:id/notificationIcons} during second layout pass: posting in next frame
12-28 13:54:26.116 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(59185904) is smaller than concurrent_start_bytes_(62354896)
12-28 13:54:26.339 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(16572688) is smaller than concurrent_start_bytes_(18630064)
12-28 13:54:26.609 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:26.882 993 993 I TrafficMonitor: expired arrive. level:-1
12-28 13:54:26.882 993 993 I TrafficMonitor: during_ms:2003,period_ms:2000
12-28 13:54:26.882 993 993 I TrafficMonitor: count:290,rx_sum:0,tx_sum:0,rxBytes:0,during_ms:2003,rx_speed:0.0,tx_speed:0.0,rto:0.0
12-28 13:54:27.308 530 530 E Thermal-daemon: [flash_led] temp_new :35 temp_old :36
12-28 13:54:27.310 530 530 E Thermal-daemon: Report temperature: [flash_led] temp :35 report_threshold:1
12-28 13:54:27.311 530 530 E Thermal-daemon: [ap] temp_new :35 temp_old :36
12-28 13:54:27.311 530 530 E Thermal-daemon: Report temperature: [ap] temp :35 report_threshold:1
12-28 13:54:27.312 2241 3242 W ThermalStateManager: warning: no config thermal type:3 temperature:35
12-28 13:54:27.789 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:27.801 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:27.887 993 993 I TrafficMonitor: update:rxPkts:0,txPkts:0,rxBytes:0,txBytes:0
12-28 13:54:27.887 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:27.887 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:28.227 993 1003 I art : GC statistics: 1 time(s), freed 59043(3MB) objects, paused 4.451ms total 58.606ms
12-28 13:54:28.227 993 1003 I art : Background partial concurrent mark sweep GC freed 29022(1569KB) AllocSpace objects, 0(0B) LOS objects, 6% free, 55MB/59MB, paused 2.083ms total 214.543ms at HeapTaskDaemon thread CareAboutPauseTimes 1
12-28 13:54:28.890 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-58 "Tencent-StaffWiFi"NONE
12-28 13:54:29.002 1576 1576 I NetworkSpeedManagerEx: mIsStop = false
12-28 13:54:29.004 1576 1576 I NetworkSpeedManagerEx: value = 0.0
12-28 13:54:29.004 1576 1576 I NetworkSpeedManagerEx: speed = 0K/s
12-28 13:54:29.004 1576 1576 I NetworkSpeedView: /update(), speed=0K/s
12-28 13:54:29.100 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(16234960) is smaller than concurrent_start_bytes_(18707408)
12-28 13:54:29.735 1723 1723 I wpa_supplicant: wlan0: HEART-BEAT-ACK: 440
12-28 13:54:29.737 993 1891 W WifiMonitor: couldn't identify event type - HEART-BEAT-ACK: 440
12-28 13:54:29.891 993 993 I TrafficMonitor: update:rxPkts:0,txPkts:0,rxBytes:0,txBytes:0
12-28 13:54:29.891 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:29.891 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:29.914 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-58 "Tencent-StaffWiFi"NONE
12-28 13:54:29.918 993 993 I QosMonitor: queryRtt: rtt_type = 3
12-28 13:54:29.918 993 993 I WifiProJNI: ######### GET RTT:3 ########
12-28 13:54:29.919 993 1497 I HuaweiWifiWatchdogStateMachine: spd good count:0, add sc:0.0, rate:1.0
12-28 13:54:29.919 993 1497 I HuaweiWifiWatchdogStateMachine: current mHighDataFlowRate = 1.0
12-28 13:54:29.919 993 1497 I HuaweiWifiWatchdogStateMachine: not any pkt, ignore this period chk result.
12-28 13:54:29.919 993 1495 I QosMonitor: postEventFromNative: msg=100,arg1=4,arg2=9
12-28 13:54:29.919 993 1495 W WifiProJNI: poll before: g_monitor_fd =182
12-28 13:54:30.339 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(59517200) is smaller than concurrent_start_bytes_(62397360)
12-28 13:54:30.601 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(17768032) is smaller than concurrent_start_bytes_(18707408)
12-28 13:54:30.768 17369 17369 I appproc : CLASSPATH=/system/framework/pm.jar
12-28 13:54:30.768 17369 17369 I appproc : Command=app_process /system/bin com.android.commands.pm.Pm list users
12-28 13:54:30.784 17369 17369 I AndroidRuntime: readDownloadBoosterConfig: 'false'
12-28 13:54:30.836 17369 17369 I HWSERVICES: hwnative_get_component_register:libdrmbitmap,JNI
12-28 13:54:30.844 17369 17369 I : power log dlsym ok
12-28 13:54:30.845 17369 17369 I Radio-JNI: register_android_hardware_Radio DONE
12-28 13:54:30.853 17369 17369 I android_hardware_fm.cpp: register_android_hardware_fm_fmradio
12-28 13:54:30.853 17369 17369 I android_hardware_fm.cpp: ========64bit long size = 8
12-28 13:54:30.853 17369 17369 I android_hardware_fm.cpp: FM: get chip type = bcm43xx
12-28 13:54:30.855 17369 17369 E fm_if.c : find the id:fm and begins to open the devices
12-28 13:54:30.855 17369 17369 I android_hardware_fm.cpp: register_android_hardware_fm_fmradio, ret is 0
12-28 13:54:30.880 17369 17369 I art : System.exit called, status: 0
12-28 13:54:30.880 17369 17369 I AndroidRuntime: VM exiting with result code 0.
12-28 13:54:30.894 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:30.927 993 2244 I PackageManager: Start dump, calling from : pid=17380, uid=2000
12-28 13:54:31.178 17382 17382 I appproc : CLASSPATH=/system/framework/pm.jar
12-28 13:54:31.178 17382 17382 I appproc : Command=app_process /system/bin com.android.commands.pm.Pm list users
12-28 13:54:31.181 17382 17382 I AndroidRuntime: readDownloadBoosterConfig: 'false'
12-28 13:54:31.212 17382 17382 I HWSERVICES: hwnative_get_component_register:libdrmbitmap,JNI
12-28 13:54:31.216 17382 17382 I : power log dlsym ok
12-28 13:54:31.217 17382 17382 I Radio-JNI: register_android_hardware_Radio DONE
12-28 13:54:31.223 17382 17382 I android_hardware_fm.cpp: register_android_hardware_fm_fmradio
12-28 13:54:31.223 17382 17382 I android_hardware_fm.cpp: ========64bit long size = 8
12-28 13:54:31.223 17382 17382 I android_hardware_fm.cpp: FM: get chip type = bcm43xx
12-28 13:54:31.224 17382 17382 E fm_if.c : find the id:fm and begins to open the devices
12-28 13:54:31.224 17382 17382 I android_hardware_fm.cpp: register_android_hardware_fm_fmradio, ret is 0
12-28 13:54:31.238 17382 17382 I art : System.exit called, status: 0
12-28 13:54:31.238 17382 17382 I AndroidRuntime: VM exiting with result code 0.
12-28 13:54:31.310 993 1583 I SendBroadcastPermission: action:android.intent.action.SIG_STR, mPermissionType:0
12-28 13:54:31.314 1576 1633 I HwMobileSignalController: subId:0 phoneType:2 networktype:13 targetClass:3 masterLevel:3 slaveLevel:4
12-28 13:54:31.694 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(60314784) is smaller than concurrent_start_bytes_(62397360)
12-28 13:54:31.895 993 993 I TrafficMonitor: update:rxPkts:0,txPkts:0,rxBytes:0,txBytes:0
12-28 13:54:31.895 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:31.895 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:31.905 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-59 "Tencent-StaffWiFi"NONE
12-28 13:54:31.956 16667 16934 I Icing : Indexing A0FB0B5A509B0B5C9CE44D80D82034D2AEEF28DA from com.google.android.gms
12-28 13:54:32.006 1576 1576 I NetworkSpeedManagerEx: mIsStop = false
12-28 13:54:32.011 1576 1576 I NetworkSpeedManagerEx: value = 0.0
12-28 13:54:32.014 1576 1576 I NetworkSpeedManagerEx: speed = 0K/s
12-28 13:54:32.014 1576 1576 I NetworkSpeedView: /update(), speed=0K/s
12-28 13:54:32.252 993 1104 I SendBroadcastPermission: action:android.net.conn.DATA_ACTIVITY_CHANGE, mPermissionType:0
12-28 13:54:32.348 4001 4001 I PhoneStepDataManager: 10128302|onSensorChanged mSensorTotalSteps: 1522 2
12-28 13:54:32.351 2241 4322 I PgedBinderListener: kstate callback type:16 value1=8380 value2=CALLED
12-28 13:54:32.694 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(16464560) is smaller than concurrent_start_bytes_(18707408)
12-28 13:54:32.699 2278 2278 W PowerMonitor.PeriodCheckItem: powergenie_mode, put to hashmap: key = 1482904472698, value = 2, length = 1
12-28 13:54:32.701 2278 2278 W PowerMonitor.PeriodCheckItem: backlight, put to hashmap: key = 1482904472698, value = 1094, length = 4
12-28 13:54:32.702 2278 2278 W PowerMonitor.PeriodCheckItem: discharging, put to hashmap: key = 1482904472698, value = 342, length = 3
12-28 13:54:32.852 8380 8380 I SendBroadcastPermission: action:com.huawei.action_MOTIONRECOGNITION, mPermissionType:0
12-28 13:54:32.854 8380 8380 I SendBroadcastPermission: action:com.huawei.action_MOTIONRECOGNITION_EX, mPermissionType:0
12-28 13:54:32.856 4001 4047 I MotionProxyOperator: 10128302|notifyMotionRecoResult() recoMsg: motionType: 1101 recoResult: 1 pMRes.mMotionExtras :Bundle[mParcelledData.dataSize=156]
12-28 13:54:32.856 4001 4047 I SensorHubStepCounter: 10128302|notifyMotionRecoResult() motionType = 1101 recoResult = 1 motionDirection = 0
12-28 13:54:32.856 4001 4047 I SensorHubStepCounter: 10128302|notifyMotionRecoResult() data1 = :[0] data2 = [0] data3 = [0]
12-28 13:54:32.858 4001 4047 I PhoneStepDataManager: 10128302|onStepData() System.currentTimeMillis() = 1482904472857 data0 = 1482904473000, data = [0] data1 = [0] data2 = [0]
12-28 13:54:32.888 993 993 I TrafficMonitor: expired arrive. level:-1
12-28 13:54:32.888 993 993 I TrafficMonitor: during_ms:2004,period_ms:2000
12-28 13:54:32.888 993 993 I TrafficMonitor: count:293,rx_sum:0,tx_sum:0,rxBytes:0,during_ms:2004,rx_speed:0.0,tx_speed:0.0,rto:0.0
12-28 13:54:33.843 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:33.897 993 993 I TrafficMonitor: update:rxPkts:0,txPkts:0,rxBytes:0,txBytes:0
12-28 13:54:33.897 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:33.897 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:33.936 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(61269312) is smaller than concurrent_start_bytes_(62397360)
12-28 13:54:34.003 993 1429 W AlarmManager: WAKEUP alarm trigger action = android.content.syncmanager.SYNC_ALARM elapsed = 7136850
12-28 13:54:34.242 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(18003824) is smaller than concurrent_start_bytes_(18707408)
12-28 13:54:34.681 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:34.700 993 1487 E HwCHRWifiRSSIGroupSummery: updatArpSummery mRSSI:-60 HwCHRWifiRSSIGroup [rssi_index=4, rtt_tcp_packets=0, rtt_tcp_duration=0, rtt_lan_duration=285, rtt_lan_failures=0, rtt_lan_succ=23, rtt_lan_max=24, rtt_lan_min=6]
12-28 13:54:34.919 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-58 "Tencent-StaffWiFi"NONE
12-28 13:54:35.018 1576 1576 I NetworkSpeedManagerEx: mIsStop = false
12-28 13:54:35.023 1576 1576 I NetworkSpeedManagerEx: value = 0.0
12-28 13:54:35.027 1576 1576 I NetworkSpeedManagerEx: speed = 0K/s
12-28 13:54:35.027 1576 1576 I NetworkSpeedView: /update(), speed=0K/s
12-28 13:54:35.204 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:35.900 993 993 I TrafficMonitor: update:rxPkts:0,txPkts:0,rxBytes:0,txBytes:0
12-28 13:54:35.900 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:35.900 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:36.016 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(62365328) is smaller than concurrent_start_bytes_(62397360)
12-28 13:54:36.486 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(16659344) is smaller than concurrent_start_bytes_(18707408)
12-28 13:54:37.059 993 2274 I LocationManagerService: getProviders()=[passive, gps, network, local_database]
12-28 13:54:37.107 993 2209 I LocationManagerService: getProviders()=[passive, gps, network, local_database]
12-28 13:54:37.147 16667 16934 I Icing : Indexing done A0FB0B5A509B0B5C9CE44D80D82034D2AEEF28DA
12-28 13:54:37.312 993 2153 I SendBroadcastPermission: action:android.intent.action.SIG_STR, mPermissionType:0
12-28 13:54:37.316 1576 1633 I HwMobileSignalController: subId:0 phoneType:2 networktype:13 targetClass:3 masterLevel:3 slaveLevel:4
12-28 13:54:37.318 530 530 E Thermal-daemon: [flash_led] temp_new :36 temp_old :35
12-28 13:54:37.318 530 530 E Thermal-daemon: Report temperature: [flash_led] temp :36 report_threshold:1
12-28 13:54:37.321 2241 3242 W ThermalStateManager: warning: no config thermal type:3 temperature:36
12-28 13:54:37.345 4001 4001 I PhoneStepDataManager: 10128302|onSensorChanged mSensorTotalSteps: 1522 3
12-28 13:54:37.848 8380 8380 I SendBroadcastPermission: action:com.huawei.action_MOTIONRECOGNITION, mPermissionType:0
12-28 13:54:37.850 8380 8380 I SendBroadcastPermission: action:com.huawei.action_MOTIONRECOGNITION_EX, mPermissionType:0
12-28 13:54:37.852 4001 4047 I MotionProxyOperator: 10128302|notifyMotionRecoResult() recoMsg: motionType: 1101 recoResult: 1 pMRes.mMotionExtras :Bundle[mParcelledData.dataSize=156]
12-28 13:54:37.852 4001 4047 I SensorHubStepCounter: 10128302|notifyMotionRecoResult() motionType = 1101 recoResult = 1 motionDirection = 0
12-28 13:54:37.853 4001 4047 I SensorHubStepCounter: 10128302|notifyMotionRecoResult() data1 = :[0] data2 = [0] data3 = [5]
12-28 13:54:37.854 4001 4047 I PhoneStepDataManager: 10128302|onStepData() System.currentTimeMillis() = 1482904477854 data0 = 1482904478000, data = [0] data1 = [0] data2 = [5]
12-28 13:54:37.903 993 993 I TrafficMonitor: update:rxPkts:0,txPkts:0,rxBytes:0,txBytes:0
12-28 13:54:37.903 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:37.904 993 993 I TrafficMonitor: gettimer:interval=5000
12-28 13:54:37.922 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-58 "Tencent-StaffWiFi"NONE
12-28 13:54:37.929 993 993 I QosMonitor: queryRtt: rtt_type = 3
12-28 13:54:37.929 993 993 I WifiProJNI: ######### GET RTT:3 ########
12-28 13:54:37.929 993 1495 I QosMonitor: postEventFromNative: msg=100,arg1=4,arg2=9
12-28 13:54:37.929 993 1495 W WifiProJNI: poll before: g_monitor_fd =182
12-28 13:54:37.930 993 1497 I HuaweiWifiWatchdogStateMachine: spd good count:0, add sc:0.0, rate:1.0
12-28 13:54:37.932 993 1497 I HuaweiWifiWatchdogStateMachine: current mHighDataFlowRate = 1.0
12-28 13:54:37.932 993 1497 I HuaweiWifiWatchdogStateMachine: POta txb txg rxg:0, 4, 0. Lr =0% Totpkt=4
12-28 13:54:37.933 993 993 I WifiProJNI: ######### CMD_QUERY_PKTS ########
12-28 13:54:37.933 993 1495 I QosMonitor: postEventFromNative: msg=100,arg1=0,arg2=9
12-28 13:54:37.933 993 1495 W WifiProJNI: poll before: g_monitor_fd =182
12-28 13:54:37.936 993 1497 I HuaweiWifiWatchdogStateMachine: PTcp RTT:0, rtt pkt=0, tcp_rx=0, tcp_tx=0, tcp_reTran=0, rtRate=0
12-28 13:54:37.937 993 1497 I HuaweiWifiWatchdogStateMachine: rs ota tcp lr rttvb bad: false, false, false, false, false; rsth:-75
12-28 13:54:37.937 993 1497 I HuaweiWifiWatchdogStateMachine: pkt chk not bad, reset sc to 0.
12-28 13:54:37.948 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-58 "Tencent-StaffWiFi"NONE
12-28 13:54:38.030 1576 1576 I NetworkSpeedManagerEx: mIsStop = false
12-28 13:54:38.032 1576 1576 I NetworkSpeedManagerEx: value = 0.0
12-28 13:54:38.033 1576 1576 I NetworkSpeedManagerEx: speed = 0K/s
12-28 13:54:38.033 1576 1576 I NetworkSpeedView: /update(), speed=0K/s
12-28 13:54:38.202 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:38.451 993 1003 I art : GC statistics: 1 time(s), freed 60814(3MB) objects, paused 4.379ms total 82.834ms
12-28 13:54:38.451 993 1003 I art : Background partial concurrent mark sweep GC freed 18428(989KB) AllocSpace objects, 0(0B) LOS objects, 6% free, 55MB/59MB, paused 1.813ms total 193.575ms at HeapTaskDaemon thread CareAboutPauseTimes 1
12-28 13:54:38.897 993 993 I TrafficMonitor: expired arrive. level:-1
12-28 13:54:38.897 993 993 I TrafficMonitor: during_ms:2003,period_ms:2000
12-28 13:54:38.897 993 993 I TrafficMonitor: count:296,rx_sum:0,tx_sum:0,rxBytes:0,during_ms:2003,rx_speed:0.0,tx_speed:0.0,rto:0.0
12-28 13:54:38.907 993 1104 I SendBroadcastPermission: action:android.net.conn.DATA_ACTIVITY_CHANGE, mPermissionType:0
12-28 13:54:39.239 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(16297840) is smaller than concurrent_start_bytes_(18762960)
12-28 13:54:39.322 993 1583 I PackageManager: Start dump, calling from : pid=17395, uid=2000
12-28 13:54:39.465 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:39.590 17397 17397 I appproc : CLASSPATH=/system/framework/wm.jar
12-28 13:54:39.590 17397 17397 I appproc : Command=app_process /system/bin com.android.commands.wm.Wm dismiss-keyguard
12-28 13:54:39.592 17397 17397 I AndroidRuntime: readDownloadBoosterConfig: 'false'
12-28 13:54:39.629 17397 17397 I HWSERVICES: hwnative_get_component_register:libdrmbitmap,JNI
12-28 13:54:39.634 17397 17397 I : power log dlsym ok
12-28 13:54:39.636 17397 17397 I Radio-JNI: register_android_hardware_Radio DONE
12-28 13:54:39.641 17397 17397 I android_hardware_fm.cpp: register_android_hardware_fm_fmradio
12-28 13:54:39.641 17397 17397 I android_hardware_fm.cpp: ========64bit long size = 8
12-28 13:54:39.641 17397 17397 I android_hardware_fm.cpp: FM: get chip type = bcm43xx
12-28 13:54:39.642 17397 17397 E fm_if.c : find the id:fm and begins to open the devices
12-28 13:54:39.642 17397 17397 I android_hardware_fm.cpp: register_android_hardware_fm_fmradio, ret is 0
12-28 13:54:39.743 17402 17402 I appproc : CLASSPATH=/system/framework/pm.jar
12-28 13:54:39.743 17402 17402 I appproc : Command=app_process /system/bin com.android.commands.pm.Pm install -r /data/local/tmp/com.koudle.andyogaexample
12-28 13:54:39.746 17402 17402 I AndroidRuntime: readDownloadBoosterConfig: 'false'
12-28 13:54:39.776 17402 17402 I HWSERVICES: hwnative_get_component_register:libdrmbitmap,JNI
12-28 13:54:39.781 17402 17402 I : power log dlsym ok
12-28 13:54:39.782 17402 17402 I Radio-JNI: register_android_hardware_Radio DONE
12-28 13:54:39.788 17402 17402 I android_hardware_fm.cpp: register_android_hardware_fm_fmradio
12-28 13:54:39.788 17402 17402 I android_hardware_fm.cpp: ========64bit long size = 8
12-28 13:54:39.788 17402 17402 I android_hardware_fm.cpp: FM: get chip type = bcm43xx
12-28 13:54:39.788 17402 17402 E fm_if.c : find the id:fm and begins to open the devices
12-28 13:54:39.789 17402 17402 I android_hardware_fm.cpp: register_android_hardware_fm_fmradio, ret is 0
12-28 13:54:39.819 2241 2254 I PgedBinderListener: kstate callback type:16 value1=1576 value2=CALLED
12-28 13:54:39.819 2306 2306 I HwLauncher: Launcher onPause()
12-28 13:54:39.820 2306 17419 I HwLauncher: Launcher.MotionManager stopMotionAppsReco begin,flg = 402
12-28 13:54:39.820 2306 17419 W HwLauncher: Launcher.MotionManager stopMotionAppsReco service flg 402 is unavailable
12-28 13:54:39.822 2306 17420 I HwLauncher: Launcher.MotionManager stopMotionAppsReco begin,flg = 403
12-28 13:54:39.822 2306 17420 W HwLauncher: Launcher.MotionManager stopMotionAppsReco service flg 403 is unavailable
12-28 13:54:39.842 2306 2306 I SendBroadcastPermission: action:com.huawei.android.action.WIDGET_FOCUS_CHANGE, mPermissionType:0
12-28 13:54:39.849 364 492 I gralloc : Alloc req: dev=0x7f8f8c2540, w=16, h=16, format=0x1, usage=0x100
12-28 13:54:39.849 364 492 I gralloc : Alloc handle(0x7f7970d700): interfmt=0x1, stride=64, size=4096
12-28 13:54:39.849 1724 2386 I HwSystemManager: NotificationGuideService:handle MSG_ACTIVIY_FOREGROUND, uid:10026
12-28 13:54:39.850 17421 17434 E linker : readlink('/proc/self/fd/23') failed: Permission denied [fd=23]
12-28 13:54:39.850 17421 17434 E linker : warning: unable to get realpath for the library "/system/lib64/hw/gralloc.hi3650.so". Will use given name.
12-28 13:54:39.852 364 419 I gralloc : Free handle(0x7f7970d700)
12-28 13:54:39.853 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:39.858 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:39.859 364 419 I gralloc : Alloc req: dev=0x7f8f8c2540, w=1080, h=1830, format=0x1, usage=0x933
12-28 13:54:39.860 364 419 I gralloc : Alloc handle(0x7f7970d000): interfmt=0x1, stride=1088, size=8486912
12-28 13:54:39.868 2306 2306 E HideAppsPagedView: removeHideApps begin
12-28 13:54:39.869 2306 2306 E HideAppsPagedView: removeHideApps end
12-28 13:54:39.869 2306 2306 E HideAppsPagedView: syncPages mCurrentPage = 0
12-28 13:54:39.870 2306 2306 E HideAppsPagedView: syncAppsPageItems page = 0 mNumAppsPages = 1 mCurrentPage = 0
12-28 13:54:39.870 2306 2306 E HideAppsPagedView: createAddIcon count = 0
12-28 13:54:39.881 17421 17421 W System : ClassLoader referenced unknown path: /system/priv-app/PackageInstaller/lib/arm64
12-28 13:54:39.884 2306 2306 I HwLauncher: Launcher.Utilities controlColor == 0
12-28 13:54:39.885 2306 2306 I HwLauncher: FPSMonitor snapToPage whichPage = 0 delta = 0 duration = 550
12-28 13:54:39.892 17421 17421 I HwCust : Constructor found for class android.app.HwCustHwWallpaperManagerImpl
12-28 13:54:39.892 364 2123 I gralloc : Free handle(0x7f79604600)
12-28 13:54:39.898 17421 17421 I PI.HandleAdbInstallFlow: confirmAdbInstall installflags:66
12-28 13:54:39.899 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(59782544) is smaller than concurrent_start_bytes_(62404528)
12-28 13:54:39.921 17421 17431 I art : humin current process: com.android.packageinstaller
12-28 13:54:39.932 17421 17421 I PI.HwPermissionUtils: not have HwSystemManager
12-28 13:54:39.934 1724 2471 I HwSystemManager: PackageInstallService:requestPermissionRecommendInfo for com.koudle.andyogaexample
12-28 13:54:39.935 1724 2471 W HwSystemManager: AbsRecommendQuery:queryRecommendData get a invalid cursor, maybe no matched result exist!
12-28 13:54:39.936 1724 2471 E HwSystemManager: PIDataCvt:cvtFromRecommendProvider catch RecommendParamException: fromBundle: invalid input 'bundle', forBusiness: 6
12-28 13:54:39.936 1724 2471 W HwSystemManager: AbsRecommendQuery:queryRecommendData get a invalid cursor, maybe no matched result exist!
12-28 13:54:39.936 1724 2471 E HwSystemManager: PIDataCvt:cvtFromRecommendProvider catch RecommendParamException: fromBundle: invalid input 'bundle', forBusiness: 4
12-28 13:54:39.937 17421 17440 I PI.PermissionManager: recommendstatus:true,recom size:0
12-28 13:54:39.937 17421 17440 E PI.PhoneManagerHelper: getRecommendInfoMap get invalid recommendInfo!
12-28 13:54:39.937 17421 17440 I PI.PermissionManager: can not get recommendMap!
12-28 13:54:39.968 17421 17421 I PI.PackageInstaller: callerPackageName = null
12-28 13:54:39.968 17421 17421 I PI.PackageInstaller: installerPackageName = null
12-28 13:54:40.013 17421 17442 I OpenGLRenderer: Initialized EGL, version 1.4
12-28 13:54:40.015 17421 17442 E linker : readlink('/proc/self/fd/35') failed: Permission denied [fd=35]
12-28 13:54:40.015 17421 17442 E linker : warning: unable to get realpath for the library "libhwaps.so". Will use given name.
12-28 13:54:40.023 17421 17442 E linker : readlink('/proc/self/fd/36') failed: Permission denied [fd=36]
12-28 13:54:40.023 17421 17442 E linker : warning: unable to get realpath for the library "/system/lib64/libhwuibp.so". Will use given name.
12-28 13:54:40.026 364 421 I gralloc : Alloc req: dev=0x7f8f8c2540, w=1080, h=1830, format=0x1, usage=0xb00
12-28 13:54:40.027 364 421 I gralloc : Alloc handle(0x7f79604b00): interfmt=0x200000001, stride=1088, size=8486912
12-28 13:54:40.027 364 421 I gralloc : Alloc req: dev=0x7f8f8c2540, w=1080, h=1830, format=0x1, usage=0xb00
12-28 13:54:40.029 17421 17431 I art : Object allocation is busy now, so prior to grow the heap. New heap size is 22 MB
12-28 13:54:40.034 364 421 I gralloc : Alloc handle(0x7f799c7f00): interfmt=0x200000001, stride=1088, size=8134656
12-28 13:54:40.034 364 421 I gralloc : Alloc req: dev=0x7f8f8c2540, w=1080, h=1830, format=0x1, usage=0xb00
12-28 13:54:40.034 364 421 I gralloc : Alloc handle(0x7f7970d900): interfmt=0x200000001, stride=1088, size=8486912
12-28 13:54:40.045 17421 17456 E PI.JsonBean: valueToJson error, field:private transient java.lang.Class java.lang.Object.shadow$_klass_
12-28 13:54:40.061 993 1107 I ActivityManager: Displayed com.android.packageinstaller/.PackageInstallerActivity: +239ms
12-28 13:54:40.085 17421 17456 I System : core_booster, getBoosterConfig = false
12-28 13:54:40.094 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(17835904) is smaller than concurrent_start_bytes_(18762960)
12-28 13:54:40.101 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:40.115 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:40.129 17421 17456 I System : core_booster, getBoosterConfig = false
12-28 13:54:40.145 2306 2306 I HwLauncher: Launcher mUnlockScreenRunnbale getOrientationEnabled false
12-28 13:54:40.145 2306 2306 I HwLauncher: Launcher onStop()
12-28 13:54:40.271 364 364 I gralloc : Free handle(0x7f7970d000)
12-28 13:54:40.321 364 364 I gralloc : Free handle(0x7f79604c00)
12-28 13:54:40.323 364 364 I gralloc : Free handle(0x7f79604900)
12-28 13:54:40.388 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:40.775 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(60637968) is smaller than concurrent_start_bytes_(62404528)
12-28 13:54:40.923 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:40.960 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-58 "Tencent-StaffWiFi"NONE
12-28 13:54:41.034 1576 1576 I NetworkSpeedManagerEx: mIsStop = false
12-28 13:54:41.035 1576 1576 I NetworkSpeedManagerEx: value = 821.3333
12-28 13:54:41.036 1576 1576 I NetworkSpeedManagerEx: speed = 821B/s
12-28 13:54:41.036 1576 1576 I NetworkSpeedView: /update(), speed=821B/s
12-28 13:54:41.051 1576 1576 W View : requestLayout() improperly called by com.android.systemui.statusbar.phone.IconMerger{de50a0a V.E...... ......I. 0,0-225,60 #7f1000e8 app:id/notificationIcons} during layout: running second layout pass
12-28 13:54:41.253 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(16453888) is smaller than concurrent_start_bytes_(18762960)
12-28 13:54:41.943 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(61393216) is smaller than concurrent_start_bytes_(62404528)
12-28 13:54:42.093 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(17964496) is smaller than concurrent_start_bytes_(18762960)
12-28 13:54:42.323 530 530 E Thermal-daemon: [ap] temp_new :36 temp_old :35
12-28 13:54:42.323 530 530 E Thermal-daemon: Report temperature: [ap] temp :36 report_threshold:1
12-28 13:54:42.747 993 1583 I SendBroadcastPermission: action:android.intent.action.SIG_STR, mPermissionType:0
12-28 13:54:42.752 1576 1633 I HwMobileSignalController: subId:0 phoneType:2 networktype:13 targetClass:3 masterLevel:3 slaveLevel:4
12-28 13:54:42.905 993 993 I TrafficMonitor: update:rxPkts:17,txPkts:18,rxBytes:6127,txBytes:2768
12-28 13:54:42.905 993 993 I TrafficMonitor: start expired. level:-1
12-28 13:54:42.905 993 993 I TrafficMonitor: gettimer:interval=2000
12-28 13:54:42.937 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:43.128 993 1003 I art : discard a ConcurrentGC, because GetBytesAllocated(62125968) is smaller than concurrent_start_bytes_(62404528)
12-28 13:54:43.389 16823 17049 I System.out: [/system/bin/sh, -c, getprop ro.board.platform]
12-28 13:54:43.389 16823 17049 I System.out: null
12-28 13:54:43.389 16823 17049 I System.out: null
12-28 13:54:43.389 16823 17049 I System.out: Calling by::className:com.tencent.bugly.proguard.a MethodName:a
12-28 13:54:43.427 16823 17049 I System.out: [/system/bin/sh, -c, type su]
12-28 13:54:43.427 16823 17049 I System.out: null
12-28 13:54:43.427 16823 17049 I System.out: null
12-28 13:54:43.427 16823 17049 I System.out: Calling by::className:com.tencent.bugly.proguard.a MethodName:a
12-28 13:54:43.440 2258 2270 I art : discard a ConcurrentGC, because GetBytesAllocated(16704240) is smaller than concurrent_start_bytes_(18762960)
12-28 13:54:43.453 16823 17049 I System.out: [/system/bin/sh, -c, getprop ro.miui.ui.version.name]
12-28 13:54:43.454 16823 17049 I System.out: null
12-28 13:54:43.454 16823 17049 I System.out: null
12-28 13:54:43.454 16823 17049 I System.out: Calling by::className:com.tencent.bugly.proguard.a MethodName:a
12-28 13:54:43.481 16823 17049 I System.out: [/system/bin/sh, -c, getprop ro.build.version.emui]
12-28 13:54:43.481 16823 17049 I System.out: null
12-28 13:54:43.481 16823 17049 I System.out: null
12-28 13:54:43.481 16823 17049 I System.out: Calling by::className:com.tencent.bugly.proguard.a MethodName:a
12-28 13:54:43.515 16823 17049 I System.out: [/system/bin/sh, -c, getprop ro.genymotion.version]
12-28 13:54:43.515 16823 17049 I System.out: null
12-28 13:54:43.515 16823 17049 I System.out: null
12-28 13:54:43.516 16823 17049 I System.out: Calling by::className:com.tencent.bugly.proguard.a MethodName:a
12-28 13:54:43.543 16823 17049 I System.out: [/system/bin/sh, -c, getprop androVM.vbox_dpi]
12-28 13:54:43.543 16823 17049 I System.out: null
12-28 13:54:43.544 16823 17049 I System.out: null
12-28 13:54:43.544 16823 17049 I System.out: Calling by::className:com.tencent.bugly.proguard.a MethodName:a
12-28 13:54:43.573 16823 17049 I System.out: [/system/bin/sh, -c, getprop qemu.sf.fake_camera]
12-28 13:54:43.573 16823 17049 I System.out: null
12-28 13:54:43.573 16823 17049 I System.out: null
12-28 13:54:43.574 16823 17049 I System.out: Calling by::className:com.tencent.bugly.proguard.a MethodName:a
12-28 13:54:43.604 16823 17049 I System.out: [/system/bin/sh, -c, getprop ro.secure]
12-28 13:54:43.604 16823 17049 I System.out: null
12-28 13:54:43.604 16823 17049 I System.out: null
12-28 13:54:43.605 16823 17049 I System.out: Calling by::className:com.tencent.bugly.proguard.a MethodName:a
12-28 13:54:43.633 16823 17049 I System.out: [/system/bin/sh, -c, getprop ro.debuggable]
12-28 13:54:43.633 16823 17049 I System.out: null
12-28 13:54:43.633 16823 17049 I System.out: null
12-28 13:54:43.633 16823 17049 I System.out: Calling by::className:com.tencent.bugly.proguard.a MethodName:a
12-28 13:54:43.637 17421 17457 I PI.SerializedObject: write type class com.android.packageinstaller.hwcust.localCacheData.installcheck.InstallCheckList to disk sucessfully.
12-28 13:54:43.642 16667 16934 W Icing : CLD2 bad utf8
12-28 13:54:43.662 16823 17049 I System.out: [/system/bin/sh, -c, getprop gsm.sim.state]
12-28 13:54:43.662 16823 17049 I System.out: null
12-28 13:54:43.663 16823 17049 I System.out: null
12-28 13:54:43.663 16823 17049 I System.out: Calling by::className:com.tencent.bugly.proguard.a MethodName:a
12-28 13:54:43.690 16823 17049 I System.out: [/system/bin/sh, -c, getprop gsm.sim.state2]
12-28 13:54:43.690 16823 17049 I System.out: null
12-28 13:54:43.690 16823 17049 I System.out: null
12-28 13:54:43.690 16823 17049 I System.out: Calling by::className:com.tencent.bugly.proguard.a MethodName:a
12-28 13:54:43.740 16823 17486 I System : core_booster, getBoosterConfig = false
12-28 13:54:43.972 993 1451 E WifiConfigStore: updateConfiguration freq=5765 BSSID=64:f6:9d:39:c9:ce RSSI=-56 "Tencent-StaffWiFi"NONE
12-28 13:54:44.037 1576 1576 I NetworkSpeedManagerEx: mIsStop = false
12-28 13:54:44.039 1576 1576 I NetworkSpeedManagerEx: value = 3188.0
12-28 13:54:44.040 1576 1576 I NetworkSpeedManagerEx: speed = 3.1K/s
12-28 13:54:44.040 1576 1576 I NetworkSpeedView: /update(), speed=3.1K/s
12-28 13:54:44.049 1576 1576 W View : requestLayout() improperly called by com.android.systemui.statusbar.phone.IconMerger{de50a0a V.E...... ......I. 0,0-225,60 #7f1000e8 app:id/notificationIcons} during layout: running second layout pass
12-28 13:54:44.059 1576 1576 W View : requestLayout() improperly called by com.android.systemui.statusbar.phone.IconMerger{de50a0a V.E...... .......D 0,0-225,60 #7f1000e8 app:id/notificationIcons} during second layout pass: posting in next frame
12-28 13:54:44.075 1576 1576 W View : requestLayout() improperly called by com.android.systemui.statusbar.phone.IconMerger{de50a0a V.E...... ........ 0,0-225,60 #7f1000e8 app:id/notificationIcons} during second layout pass: posting in next frame
12-28 13:54:44.087 364 492 I gralloc : Alloc req: dev=0x7f8f8c2540, w=1026, h=576, format=0x1, usage=0xb00
12-28 13:54:44.090 364 492 I gralloc : Alloc handle(0x7f7970dc00): interfmt=0x1, stride=1088, size=2506752
12-28 13:54:44.090 364 492 I gralloc : Alloc req: dev=0x7f8f8c2540, w=1026, h=576, format=0x1, usage=0xb00
12-28 13:54:44.092 364 492 I gralloc : Alloc handle(0x7f7970de00): interfmt=0x1, stride=1088, size=2506752
12-28 13:54:44.092 364 492 I gralloc : Alloc req: dev=0x7f8f8c2540, w=1026, h=576, format=0x1, usage=0xb00
12-28 13:54:44.094 364 492 I gralloc : Alloc handle(0x7f89354200): interfmt=0x1, stride=1088, size=2506752
12-28 13:54:44.140 1596 1596 I PowerChecker: PowerStateChange true
12-28 13:54:44.146 2587 2904 I Bluetooth_app: HeadsetStateMachine:Disconnected process message: 10, size: 0
12-28 13:54:44.149 2278 6264 I HwPowerMonitor.PowerExceptionObservable: unhandled onEvent actionID: 3002
12-28 13:54:44.149 2278 6264 W HwPowerMonitor.DayActObserver: mModemLogStatsTimes = 0, ModemLogState = 0
12-28 13:54:44.150 2278 6264 W HwPowerMonitor.DayActObserver: BAT_CHANGED, mIsScrnOffBatStatsEnabled = true, mIsCharging = true, mIsScrnOfBatDropMonitorStart = false
12-28 13:54:44.717 17421 17421 I BD.Reporter: com.huawei.bd.IBDService$Stub$Proxy@e4742eb
12-28 13:54:44.732 364 419 I gralloc : Alloc req: dev=0x7f8f8c2540, w=300, h=535, format=0x1, usage=0x333
12-28 13:54:44.734 364 419 I gralloc : Alloc handle(0x7f799c7400): interfmt=0x1, stride=320, size=688128
12-28 13:54:44.736 364 2092 I gralloc : Free handle(0x7f799c7400)
12-28 13:54:44.757 1723 1723 I wpa_supplicant: wlan0: HEART-BEAT-ACK: 441
12-28 13:54:44.758 993 1891 W WifiMonitor: couldn't identify event type - HEART-BEAT-ACK: 441
12-28 13:54:44.758 364 419 I gralloc : Free handle(0x7f7970dc00)
12-28 13:54:44.759 364 419 I gralloc : Free handle(0x7f89354200)
12-28 13:54:44.768 17421 17421 E PI.HandleAdbInstallFlow: can't find valid activity
12-28 13:54:44.776 993 9081 W System.err: java.lang.NullPointerException: Attempt to invoke virtual method 'int com.huawei.lcagent.client.LogCollectManager.getUserType()' on a null object reference
12-28 13:54:44.776 993 9081 W System.err: at com.android.server.util.ReportTools.getUserType(ReportTools.java:86)
12-28 13:54:44.776 993 9081 W System.err: at com.android.server.util.ReportTools.isBetaUser(ReportTools.java:73)
12-28 13:54:44.776 993 9081 W System.err: at com.android.server.util.ReportTools.report(ReportTools.java:58)
12-28 13:54:44.776 993 9081 W System.err: at com.android.server.util.HwUserBehaviourRecord.appExitRecordInnerImpl(HwUserBehaviourRecord.java:125)
12-28 13:54:44.776 993 9081 W System.err: at com.android.server.util.HwUserBehaviourRecord.access$200(HwUserBehaviourRecord.java:32)
12-28 13:54:44.776 993 9081 W System.err: at com.android.server.util.HwUserBehaviourRecord$AsyUploadLooperThread$1.handleMessage(HwUserBehaviourRecord.java:255)
12-28 13:54:44.776 993 9081 W System.err: at android.os.Handler.dispatchMessage(Handler.java:102)
12-28 13:54:44.776 993 9081 W System.err: at android.os.Looper.loop(Looper.java:150)
12-28 13:54:44.776 993 9081 W System.err: at com.android.server.util.HwUserBehaviourRecord$AsyUploadLooperThread.run(HwUserBehaviourRecord.java:267)
12-28 13:54:44.776 993 9081 E ReportTools: This is not beta user build
12-28 13:54:44.800 1724 2386 I HwSystemManager: NotificationGuideService:handle MSG_ACTIVIY_FOREGROUND, uid:10049
12-28 13:54:44.802 993 1753 I SendBroadcastPermission: action:com.huawei.android.action.GET_INSTALLER_PACKAGE_INFO, mPermissionType:0
12-28 13:54:44.812 1724 2495 I HwResources: load icon id : 7f020075, pkgName : com.huawei.android.launcher
12-28 13:54:44.816 2306 2306 I HwLauncher: Launcher onStart()
12-28 13:54:44.816 2306 2306 I HwLauncher: Launcher dynamicIconsRegister
12-28 13:54:44.816 2306 2306 I HwLauncher: DynamicUpdater registerReceiver
12-28 13:54:44.817 1724 1724 I HwSystemManager: HandleInstalledPackageInfoService:onReceive action is com.huawei.android.action.GET_INSTALLER_PACKAGE_INFO
12-28 13:54:44.817 1724 1724 I HwSystemManager: HandleInstalledPackageInfoService:get count = 0
12-28 13:54:44.818 2306 2306 I HwLauncher: DynamicUpdater call updateFolder
12-28 13:54:44.818 2306 2306 I HwLauncher: DynamicIcon onResume isvisible = false mAttachedToWindow:true mWindowVisible:falsecom.android.deskclock
12-28 13:54:44.818 2306 2306 I HwLauncher: DynamicUpdater registerReceiver
12-28 13:54:44.818 2306 2473 E HwLauncher: SettingsEx , no such field.
12-28 13:54:44.818 2306 2473 W HwLauncher: Clock getDataFormat the getSystemString failed.
12-28 13:54:44.819 2306 2306 I HwLauncher: DynamicUpdater call updateFolder
12-28 13:54:44.819 2306 2306 I HwLauncher: DynamicIcon onResume isvisible = true mAttachedToWindow:false mWindowVisible:falsecom.huawei.android.totemweather
12-28 13:54:44.819 2306 2306 I HwLauncher: DynamicUpdater registerReceiver
12-28 13:54:44.819 2306 2473 I HwLauncher: WeatherDynamicUpdater positiveUpdate at WeatherDynamicUpdater
12-28 13:54:44.820 1724 2495 I HwResources: icon : com.huawei.android.launcher found in app
12-28 13:54:44.822 2306 2306 I HwLauncher: DynamicUpdater call updateFolder
12-28 13:54:44.822 2306 2306 I HwLauncher: DynamicIcon onResume isvisible = false mAttachedToWindow:true mWindowVisible:falsecom.android.calendar
12-28 13:54:44.822 2306 2306 I HwLauncher: Launcher Launcher.onStart() cost 5 ms
12-28 13:54:44.822 2306 2306 I HwLauncher: Launcher onResume()
12-28 13:54:44.822 2306 2306 I HwLauncher: Launcher doResumeWork()
12-28 13:54:44.824 2306 2306 I HwLauncher: Launcher onResume mIsToUninstallApp = false
12-28 13:54:44.824 2306 2306 I HwLauncher: Launcher Launcher hot start cost 7 ms
12-28 13:54:44.826 2306 17504 I HwLauncher: Launcher.MotionManager startMotionAppsReco begin,flg = 402