-
Notifications
You must be signed in to change notification settings - Fork 1
/
test124.txt
2459 lines (2459 loc) · 224 KB
/
test124.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--------- beginning of main
I/cm ( 0): Welcome to Android 5.0.2 / CyanogenMod-12-20150715-UNOFFICIAL-k3gxx
W/auditd ( 3697): type=2000 audit(0.0:1): initialized
W/auditd ( 3697): type=1325 audit(0.0:2): table=filter family=2 entries=0
W/auditd ( 3697): type=1325 audit(0.0:3): table=mangle family=2 entries=0
W/auditd ( 3697): type=1325 audit(0.0:4): table=nat family=2 entries=0
W/auditd ( 3697): type=1325 audit(0.0:5): table=raw family=2 entries=0
W/auditd ( 3697): type=1325 audit(0.0:6): table=security family=2 entries=0
W/auditd ( 3697): type=1325 audit(0.0:7): table=filter family=3 entries=0
W/auditd ( 3697): type=1325 audit(0.0:8): table=filter family=10 entries=0
W/auditd ( 3697): type=1325 audit(0.0:9): table=mangle family=10 entries=0
W/auditd ( 3697): type=1325 audit(0.0:10): table=raw family=10 entries=0
I/McDaemon( 0): Daemon starting up...
I/McDaemon( 0): Socket interface version is 0.2
I/McDaemon( 0): *** t-base-300-Ares-2-Android-V004_P3 ###
I/McDaemon( 0): Build timestamp is Jan 20 2015 11:49:09
I/McDaemon( 0): Checking version of <t-base
I/McDaemon( 0): Product ID is tbase-300_EXYNOS_5422_V004_P3
I/McDaemon( 0): (null)
I/McDaemon( 0): (null)
I/McDaemon( 0): (null)
I/McDaemon( 0): (null)
W/auditd ( 3697): type=1305 audit(0.0:11): audit_pid=3672 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3697): res=1
W/auditd ( 3697): type=1305 audit(0.0:12): audit_rate_limit=20 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3697): res=1
I/lowmemorykiller( 3674): Using in-kernel low memory killer interface
--------- beginning of system
I/Vold ( 3676): Vold 2.1 (the revenge) firing up
D/Vold ( 3676): Volume extSdCard state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3676): Volume UsbDriveA state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3676): Volume UsbDriveB state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3676): Volume UsbDriveC state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3676): Volume UsbDriveD state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3676): Volume UsbDriveE state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3676): Volume UsbDriveF state changing -1 (Initializing) -> 0 (No-Media)
I/Cryptfs ( 3676): Check if PFE is activated on Boot
I/DEBUG ( 3689): debuggerd: Jul 3 2015 03:58:19
E/Cryptfs ( 3676): Bad magic for real block device /dev/block/platform/12200000.dwmmc0/by-name/USERDATA
E/Cryptfs ( 3676): Error getting crypt footer and key
I/installd( 3696): installd firing up
I/Netd ( 3688): Netd 1.0 starting
E/Netd ( 3688): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 3688): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 3688): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 3688): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 3688): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 3688): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 3688): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 3688): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
E/sdcard ( 3706): usage: sdcard [OPTIONS] <source_path> <dest_path>
E/sdcard ( 3706): -u: specify UID to run as
E/sdcard ( 3706): -g: specify GID to run as
E/sdcard ( 3706): -w: specify GID required to write (default sdcard_rw, requires -d or -l)
E/sdcard ( 3706): -t: specify number of threads to use (default 2)
E/sdcard ( 3706): -d: derive file permissions based on path
E/sdcard ( 3706): -l: derive file permissions based on legacy internal layout
E/sdcard ( 3706): -s: split derived permissions for pics, av
E/sdcard ( 3706):
I/macloader( 3704): Settting wifi type to wisol in /data/.cid.info
D/macloader( 3704): Change permissions of /data/.cid.info
I/PrProvisioning( 3720): successfully - provisioning start !
I/PrProvisioning( 3720): provisioning already done
D/SensorHubService( 3699): nuSensorHubService starting...
I/keystore( 3698): SELinux: Keystore SELinux is disabled.
I/SurfaceFlinger( 3691): SurfaceFlinger is starting
I/SurfaceFlinger( 3691): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
W/auditd ( 3697): type=1325 audit(0.0:13): table=filter family=2 entries=4
W/iptables( 3780): type=1300 audit(0.0:13): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c29100 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:13):
W/auditd ( 3697): type=1325 audit(0.0:14): table=filter family=10 entries=4
W/ip6tables( 3781): type=1300 audit(0.0:14): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c2b400 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:14):
W/auditd ( 3697): type=1325 audit(0.0:15): table=filter family=2 entries=6
W/iptables( 3782): type=1300 audit(0.0:15): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c23100 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:15):
W/auditd ( 3697): type=1325 audit(0.0:16): table=filter family=10 entries=6
W/ip6tables( 3783): type=1300 audit(0.0:16): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c36600 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:16):
D/gpsd ( 3702): WakeLock(Release,GPSD)
W/auditd ( 3697): type=1325 audit(0.0:17): table=filter family=2 entries=7
W/iptables( 3793): type=1300 audit(0.0:17): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c30400 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:17):
W/auditd ( 3697): type=1325 audit(0.0:18): table=filter family=10 entries=7
W/ip6tables( 3796): type=1300 audit(0.0:18): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c32800 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:18):
D/gpsd ( 3702): WakeLock(Release,SUPL)
I/gpsd_d ( 3702): GNSS: 219420
D/wrapperGPS( 3702): wrapperOpenClient_RILD
E/wrapperGPS( 3702): wrapperOpenClient_RILD: RegisterUnsolicitedHandler() UNSOL_GPS_NOTI (20009)
D/wrapperGPS( 3702): wrapperRegisterRequestCompleteHandler
D/wrapperGPS( 3702): wrapperRegisterUnsolicitedHandler id(12009), handler(0xb6b996e9)
D/wrapperGPS( 3702): wrapperRegisterErrorCallback
D/wrapperGPS( 3702): wrapperConnect_RILD
W/auditd ( 3697): type=1325 audit(0.0:19): table=filter family=2 entries=9
W/iptables( 3799): type=1300 audit(0.0:19): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c33600 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:19):
W/auditd ( 3697): type=1325 audit(0.0:20): table=filter family=10 entries=9
W/ip6tables( 3800): type=1300 audit(0.0:20): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c47800 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:20):
D/libEGL ( 3691): loaded /vendor/lib/egl/libGLES_mali.so
W/auditd ( 3697): type=1325 audit(0.0:21): table=filter family=2 entries=10
W/iptables( 3808): type=1300 audit(0.0:21): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c31800 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:21):
I/ ( 3691): PLATFORM VERSION : JB-MR-2
I/gralloc ( 3691): using (id=)
I/gralloc ( 3691): xres = 1080 px
I/gralloc ( 3691): yres = 1920 px
I/gralloc ( 3691): width = 65 mm (422.030762 dpi)
I/gralloc ( 3691): height = 115 mm (424.069580 dpi)
I/gralloc ( 3691): refresh rate = 60.00 Hz
W/auditd ( 3697): type=1325 audit(0.0:22): table=filter family=10 entries=10
W/ip6tables( 3820): type=1300 audit(0.0:22): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c42c00 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:22):
W/auditd ( 3697): type=1325 audit(0.0:23): table=filter family=2 entries=12
W/iptables( 3821): type=1300 audit(0.0:23): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c44800 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:23):
W/auditd ( 3697): type=1325 audit(0.0:24): table=filter family=10 entries=12
W/ip6tables( 3823): type=1300 audit(0.0:24): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c1d800 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:24):
D/WVMDrmPlugIn( 3693): WVMDrmPlugin::onGetSupportInfo : 0
I/mediaserver( 3694): ServiceManager: 0xb60500c0
I/AudioFlinger( 3694): Using default 3000 mSec as standby time.
I/ServiceManager( 3694): Waiting for service batterystats...
W/auditd ( 3697): type=1325 audit(0.0:25): table=filter family=2 entries=13
W/iptables( 3843): type=1300 audit(0.0:25): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c1c200 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:25):
D/hwcomposer( 3691): using
D/hwcomposer( 3691): xres = 1080 px
D/hwcomposer( 3691): yres = 1920 px
D/hwcomposer( 3691): width = 65 mm (422.030000 dpi)
D/hwcomposer( 3691): height = 115 mm (424.069000 dpi)
D/hwcomposer( 3691): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 3691): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 3691): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 3691): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3691): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3691): open subdev device /dev/v4l-subdev2
I/hwcomposer( 3691): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 3691): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 3691): Using composer version 1.3
I/SurfaceFlinger( 3691): EGL information:
I/SurfaceFlinger( 3691): vendor : Android
I/SurfaceFlinger( 3691): version : 1.4 Android META-EGL
I/SurfaceFlinger( 3691): extensions: EGL_KHR_get_all_proc_addresses EGL_ANDROID_presentation_time EGL_KHR_image EGL_KHR_image_base EGL_KHR_gl_texture_2D_image EGL_KHR_gl_texture_cubemap_image EGL_KHR_gl_renderbuffer_image EGL_KHR_fence_sync EGL_KHR_create_context EGL_ANDROID_image_native_buffer EGL_KHR_wait_sync EGL_ANDROID_recordable
I/SurfaceFlinger( 3691): Client API: OpenGL_ES
I/SurfaceFlinger( 3691): EGLSurface: 8-8-8-8, config=0xb69cf2ac
D/AndroidRuntime( 3705):
D/AndroidRuntime( 3705): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
I/SurfaceFlinger( 3691): OpenGL ES informations:
I/SurfaceFlinger( 3691): vendor : ARM
I/SurfaceFlinger( 3691): renderer : Mali-T628
I/SurfaceFlinger( 3691): version : OpenGL ES 3.0
I/SurfaceFlinger( 3691): extensions: GL_EXT_debug_marker GL_ARM_rgba8 GL_ARM_mali_shader_binary GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_EXT_shadow_samplers GL_OES_texture_compression_astc GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_KHR_debug GL_EXT_occlusion_query_boolean GL_EXT_blend_minmax GL_EXT_discard_framebuffer GL_OES_get_program_binary GL_OES_texture_3D GL_EXT_texture_storage GL_EXT_multisampled_render_to_texture GL_OES_surfaceless_context GL_ARM_mali_program_binary
I/SurfaceFlinger( 3691): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 3691): GL_MAX_VIEWPORT_DIMS = 8192
D/SurfaceFlinger( 3691): Set power mode=2, type=0 flinger=0xb6962000
I/hwcomposer( 3691): unblank ioctl failed (display already unblanked)
D/AndroidRuntime( 3705): CheckJNI is OFF
I/art ( 3705): option[0]=-Xzygote
I/art ( 3705): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 3705): option[2]=exit
I/art ( 3705): option[3]=vfprintf
I/art ( 3705): option[4]=sensitiveThread
I/art ( 3705): option[5]=-verbose:gc
I/art ( 3705): option[6]=-Xms16m
I/art ( 3705): option[7]=-Xmx512m
I/art ( 3705): option[8]=-XX:mainThreadStackSize=24K
I/art ( 3705): option[9]=-XX:HeapGrowthLimit=192m
I/art ( 3705): option[10]=-XX:HeapMinFree=2m
I/art ( 3705): option[11]=-XX:HeapMaxFree=8m
I/art ( 3705): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 3705): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 3705): option[14]=-Xlockprofthreshold:500
I/art ( 3705): option[15]=-Ximage-compiler-option
I/art ( 3705): option[16]=--runtime-arg
I/art ( 3705): option[17]=-Ximage-compiler-option
I/art ( 3705): option[18]=-Xms64m
I/art ( 3705): option[19]=-Ximage-compiler-option
I/art ( 3705): option[20]=--runtime-arg
I/art ( 3705): option[21]=-Ximage-compiler-option
I/art ( 3705): option[22]=-Xmx64m
I/art ( 3705): option[23]=-Ximage-compiler-option
I/art ( 3705): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 3705): option[25]=-Ximage-compiler-option
I/art ( 3705): option[26]=--image-classes=preloaded-classes
I/art ( 3705): option[27]=-Xcompiler-option
I/art ( 3705): option[28]=--runtime-arg
I/art ( 3705): option[29]=-Xcompiler-option
I/art ( 3705): option[30]=-Xms64m
I/art ( 3705): option[31]=-Xcompiler-option
I/art ( 3705): option[32]=--runtime-arg
I/art ( 3705): option[33]=-Xcompiler-option
I/art ( 3705): option[34]=-Xmx512m
I/art ( 3705): option[35]=-Duser.language=en
I/art ( 3705): option[36]=-Duser.region=US
D/SurfaceFlinger( 3691): SF. shader cache generated - 26 shaders in 72.154129 ms
D/libEGL ( 3864): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 3864): PLATFORM VERSION : JB-MR-2
E/BootAnimation( 3864): couldn't find audio_conf.txt
I/Sensorhubs( 3699): GestureSensor flags 1, mEnabled 0
E/Sensorhubs( 3699): Gesture old sensor_state 0, new sensor_state : 64 en : 1
I/Sensorhubs( 3699): GestureSensor flags 0, mEnabled 1
E/Sensorhubs( 3699): Gesture old sensor_state 64, new sensor_state : 0 en : 0
I/SensorHubService( 3699): HardwareSensorHub
I/SensorHubService( 3699): HardwareSensorHub
D/SensorHubService( 3699): nuSensorHubService thread starting...
I/sensorhubservice( 3699): SensorHubService is starting now........................................
W/BootAnimation( 3864): Audio service is not initiated.
D/BootAnimation( 3864): Use save memory method, maybe small fps in actual.
E/memtrack( 3705): Couldn't load memtrack module (No such file or directory)
E/android.os.Debug( 3705): failed to load memtrack module: -2
I/SamplingProfilerIntegration( 3705): Profiling disabled.
D/Zygote ( 3705): begin preload
I/Zygote ( 3705): Preloading classes...
I/art ( 3705): Explicit concurrent mark sweep GC freed 994(55KB) AllocSpace objects, 0(0B) LOS objects, 98% free, 70KB/4MB, paused 124us total 17.818ms
I/art ( 3705): Counter: 1
D/wrapperGPS( 3702): wrapperConnect_RILD
W/auditd ( 3697): type=1325 audit(0.0:61): table=mangle family=2 entries=6
W/iptables( 3970): type=1300 audit(0.0:61): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c20400 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:61):
W/auditd ( 3697): type=1325 audit(0.0:62): table=mangle family=10 entries=6
W/ip6tables( 3971): type=1300 audit(0.0:62): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c31800 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:62):
W/auditd ( 3697): type=1325 audit(0.0:63): table=mangle family=2 entries=8
W/iptables( 3972): type=1300 audit(0.0:63): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c1ba00 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:63):
W/auditd ( 3697): type=1325 audit(0.0:64): table=mangle family=10 entries=8
W/ip6tables( 3973): type=1300 audit(0.0:64): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c37800 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:64):
I/ServiceManager( 3694): Waiting for service batterystats...
W/auditd ( 3697): type=1325 audit(0.0:65): table=mangle family=2 entries=9
W/iptables( 3980): type=1300 audit(0.0:65): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c30800 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:65):
W/auditd ( 3697): type=1325 audit(0.0:66): table=mangle family=10 entries=9
W/ip6tables( 3981): type=1300 audit(0.0:66): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c42800 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:66):
W/auditd ( 3697): type=1325 audit(0.0:67): table=mangle family=2 entries=11
W/iptables( 3982): type=1300 audit(0.0:67): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c34800 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansGujarati-Regular.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansGujarati-Bold.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansGujaratiUI-Regular.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansGujaratiUI-Bold.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansGurmukhi-Regular.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansGurmukhi-Bold.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Regular.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansGurmukhiUI-Bold.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansSinhala-Regular.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansSinhala-Bold.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansCherokee-Regular.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansCanadianAboriginal-Regular.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansYi-Regular.ttf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansHans-Regular.otf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansHant-Regular.otf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansJP-Regular.otf
E/Minikin ( 3705): addFont failed to create font /system/fonts/NotoSansKR-Regular.otf
I/art ( 3705): Thread[1,tid=3705,WaitingForJniOnLoad,Thread*=0xb5107800,peer=0x12c330e0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
D/MtpDeviceJNI( 3705): register_android_mtp_MtpDevice
I/art ( 3705): Thread[1,tid=3705,WaitingForJniOnLoad,Thread*=0xb5107800,peer=0x12c330e0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
I/art ( 3705): Thread[1,tid=3705,WaitingForJniOnLoad,Thread*=0xb5107800,peer=0x12c330e0,"main"] recursive attempt to load library "/system/lib/libmedia_jni.so"
V/NatController( 3688): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 3688): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 3688): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 3688): runCmd(/system/bin/iptables -t nat -F natctrl_nat_PREROUTING) res=0
V/NatController( 3688): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=1
V/NatController( 3688): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=1
V/NatController( 3688): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
V/NatController( 3688): runCmd(/system/bin/iptables -t mangle -A natctrl_mangle_FORWARD -p tcp --tcp-flags SYN SYN -j TCPMSS --clamp-mss-to-pmtu) res=0
D/wrapperGPS( 3702): wrapperConnect_RILD
W/auditd ( 3697): type=1325 audit(0.0:115): table=filter family=2 entries=47
W/iptables( 4073): type=1300 audit(0.0:115): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c22000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:115):
W/auditd ( 3697): type=1325 audit(0.0:116): table=filter family=10 entries=44
W/ip6tables( 4074): type=1300 audit(0.0:116): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c24000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:116):
I/System ( 3705): Loaded time zone names for "" in 56ms (52ms in ICU)
W/auditd ( 3697): type=1325 audit(0.0:117): table=filter family=2 entries=47
W/iptables( 4075): type=1300 audit(0.0:117): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c22000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:117):
W/auditd ( 3697): type=1325 audit(0.0:118): table=filter family=10 entries=44
W/ip6tables( 4076): type=1300 audit(0.0:118): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c24000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:118):
W/auditd ( 3697): type=1325 audit(0.0:119): table=filter family=2 entries=47
W/iptables( 4077): type=1300 audit(0.0:119): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c22000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:119):
I/System ( 3705): Loaded time zone names for "en_US" in 34ms (28ms in ICU)
W/auditd ( 3697): type=1325 audit(0.0:120): table=filter family=10 entries=44
W/ip6tables( 4078): type=1300 audit(0.0:120): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=29 a2=40 a3=b6c24000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:120):
W/auditd ( 3697): type=1325 audit(0.0:121): table=filter family=2 entries=47
W/iptables( 4079): type=1300 audit(0.0:121): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=5 a1=0 a2=40 a3=b6c22000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
I/ServiceManager( 3694): Waiting for service batterystats...
I/art ( 3705): Explicit concurrent mark sweep GC freed 30145(1834KB) AllocSpace objects, 0(0B) LOS objects, 72% free, 1557KB/5MB, paused 132us total 14.685ms
I/Zygote ( 3705): ...preloaded 3005 classes in 1216ms.
I/art ( 3705): VMRuntime.preloadDexCaches starting
I/art ( 3705): VMRuntime.preloadDexCaches strings total=217316 before=40338 after=40338
I/art ( 3705): VMRuntime.preloadDexCaches types total=18704 before=6337 after=6380
I/art ( 3705): VMRuntime.preloadDexCaches fields total=87408 before=32543 after=32871
I/art ( 3705): VMRuntime.preloadDexCaches methods total=154031 before=66779 after=67657
I/art ( 3705): VMRuntime.preloadDexCaches finished
I/art ( 3705): Counter: 0
I/art ( 3705): Counter: 1
I/art ( 3705): Explicit concurrent mark sweep GC freed 159(19KB) AllocSpace objects, 0(0B) LOS objects, 72% free, 1538KB/5MB, paused 157us total 7.766ms
D/idmap ( 4091): error: no read access to /vendor/overlay: No such file or directory
I/Zygote ( 3705): Preloading resources...
D/MDnsDS ( 3688): MDnsSdListener::Hander starting up
D/MDnsDS ( 3688): MDnsSdListener starting to monitor
D/MDnsDS ( 3688): Going to poll with pollCount 1
W/SurfaceFlinger( 3691): Ignoring duplicate VSYNC event from HWC (t=7758579375)
I/art ( 3705): Explicit concurrent mark sweep GC freed 4419(155KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 236us total 10.011ms
I/Zygote ( 3705): ...preloaded 430 resources in 445ms.
I/art ( 3705): Explicit concurrent mark sweep GC freed 533(30KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 185us total 7.986ms
I/Zygote ( 3705): ...preloaded 41 resources in 18ms.
I/art ( 3705): Counter: 0
D/libEGL ( 3705): loaded /vendor/lib/egl/libGLES_mali.so
I/Zygote ( 3705): Preloading shared libraries...
D/Zygote ( 3705): end preload
I/art ( 3705): Explicit concurrent mark sweep GC freed 461(21KB) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 186us total 8.313ms
I/art ( 3705): Explicit concurrent mark sweep GC freed 41(1568B) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 183us total 7.486ms
I/art ( 3705): Explicit concurrent mark sweep GC freed 5(160B) AllocSpace objects, 0(0B) LOS objects, 40% free, 16MB/28MB, paused 211us total 7.583ms
I/Zygote ( 3705): System server process 4122 has been created
I/Zygote ( 3705): Accepting command socket connections
D/wrapperGPS( 3702): wrapperConnect_RILD
I/InstallerConnection( 4122): disconnecting...
I/SystemServer( 4122): Entered the Android system server!
V/Fingerprint-JNI( 4122): FingerprintManager JNI ready.
I/ ( 4122): System server: starting sensor init.
D/SensorService( 4122): nuSensorService starting...
E/Sensors ( 4122): GeoMagneticSensor, ERROR dev_num = -19
I/Sensors ( 4122): Proximity old sensor_state 0, new sensor_state : 128 en : 1
I/ServiceManager( 3694): Waiting for service batterystats...
I/SystemServiceManager( 4122): Starting com.android.server.pm.Installer
I/Installer( 4122): Waiting for installd to be ready.
I/InstallerConnection( 4122): connecting...
I/installd( 3696): new connection
I/Sensors ( 4122): Light old sensor_state 128, new sensor_state : 640 en : 1
I/SystemServiceManager( 4122): Starting com.android.server.am.ActivityManagerService$Lifecycle
E/Sensors ( 4122): UncalMagneticSensor, ERROR dev_num = -19
I/Sensors ( 4122): SigMotionSensor old sensor_state 640, new sensor_state : 8832 en : 1
E/Sensors ( 4122): UncalGyroSensor, ERROR dev_num = -19
E/Sensors ( 4122): GameRotationVector, ERROR dev_num = -19
I/Sensors ( 4122): StepCounterSensor old sensor_state 8832, new sensor_state : 139904 en : 1
D/Sensors ( 4122): HrmSpO2Sensor::HrmSpO2Sensor: Shared version Registered
E/SensorService( 4122): >>>> WARNING <<< Upgrade sensor HAL to version 1_3
I/Sensors ( 4122): Proximity old sensor_state 139904, new sensor_state : 139776 en : 0
I/Sensors ( 4122): Light old sensor_state 139776, new sensor_state : 139264 en : 0
I/Sensors ( 4122): StepCounterSensor old sensor_state 139264, new sensor_state : 8192 en : 0
I/Sensors ( 4122): SigMotionSensor old sensor_state 8192, new sensor_state : 0 en : 0
I/Sensors ( 4122): HrmSpO2Sensor::enable, handle(16), en(0), what(1/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4122): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/Sensors ( 4122): HrmSpO2Sensor::enable, handle(17), en(0), what(0/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4122): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/Sensors ( 4122): HrmSpO2Sensor::enable, handle(18), en(0), what(2/0:aosphrm,1:sshrm, old enabled : 0)
I/Sensors ( 4122): HrmSpO2Sensor is already disabled or have to keep enabled, mEnabled : 0x0, en : 0
I/ ( 4122): System server: sensor init done.
D/SensorService( 4122): nuSensorService thread starting...
I/Sensors ( 4122): ProximitySensor - 8(cm)
D/SensorService( 4122): new thread SensorEventAckReceiver
I/ActivityManager( 4122): Memory class: 192
I/ServiceThread( 4122): Enabled StrictMode logging for ActivityManager looper.
D/BootAnimation( 3864): Use save memory method, maybe small fps in actual.
I/IntentFirewall( 4122): Read new rules (A:0 B:0 S:0)
I/ServiceThread( 4122): Enabled StrictMode logging for android.ui looper.
I/ServiceThread( 4122): Enabled StrictMode logging for android.display looper.
D/AppOps ( 4122): AppOpsService published
I/SystemServiceManager( 4122): Starting com.android.server.power.PowerManagerService
I/ServiceThread( 4122): Enabled StrictMode logging for PowerManagerService looper.
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu0/cpufreq/interactive/multi_enter_load: 800
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu0/cpufreq/interactive/multi_enter_load: 800
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu0/cpufreq/interactive/single_enter_load: 200
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu0/cpufreq/interactive/single_enter_load: 200
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu0/cpufreq/interactive/param_index: 0
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu0/cpufreq/interactive/param_index: 0
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu0/cpufreq/interactive/timer_rate: 20000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu0/cpufreq/interactive/timer_rate: 20000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu0/cpufreq/interactive/timer_slack: 20000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu0/cpufreq/interactive/timer_slack: 20000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu0/cpufreq/interactive/min_sample_time: 40000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu0/cpufreq/interactive/min_sample_time: 40000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu0/cpufreq/interactive/hispeed_freq: 1000000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu0/cpufreq/interactive/hispeed_freq: 1000000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu0/cpufreq/interactive/go_hispeed_load: 99
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu0/cpufreq/interactive/go_hispeed_load: 99
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu0/cpufreq/interactive/target_loads: 70
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu0/cpufreq/interactive/target_loads: 70
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu0/cpufreq/interactive/above_hispeed_delay: 19000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu0/cpufreq/interactive/above_hispeed_delay: 19000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu0/cpufreq/interactive/boostpulse_duration: 40000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu0/cpufreq/interactive/boostpulse_duration: 40000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_enter_load: 360
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_enter_load: 360
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_enter_time: 99000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_enter_time: 99000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_exit_load: 240
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_exit_load: 240
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_exit_time: 299000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/multi_exit_time: 299000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_enter_load: 95
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_enter_load: 95
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_enter_time: 199000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_enter_time: 199000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_exit_load: 60
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_exit_load: 60
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_exit_time: 99000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/single_exit_time: 99000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: 0
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: 0
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: 20000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: 20000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_slack: 20000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_slack: 20000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: 40000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: 40000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: 1000000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: 1000000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: 99
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: 99
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: 75 1500000:80 1700000:85 1800000:90
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: 75 1500000:80 1700000:85 1800000:90
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: 19000 1100000:99000 1200000:119000 1700000:19000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: 19000 1100000:99000 1200000:119000 1700000:19000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/boostpulse_duration: 40000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/boostpulse_duration: 40000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: 1
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: 1
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: 20000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: 20000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: 59000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: 59000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: 1200000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: 1200000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: 95
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: 95
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: 65 1400000:68 1700000:73
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: 65 1400000:68 1700000:73
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: 19000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: 19000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: 2
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: 2
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: 20000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: 20000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: 79000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: 79000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: 1400000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: 1400000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: 90
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: 90
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: 60 1300000:63 1500000:65 1700000:70
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: 60 1300000:63 1500000:65 1700000:70
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: 19000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: 19000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: 3
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: 3
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: 20000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/timer_rate: 20000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: 99000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/min_sample_time: 99000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: 1600000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/hispeed_freq: 1600000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: 85
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/go_hispeed_load: 85
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: 60 1300000:63 1500000:65 1900000:70
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/target_loads: 60 1300000:63 1500000:65 1900000:70
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: 19000
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/above_hispeed_delay: 19000
D/SEC PowerHAL( 4122): sysfs_write +: /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: 0
D/SEC PowerHAL( 4122): sysfs_write -: /sys/devices/system/cpu/cpu4/cpufreq/interactive/param_index: 0
W/libsuspend( 4122): Error writing 'on' to /sys/power/state: Invalid argument
I/libsuspend( 4122): Selected wakeup count
I/SystemServiceManager( 4122): Starting com.android.server.display.DisplayManagerService
I/SystemServiceManager( 4122): Starting phase 100
I/DisplayManagerService( 4122): Display device added: DisplayDeviceInfo{"Built-in Screen": 1080 x 1920, 60.000004 fps, supportedRefreshRates [60.000004], density 480, 422.03 x 424.069 dpi, appVsyncOff 0, presDeadline 17666666, touch INTERNAL, rotation 0, type BUILT_IN, state UNKNOWN, FLAG_DEFAULT_DISPLAY, FLAG_ROTATES_WITH_CONTENT, FLAG_SECURE, FLAG_SUPPORTS_PROTECTED_BUFFERS}
I/SystemServer( 4122): Package Manager
W/PackageManager( 4122): No security bridge jar found, using default
W/SystemConfig( 4122): No directory /system/etc/sysconfig, skipping
D/SELinuxMMAC( 4122): Using policy file /system/etc/security/mac_permissions.xml
E/art ( 4122): DexFile_isDexOptNeeded file '/system/framework/com.android.nfc_extras.jar' does not exist
W/PackageManager( 4122): Library not found: /system/framework/com.android.nfc_extras.jar
D/PackageManager( 4122): No files in app dir /vendor/overlay
W/PackageManager( 4122): Failed to parse /system/framework/arm: Missing base APK in /system/framework/arm
W/ResourceType( 4122): Failure getting entry for 0x7f0b023e (t=10 e=574) (error -75)
W/PackageParser( 4122): No actions in intent filter at /system/priv-app/Contacts/Contacts.apk Binary XML file line #362
W/PackageParser( 4122): No actions in intent filter at /system/priv-app/Dialer/Dialer.apk Binary XML file line #185
D/wrapperGPS( 3702): wrapperConnect_RILD
E/MediaPlayerFactory( 3694): calling dlopen on FACTORY_LIB
E/MediaPlayerFactory( 3694): Failed to open FACTORY_LIB Error : dlopen failed: library "libdashplayer.so" not found
I/CameraService( 3694): CameraService started (pid=3694)
E/HAL ( 3694): load: module=/system/lib/hw/camera.universal5422.so
E/HAL ( 3694): dlopen failed: could not load library "libexynoscamera.so" needed by "camera.universal5422.so"; caused by cannot locate symbol "_ZN7android16CameraParameters17EFFECT_POINT_BLUEE" referenced by "libexynoscamera.so"...
E/CameraService( 3694): Could not load camera HAL module
I/AudioPolicyService( 3694): AudioPolicyService CSTOR in new mode
I/AudioPolicyManager( 3694): loadAudioPolicyConfig() loaded /system/etc/audio_policy.conf
W/linker ( 3694): lib_Samsung_AudioZoom_v102.so has text relocations. This is wasting memory and prevents security hardening. Please fix.
E/HAL ( 3694): load: module=/system/lib/hw/audio.primary.universal5422.so
E/HAL ( 3694): dlopen failed: cannot locate symbol "mixer_update" referenced by "audio.primary.universal5422.so"...
E/AudioFlinger( 3694): int android::load_audio_interface(const char*, audio_hw_device_t**) couldn't load audio hw module audio.primary (Invalid argument)
I/AudioFlinger( 3694): loadHwModule() error -22 loading module primary
W/AudioPolicyManager( 3694): could not open HW module primary
I/audio_a2dp_hw( 3694): adev_open: adev_open in A2dp_hw module
I/AudioFlinger( 3694): loadHwModule() Loaded a2dp audio interface from A2DP Audio HW HAL (audio) handle 1
I/AudioFlinger( 3694): loadHwModule() Loaded usb audio interface from USB audio HW HAL (audio) handle 2
I/r_submix( 3694): adev_open(name=audio_hw_if)
I/r_submix( 3694): adev_init_check()
I/AudioFlinger( 3694): loadHwModule() Loaded r_submix audio interface from Wifi Display audio HAL (audio) handle 3
D/r_submix( 3694): adev_open_input_stream()
D/r_submix( 3694): submix_audio_device_create_pipe()
E/MonoPipe( 3694): Failed to fetch local time frequency when constructing a MonoPipe (res = -32). getNextWriteTimestamp calls will be non-functional
W/ResourceType( 4122): Failure getting entry for 0x7f08033e (t=7 e=830) (error -75)
W/PackageParser( 4122): No actions in intent filter at /system/app/Bluetooth/Bluetooth.apk Binary XML file line #229
W/PackageParser( 4122): No actions in intent filter at /system/app/CMFileManager/CMFileManager.apk Binary XML file line #155
W/PackageParser( 4122): Unknown element under <application>: permission at /system/app/Gallery2/Gallery2.apk Binary XML file line #273
W/PackageParser( 4122): Unknown element under <application>: permission at /system/app/Gallery2/Gallery2.apk Binary XML file line #276
D/wrapperGPS( 3702): wrapperConnect_RILD
W/PackageManager( 4122): Failed to parse /system/app/mcRegistry: Missing base APK in /system/app/mcRegistry
D/PackageManager( 4122): No files in app dir /system/vendor/app
D/PackageManager( 4122): No files in app dir /oem/app
D/PackageManager( 4122): No files in app dir /vendor/bundled-app
W/PackageManager( 4122): Failed to parse /data/app/mcRegistry: No packages found in split
D/PackageManager( 4122): No files in app dir /data/app-private
W/PackageManager( 4122): Package com.android.gallery3d desires unavailable shared library com.google.android.media.effects; ignoring!
W/PackageManager( 4122): Package com.android.gallery3d desires unavailable shared library com.google.android.media.effects; ignoring!
E/PackageManager( 4122): updateAllSharedLibrariesLPw failed: Package com.android.dialer requires unavailable shared library com.qualcomm.qti.smartsearch; failing!
W/PackageManager( 4122): Package com.android.calculator2 desires unavailable shared library com.sec.android.app.multiwindow; ignoring!
W/PackageManager( 4122): Package com.android.mms desires unavailable shared library com.qrd.wappush; ignoring!
I/PackageManager( 4122): Adjusting ABI for : com.cyanogenmod.setupwizard to armeabi-v7a
I/PackageManager( 4122): Adjusting ABI for : com.android.providers.settings to armeabi-v7a
I/PackageManager( 4122): Adjusting ABI for : com.android.inputdevices to armeabi-v7a
I/PackageManager( 4122): Adjusting ABI for : com.android.settings to armeabi-v7a
I/PackageManager( 4122): Adjusting ABI for : com.android.keychain to armeabi-v7a
I/PackageManager( 4122): Adjusting ABI for : com.android.development to armeabi-v7a
I/PackageManager( 4122): Adjusting ABI for : com.android.location.fused to armeabi-v7a
I/PackageManager( 4122): Time to scan packages: 1.631 seconds
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.mail in package com.android.calendar
W/PackageManager( 4122): Unknown permission com.qualcomm.permission.USE_PHONE_SERVICE in package com.android.dialer
W/PackageManager( 4122): Unknown permission android.permission.ACCESS_SUPERUSER in package com.cyanogenmod.filemanager
W/PackageManager( 4122): Unknown permission com.cyanogenmod.filemanager.permissions.READ_THEME in package com.cyanogenmod.filemanager
W/PackageManager( 4122): Unknown permission com.cyngn.cmstats.SEND_ANALYTICS in package com.cyanogenmod.setupwizard
W/PackageManager( 4122): Unknown permission com.google.android.gallery3d.permission.PICASA_STORE in package com.android.dreams.phototable
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.settings
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.android.settings
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.WRITE_SETTINGS in package com.android.settings
W/PackageManager( 4122): Not granting permission android.permission.DELETE_PACKAGES to package com.svox.pico (protectionLevel=18 flags=0x8be45)
W/PackageManager( 4122): Unknown permission com.google.android.c2dm.permission.RECEIVE in package org.whispersystems.whisperpush
W/PackageManager( 4122): Not granting permission android.permission.BIND_WALLPAPER to package com.android.camera2 (protectionLevel=18 flags=0x58bc45)
W/PackageManager( 4122): Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.bluetooth
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.android.onetimeinitializer
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.WRITE_SETTINGS in package com.android.onetimeinitializer
W/PackageManager( 4122): Unknown permission com.google.android.c2dm.permission.RECEIVE in package com.cyanogenmod.account
W/PackageManager( 4122): Not granting permission android.permission.DEVICE_POWER to package com.android.deskclock (protectionLevel=2 flags=0x48be45)
W/PackageManager( 4122): Unknown permission com.android.deskclock.worldclock.permissions.WRITE_DATABASE in package com.android.deskclock
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.providers.calendar
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.cl in package com.android.providers.calendar
W/PackageManager( 4122): Not granting permission android.permission.WRITE_MEDIA_STORAGE to package com.android.soundrecorder (protectionLevel=18 flags=0x8be45)
W/PackageManager( 4122): Unknown permission android.permission.INSTALL_DRM in package com.android.mms
W/PackageManager( 4122): Unknown permission com.qualcomm.permission.USE_PHONE_SERVICE in package com.android.mms
W/PackageManager( 4122): Not granting permission android.permission.MANAGE_DOCUMENTS to package com.android.mms (protectionLevel=2 flags=0x4049be65)
W/PackageManager( 4122): Not granting permission android.permission.ACCESS_DOWNLOAD_MANAGER to package com.android.browser (protectionLevel=18 flags=0x49be45)
W/PackageManager( 4122): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x49be45)
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.ACCESS_GOOGLE_PASSWORD in package com.android.development
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.development
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES in package com.android.development
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.YouTubeUser in package com.android.development
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.cyanogenmod.trebuchet
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.WRITE_SETTINGS in package com.cyanogenmod.trebuchet
W/PackageManager( 4122): Unknown permission android.permission.CANCEL_NOTIFICATIONS in package org.cyanogenmod.theme.chooser
V/PackageManager( 4122): Disabling com.google.android.gsf/com.google.android.gsf.update.SystemUpdateActivity
W/PackageManager( 4122): Unable to disable com.google.android.gsf/com.google.android.gsf.update.SystemUpdateActivity
V/PackageManager( 4122): Disabling com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$Receiver
W/PackageManager( 4122): Unable to disable com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$Receiver
V/PackageManager( 4122): Disabling com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$SecretCodeReceiver
W/PackageManager( 4122): Unable to disable com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService$SecretCodeReceiver
V/PackageManager( 4122): Disabling com.google.android.gms/com.google.android.gms.update.SystemUpdateActivity
W/PackageManager( 4122): Unable to disable com.google.android.gms/com.google.android.gms.update.SystemUpdateActivity
V/PackageManager( 4122): Disabling com.google.android.gms/com.google.android.gms.update.SystemUpdateService$Receiver
W/PackageManager( 4122): Unable to disable com.google.android.gms/com.google.android.gms.update.SystemUpdateService$Receiver
V/PackageManager( 4122): Disabling com.google.android.gms/com.google.android.gms.update.SystemUpdateService$ActiveReceiver
W/PackageManager( 4122): Unable to disable com.google.android.gms/com.google.android.gms.update.SystemUpdateService$ActiveReceiver
V/PackageManager( 4122): Disabling com.google.android.gms/com.google.android.gms.update.SystemUpdateService$SecretCodeReceiver
W/PackageManager( 4122): Unable to disable com.google.android.gms/com.google.android.gms.update.SystemUpdateService$SecretCodeReceiver
V/PackageManager( 4122): Enabling com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService
W/PackageManager( 4122): Unable to enable com.google.android.gsf/com.google.android.gsf.update.SystemUpdateService
V/PackageManager( 4122): Enabling com.google.android.gms/com.google.android.gms.update.SystemUpdateService
W/PackageManager( 4122): Unable to enable com.google.android.gms/com.google.android.gms.update.SystemUpdateService
I/art ( 4122): Explicit concurrent mark sweep GC freed 114348(6MB) AllocSpace objects, 50(830KB) LOS objects, 33% free, 18MB/27MB, paused 1.542ms total 50.097ms
I/SystemServer( 4122): User Service
I/lowmemorykiller( 3674): ActivityManager connected
I/SystemServiceManager( 4122): Starting com.android.server.lights.LightsService
I/SystemServiceManager( 4122): Starting com.android.server.BatteryService
I/SystemServiceManager( 4122): Starting com.android.server.usage.UsageStatsService
I/SystemServiceManager( 4122): Starting com.android.server.webkit.WebViewUpdateService
I/SystemServer( 4122): Reading configuration...
I/SystemServer( 4122): Scheduling Policy
I/SystemServer( 4122): Telephony Registry
I/SystemServer( 4122): Entropy Mixer
I/EntropyMixer( 4122): Added HW RNG output to entropy pool
I/EntropyMixer( 4122): Writing entropy...
I/SystemServer( 4122): Account Manager
I/SystemServer( 4122): Content Manager
I/SystemServer( 4122): System Content Providers
W/ActivityManager( 4122): Can't addPackageDependency on system process
W/CoreSettingsObserver( 4122): Cannot find setting "debug_view_attributes"
W/CoreSettingsObserver( 4122): android.provider.Settings$SettingNotFoundException: debug_view_attributes
W/CoreSettingsObserver( 4122): at android.provider.Settings$Global.getInt(Settings.java:8060)
W/CoreSettingsObserver( 4122): at com.android.server.am.CoreSettingsObserver.populateSettings(CoreSettingsObserver.java:129)
W/CoreSettingsObserver( 4122): at com.android.server.am.CoreSettingsObserver.sendCoreSettings(CoreSettingsObserver.java:82)
W/CoreSettingsObserver( 4122): at com.android.server.am.CoreSettingsObserver.<init>(CoreSettingsObserver.java:65)
W/CoreSettingsObserver( 4122): at com.android.server.am.ActivityManagerService.installSystemProviders(ActivityManagerService.java:9976)
W/CoreSettingsObserver( 4122): at com.android.server.SystemServer.startOtherServices(SystemServer.java:482)
W/CoreSettingsObserver( 4122): at com.android.server.SystemServer.run(SystemServer.java:284)
W/CoreSettingsObserver( 4122): at com.android.server.SystemServer.main(SystemServer.java:185)
W/CoreSettingsObserver( 4122): at java.lang.reflect.Method.invoke(Native Method)
W/CoreSettingsObserver( 4122): at java.lang.reflect.Method.invoke(Method.java:372)
W/CoreSettingsObserver( 4122): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:898)
W/CoreSettingsObserver( 4122): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:693)
I/SystemServer( 4122): Vibrator Service
I/SystemServer( 4122): Consumer IR Service
I/SystemServiceManager( 4122): Starting com.android.server.AlarmManagerService
D/AlarmManagerService( 4122): Kernel timezone updated to 660 minutes west of GMT
I/SystemServer( 4122): Init Watchdog
I/SystemServer( 4122): Input Manager
I/InputManager( 4122): Initializing input manager, mUseDevInputEventForAudioJack=false
I/SystemServer( 4122): Window Manager
I/WindowManager( 4122): No existing display settings /data/system/display_settings.xml; starting empty
D/PermissionCache( 3691): checking android.permission.ACCESS_SURFACE_FLINGER for uid=1000 => granted (802 us)
W/Settings( 4122): Setting dev_force_show_navbar has moved from android.provider.Settings.System to android.provider.Settings.Secure, returning Secure URI.
I/InputManager( 4122): Starting input manager
I/SystemServer( 4122): Bluetooth Manager Service
D/EventHub( 4122): No input device configuration file found for device 'hrm_sensor'.
D/BluetoothManagerService( 4122): Loading stored name and address
D/BluetoothManagerService( 4122): Stored bluetooth Name=SM-G900H,Address=14:B4:84:6F:66:79
I/SystemServer( 4122): Input Method Service
W/InputMethodManagerService( 4122): Couldn't create dir.: /data/system/inputmethod
I/SystemServer( 4122): Accessibility Manager
D/EventHub( 4122): No input device configuration file found for device 'ssp_context'.
I/ActivityManager( 4122): Config changes=1df8 {1.0 ?mcc?mnc en_US ldltr sw360dp w360dp h640dp 480dpi nrml long port ?uimode ?night -touch -keyb/v/h -nav/h s.2 themeResource=null}
I/ActivityManager( 4122): Config changes=400 {1.0 ?mcc?mnc en_US ldltr sw360dp w360dp h615dp 480dpi nrml long port ?uimode ?night -touch -keyb/v/h -nav/h s.3 themeResource=null}
I/SystemServer( 4122): Mount Service
D/MountService( 4122): got storage path: /storage/sdcard0 description: Internal storage primary: true removable: false emulated: true mtpReserve: 100 allowMassStorage: false maxFileSize: 0
D/MountService( 4122): addVolumeLocked() StorageVolume:
D/MountService( 4122): mStorageId=65537 mPath=/storage/emulated/0 mDescriptionId=17040999
D/MountService( 4122): mPrimary=true mRemovable=false mEmulated=true mMtpReserveSpace=100
D/MountService( 4122): mAllowMassStorage=false mMaxFileSize=0 mOwner=UserHandle{0} mUuid=null
D/MountService( 4122): mUserLabel=null mState=null
D/MountService( 4122): got storage path: /storage/sdcard1 description: SD card primary: false removable: true emulated: false mtpReserve: 0 allowMassStorage: true maxFileSize: 0
D/MountService( 4122): addVolumeLocked() StorageVolume:
D/MountService( 4122): mStorageId=0 mPath=/storage/sdcard1 mDescriptionId=17041000 mPrimary=false
D/MountService( 4122): mRemovable=true mEmulated=false mMtpReserveSpace=0 mAllowMassStorage=true
D/MountService( 4122): mMaxFileSize=0 mOwner=null mUuid=null mUserLabel=null mState=null
D/MountService( 4122): got storage path: /storage/usbdisk description: USB storage primary: false removable: true emulated: false mtpReserve: 0 allowMassStorage: false maxFileSize: 0
D/MountService( 4122): addVolumeLocked() StorageVolume:
D/MountService( 4122): mStorageId=0 mPath=/storage/usbdisk mDescriptionId=17041001 mPrimary=false
D/MountService( 4122): mRemovable=true mEmulated=false mMtpReserveSpace=0 mAllowMassStorage=false
D/MountService( 4122): mMaxFileSize=0 mOwner=null mUuid=null mUserLabel=null mState=null
I/UsageStatsService( 4122): User[0] Rollover scheduled @ 2015-07-15 13:00:00(1437004800000)
I/SystemServer( 4122): LockSettingsService
I/SystemServiceManager( 4122): Starting com.android.server.devicepolicy.DevicePolicyManagerService$Lifecycle
E/MountService( 4122): Error processing initial volume state
E/MountService( 4122): java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.os.storage.StorageVolume.getPath()' on a null object reference
E/MountService( 4122): at com.android.server.MountService.updatePublicVolumeState(MountService.java:752)
E/MountService( 4122): at com.android.server.MountService.access$1700(MountService.java:119)
E/MountService( 4122): at com.android.server.MountService$3.run(MountService.java:860)
D/EventHub( 4122): No input device configuration file found for device 'meta_event'.
I/PackageManager( 4122): No secure containers found
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.mail in package com.android.calendar
W/PackageManager( 4122): Unknown permission com.qualcomm.permission.USE_PHONE_SERVICE in package com.android.dialer
W/PackageManager( 4122): Unknown permission android.permission.ACCESS_SUPERUSER in package com.cyanogenmod.filemanager
W/PackageManager( 4122): Unknown permission com.cyanogenmod.filemanager.permissions.READ_THEME in package com.cyanogenmod.filemanager
W/PackageManager( 4122): Unknown permission com.cyngn.cmstats.SEND_ANALYTICS in package com.cyanogenmod.setupwizard
W/PackageManager( 4122): Unknown permission com.google.android.gallery3d.permission.PICASA_STORE in package com.android.dreams.phototable
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.settings
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.android.settings
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.WRITE_SETTINGS in package com.android.settings
W/PackageManager( 4122): Not granting permission android.permission.DELETE_PACKAGES to package com.svox.pico (protectionLevel=18 flags=0x8be45)
W/PackageManager( 4122): Unknown permission com.google.android.c2dm.permission.RECEIVE in package org.whispersystems.whisperpush
W/PackageManager( 4122): Not granting permission android.permission.BIND_WALLPAPER to package com.android.camera2 (protectionLevel=18 flags=0x58bc45)
W/PackageManager( 4122): Unknown permission com.google.android.gallery3d.permission.GALLERY_PROVIDER in package com.android.bluetooth
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.android.onetimeinitializer
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.WRITE_SETTINGS in package com.android.onetimeinitializer
W/PackageManager( 4122): Unknown permission com.google.android.c2dm.permission.RECEIVE in package com.cyanogenmod.account
W/PackageManager( 4122): Not granting permission android.permission.DEVICE_POWER to package com.android.deskclock (protectionLevel=2 flags=0x48be45)
W/PackageManager( 4122): Unknown permission com.android.deskclock.worldclock.permissions.WRITE_DATABASE in package com.android.deskclock
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.providers.calendar
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.cl in package com.android.providers.calendar
W/PackageManager( 4122): Not granting permission android.permission.WRITE_MEDIA_STORAGE to package com.android.soundrecorder (protectionLevel=18 flags=0x8be45)
W/PackageManager( 4122): Unknown permission android.permission.INSTALL_DRM in package com.android.mms
W/PackageManager( 4122): Unknown permission com.qualcomm.permission.USE_PHONE_SERVICE in package com.android.mms
W/PackageManager( 4122): Not granting permission android.permission.MANAGE_DOCUMENTS to package com.android.mms (protectionLevel=2 flags=0x4049be65)
W/PackageManager( 4122): Not granting permission android.permission.ACCESS_DOWNLOAD_MANAGER to package com.android.browser (protectionLevel=18 flags=0x49be45)
W/PackageManager( 4122): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x49be45)
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.ACCESS_GOOGLE_PASSWORD in package com.android.development
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.development
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES in package com.android.development
W/PackageManager( 4122): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.YouTubeUser in package com.android.development
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.READ_SETTINGS in package com.cyanogenmod.trebuchet
W/PackageManager( 4122): Unknown permission com.android.launcher.permission.WRITE_SETTINGS in package com.cyanogenmod.trebuchet
W/PackageManager( 4122): Unknown permission android.permission.CANCEL_NOTIFICATIONS in package org.cyanogenmod.theme.chooser
I/SystemServer( 4122): Status Bar
I/SystemServer( 4122): Clipboard Service
W/ClipboardService( 4122): No security bridge jar found, using default
I/SystemServer( 4122): TorchService
D/EventHub( 4122): No input device configuration file found for device 'step_cnt_sensor'.
D/EventHub( 4122): No input device configuration file found for device 'uncal_gyro_sensor'.
D/EventHub( 4122): No input device configuration file found for device 'sig_motion_sensor'.
D/EventHub( 4122): No input device configuration file found for device 'uncal_geomagnetic_sensor'.
D/EventHub( 4122): No input device configuration file found for device 'geomagnetic_sensor'.
D/EventHub( 4122): No input device configuration file found for device 'gesture_sensor'.
D/wrapperGPS( 3702): wrapperConnect_RILD
D/EventHub( 4122): No input device configuration file found for device 'temp_humidity_sensor'.
D/EventHub( 4122): No input device configuration file found for device 'proximity_sensor'.
D/EventHub( 4122): No input device configuration file found for device 'light_sensor'.
D/EventHub( 4122): No input device configuration file found for device 'sii8240_rcp'.
W/EventHub( 4122): Unable to disable kernel key repeat for /dev/input/event0: Function not implemented
I/EventHub( 4122): New device: id=13, fd=94, path='/dev/input/event0', name='sii8240_rcp', classes=0x1, configuration='', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, wakeMechanism=EPOLLWAKEUP, usingClockIoctl=true
E/EventHub( 4122): could not get driver version for /dev/input/mice, Not a typewriter
W/SurfaceFlinger( 3691): Ignoring duplicate VSYNC event from HWC (t=11505056417)
I/AudioFlinger( 3694): AudioFlinger's thread 0xb60ba000 ready to run
D/r_submix( 3694): adev_close_input_stream()
D/r_submix( 3694): submix_audio_device_release_pipe()
D/r_submix( 3694): submix_audio_device_destroy_pipe(): pipe destroyed
W/AudioPolicyManager( 3694): Input device 00000001 unreachable
W/AudioPolicyManager( 3694): Input device 00000002 unreachable
W/AudioPolicyManager( 3694): Input device 80000004 unreachable
W/AudioPolicyManager( 3694): Input device 80000080 unreachable
W/AudioPolicyManager( 3694): Input device 80000040 unreachable
E/AudioPolicyManager( 3694): Default device 00000002 is unreachable
E/AudioPolicyManager( 3694): Failed to open primary output
E/AudioPolicyManager( 3694): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION
E/AudioPolicyManager( 3694): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION
E/SoundTriggerHwService( 3694): couldn't load sound trigger module sound_trigger.primary (No such file or directory)
E/CameraService( 3694): getCameraVendorTagDescriptor: camera hardware module doesn't exist
E/CameraMetadata-JNI( 4122): CameraMetadata_setupGlobalVendorTagDescriptor: Failed to setup vendor tag descriptors, received error No such device (-19)
W/CameraManager( 4122): Failed to set up vendor tags: The camera device is removable and has been disconnected from the Android device, or the camera service has shut down the connection due to a higher-priority access request for the camera device.
E/TorchService( 4122): Couldn't initialize.
E/TorchService( 4122): java.lang.NumberFormatException: Invalid int: "null"
E/TorchService( 4122): at java.lang.Integer.invalidInt(Integer.java:138)
E/TorchService( 4122): at java.lang.Integer.parseInt(Integer.java:358)
E/TorchService( 4122): at java.lang.Integer.parseInt(Integer.java:334)
E/TorchService( 4122): at java.lang.Integer.valueOf(Integer.java:525)
E/TorchService( 4122): at com.android.server.TorchService.initialize(TorchService.java:104)
E/TorchService( 4122): at com.android.server.TorchService.<init>(TorchService.java:99)
E/TorchService( 4122): at com.android.server.SystemServer.startOtherServices(SystemServer.java:656)
E/TorchService( 4122): at com.android.server.SystemServer.run(SystemServer.java:284)
E/TorchService( 4122): at com.android.server.SystemServer.main(SystemServer.java:185)
E/TorchService( 4122): at java.lang.reflect.Method.invoke(Native Method)
E/TorchService( 4122): at java.lang.reflect.Method.invoke(Method.java:372)
E/TorchService( 4122): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:898)
E/TorchService( 4122): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:693)
I/SystemServer( 4122): NetworkManagement Service
I/SystemServer( 4122): Text Service Manager Service
I/SystemServer( 4122): Network Score Service
I/SystemServer( 4122): NetworkStats Service
I/SystemServer( 4122): NetworkPolicy Service
D/EventHub( 4122): No input device configuration file found for device 'hall'.
I/SystemServiceManager( 4122): Starting com.android.server.wifi.p2p.WifiP2pService
I/WifiP2pService( 4122): Registering wifip2p
I/SystemServiceManager( 4122): Starting com.android.server.wifi.WifiService
D/EventHub( 4122): No input device configuration file found for device 'gpio_keys.16'.
W/EventHub( 4122): Unable to disable kernel key repeat for /dev/input/event16: Function not implemented
I/EventHub( 4122): New device: id=15, fd=105, path='/dev/input/event16', name='gpio_keys.16', classes=0x1, configuration='', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, wakeMechanism=EPOLLWAKEUP, usingClockIoctl=true
D/EventHub( 4122): No input device configuration file found for device 'voicecontrol'.
W/EventHub( 4122): Unable to disable kernel key repeat for /dev/input/event14: Function not implemented
I/EventHub( 4122): New device: id=16, fd=106, path='/dev/input/event14', name='voicecontrol', classes=0x1, configuration='', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, wakeMechanism=EPOLLWAKEUP, usingClockIoctl=true
D/EventHub( 4122): No input device configuration file found for device 'Headset'.
W/EventHub( 4122): Unable to disable kernel key repeat for /dev/input/event15: Function not implemented
I/EventHub( 4122): New device: id=17, fd=107, path='/dev/input/event15', name='Headset', classes=0x1, configuration='', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, wakeMechanism=EPOLLWAKEUP, usingClockIoctl=true
D/EventHub( 4122): No input device configuration file found for device 'sec_touchkey'.
W/EventHub( 4122): Unable to disable kernel key repeat for /dev/input/event17: Function not implemented
I/EventHub( 4122): New device: id=18, fd=108, path='/dev/input/event17', name='sec_touchkey', classes=0x1, configuration='', keyLayout='/system/usr/keylayout/sec_touchkey.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, wakeMechanism=EPOLLWAKEUP, usingClockIoctl=true
D/EventHub( 4122): No input device configuration file found for device 'w1'.
E/WifiConfigStore( 4122): associatedPartialScanPeriodMilli set to 20000
D/WifiController( 4122): isAirplaneModeOn = false, isWifiEnabled = true, isScanningAvailable = false
I/WifiService( 4122): Registering wifi
I/SystemServiceManager( 4122): Starting com.android.server.wifi.WifiScanningService
I/WifiScanningService( 4122): Creating wifiscanner
I/WifiScanningService( 4122): Starting wifiscanner
I/SystemServiceManager( 4122): Starting com.android.server.wifi.RttService
I/RttService( 4122): Creating rttmanager
I/RttService( 4122): Starting rttmanager
I/SystemServer( 4122): Connectivity Service
D/ConnectivityService( 4122): ConnectivityService starting up
D/ConnectivityService( 4122): wifiOnly=false
E/ConnectivityService( 4122): Ignoring protectedNetwork 10
E/ConnectivityService( 4122): Ignoring protectedNetwork 11
E/ConnectivityService( 4122): Ignoring protectedNetwork 12
E/ConnectivityService( 4122): Ignoring protectedNetwork 14
E/ConnectivityService( 4122): Ignoring protectedNetwork 15
I/SystemServer( 4122): Network Service Discovery Service
D/NsdService( 4122): Network service discovery enabled true
I/SystemServer( 4122): DPM Service
I/SystemServer( 4122): DPM configuration set to 0
I/SystemServer( 4122): UpdateLock Service
E/EventHub( 4122): could not get driver version for /dev/input/mouse0, Not a typewriter
I/SystemServiceManager( 4122): Starting com.android.server.notification.NotificationManagerService
I/SystemServiceManager( 4122): Starting com.android.server.storage.DeviceStorageMonitorService
I/SystemServer( 4122): Location Manager
I/SystemServer( 4122): Country Detector
I/SystemServer( 4122): Search Service
I/SystemServer( 4122): DropBox Service
I/SystemServer( 4122): Wallpaper Service
W/WallpaperManagerService( 4122): no current wallpaper -- first boot?
I/SystemServer( 4122): Profile Manager
D/WifiService( 4122): New client listening to asynchronous messages
V/ProfileTriggerHelper( 4122): Enabling
D/ProfileService( 4122): Found active: 64121324-62b0-4d41-b398-0f513810e7d9
D/ProfileService( 4122): Set active profile to: 64121324-62b0-4d41-b398-0f513810e7d9 - Default
D/ProfileService( 4122): Saving profile data...
D/ProfileService( 4122): Save completed.
I/SystemServer( 4122): Audio Service
E/AudioPolicyManager( 3694): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION
E/AudioPolicyManager( 3694): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION
E/AudioPolicyManager( 3694): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION
E/AudioPolicyManager( 3694): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION
W/TelecomManager( 4122): Telecom Service not found.
E/AudioPolicyManager( 3694): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION
E/AudioPolicyManager( 3694): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION
E/AudioPolicyManager( 3694): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION
E/AudioPolicyManager( 3694): getDeviceForStrategy() speaker device not found for STRATEGY_SONIFICATION
I/SystemServiceManager( 4122): Starting com.android.server.DockObserver
I/SystemServer( 4122): Wired Accessory Manager
W/WiredAccessoryManager( 4122): This kernel does not have usb audio support
I/SystemServiceManager( 4122): Starting com.android.server.usb.UsbService$Lifecycle
I/SystemServer( 4122): Serial Service
I/SystemServiceManager( 4122): Starting com.android.server.twilight.TwilightService
I/SystemServiceManager( 4122): Starting com.android.server.UiModeManagerService
I/SystemServiceManager( 4122): Starting com.android.server.job.JobSchedulerService
I/SystemServiceManager( 4122): Starting com.android.server.backup.BackupManagerService$Lifecycle
V/BackupManagerService( 4122): No ancestral data
D/BackupManagerService( 4122): Now staging backup of com.android.calendar
D/BackupManagerService( 4122): Now staging backup of com.android.dialer
D/BackupManagerService( 4122): Now staging backup of com.android.providers.userdictionary
D/BackupManagerService( 4122): Now staging backup of com.android.sharedstoragebackup
D/BackupManagerService( 4122): Now staging backup of com.android.providers.settings
D/BackupManagerService( 4122): Now staging backup of android
D/BackupManagerService( 4122): Now staging backup of com.android.mms
D/BackupManagerService( 4122): Now staging backup of com.android.browser
V/BackupManagerService( 4122): Starting with transport com.google.android.backup/.BackupTransportService
V/BackupManagerService( 4122): Found transports: 1
I/BackupManagerService( 4122): Binding to transport host ComponentInfo{android/com.android.internal.backup.LocalTransportService}
I/BackupManagerService( 4122): Found stale backup journal, scheduling
I/SystemServiceManager( 4122): Starting com.android.server.appwidget.AppWidgetService
I/SystemServiceManager( 4122): Starting com.android.server.voiceinteraction.VoiceInteractionManagerService
W/EventHub( 4122): Unable to disable kernel key repeat for /dev/input/event1: Function not implemented
I/EventHub( 4122): New device: id=20, fd=129, path='/dev/input/event1', name='sec_touchscreen', classes=0x15, configuration='/system/usr/idc/sec_touchscreen.idc', keyLayout='/system/usr/keylayout/Generic.kl', keyCharacterMap='/system/usr/keychars/Generic.kcm', builtinKeyboard=false, wakeMechanism=EPOLLWAKEUP, usingClockIoctl=true
W/SoundTriggerHelper( 4122): listModules status=0, # of modules=0
I/SystemServer( 4122): DiskStats Service
I/SystemServer( 4122): SamplingProfiler Service
I/InputReader( 4122): Device added: id=-1, name='Virtual', sources=0x00000301
I/InputReader( 4122): Touch device 'sec_touchscreen' could not query the properties of its associated display. The device will be inoperable until the display size becomes available.
I/InputReader( 4122): Device added: id=20, name='sec_touchscreen', sources=0x00005103
I/InputReader( 4122): Device added: id=18, name='sec_touchkey', sources=0x00000101
I/InputReader( 4122): Device added: id=17, name='Headset', sources=0x00000101
I/InputReader( 4122): Device added: id=16, name='voicecontrol', sources=0x00000101
I/InputReader( 4122): Device added: id=15, name='gpio_keys.16', sources=0x00000101
I/InputReader( 4122): Device added: id=13, name='sii8240_rcp', sources=0x00000101
I/InputReader( 4122): Reconfiguring input devices. changes=0x00000004
I/InputReader( 4122): Device reconfigured: id=20, name='sec_touchscreen', size 1080x1920, orientation 0, mode 1, display id 0
I/ActivityManager( 4122): Config changes=8 {1.0 ?mcc?mnc en_US ldltr sw360dp w360dp h615dp 480dpi nrml long port ?uimode ?night finger -keyb/v/h -nav/h s.4 themeResource=null}
I/SystemServer( 4122): NetworkTimeUpdateService
I/SystemServer( 4122): CommonTimeManagementService
I/SystemServer( 4122): CertBlacklister
I/SystemServiceManager( 4122): Starting com.android.server.dreams.DreamManagerService
I/SystemServer( 4122): Assets Atlas Service
I/SystemServiceManager( 4122): Starting com.android.server.print.PrintManagerService
I/SystemServiceManager( 4122): Starting com.android.server.restrictions.RestrictionsManagerService
D/Atlas ( 4122): Loaded configuration: SliceMinArea (1728x1984) flags=0x2 count=389
I/SystemServiceManager( 4122): Starting com.android.server.media.MediaSessionService
I/SystemServer( 4122): Theme Service
I/com.android.server.ThemeService( 4122): Spawned worker thread
I/SystemServer( 4122): KillSwitch Service
I/SystemServer( 4122): Media Router Service
I/SystemServiceManager( 4122): Starting com.android.server.trust.TrustManagerService
I/SystemServiceManager( 4122): Starting com.android.server.fingerprint.FingerprintService
V/Fingerprint-JNI( 4122): nativeInit()
V/Fingerprint-JNI( 4122): nativeOpenHal()
E/Fingerprint-JNI( 4122): Can't open fingerprint HW Module, error: -2
I/SystemServer( 4122): BackgroundDexOptService
I/SystemServer( 4122): CmHardwareService
I/SystemServiceManager( 4122): Starting com.android.server.pm.LauncherAppsService
D/SystemServer( 4122): Wipower not supported
I/SystemServer( 4122): EdgeGesture service
I/SystemServiceManager( 4122): Starting com.android.server.media.projection.MediaProjectionManagerService
I/WindowManager( 4122): SAFE MODE not enabled
I/SystemServiceManager( 4122): Starting com.android.server.MmsServiceBroker
E/SQLiteLog( 4122): (283) recovered 16 frames from WAL file /data/system/locksettings.db-wal
I/SystemServiceManager( 4122): Starting phase 480
I/ ( 4122): PLATFORM VERSION : JB-MR-2
I/SystemServiceManager( 4122): Starting phase 500
I/WifiService( 4122): WifiService starting up with Wi-Fi enabled
D/WifiService( 4122): setWifiEnabled: true pid=4122, uid=1000
E/WifiService( 4122): Invoking mWifiStateMachine.setWifiEnabled
D/WifiController( 4122): WifiController msg { when=-1ms what=155656 target=com.android.internal.util.StateMachine$SmHandler } deferred for 499ms
I/WifiScanningService( 4122): Registering wifiscanner
D/WifiScanningService( 4122): New client, channel: null messenger: null
I/RttService( 4122): Registering rttmanager
D/WifiChangeStateMachine( 4122): Entering IdleState
D/WifiScanningService( 4122): DefaultState
D/Atlas ( 4122): Rendered atlas in 79.07ms (39.66+39.41ms)
I/ActivityManager( 4122): Config changes=200 {1.0 ?mcc?mnc en_US ldltr sw360dp w360dp h615dp 480dpi nrml long port finger -keyb/v/h -nav/h s.5 themeResource=null}
D/LiveDisplay( 4122): Adjust display temperature to 6500K [r=1.0 g=1.0 b=1.0]
D/PermissionCache( 3691): checking android.permission.HARDWARE_TEST for uid=1000 => granted (255 us)
I/DisplayManagerService( 4122): Display device changed: DisplayDeviceInfo{"Built-in Screen": 1080 x 1920, 60.000004 fps, supportedRefreshRates [60.000004], density 480, 422.03 x 424.069 dpi, appVsyncOff 0, presDeadline 17666666, touch INTERNAL, rotation 0, type BUILT_IN, state ON, FLAG_DEFAULT_DISPLAY, FLAG_ROTATES_WITH_CONTENT, FLAG_SECURE, FLAG_SUPPORTS_PROTECTED_BUFFERS}
D/SurfaceFlinger( 3691): Set power mode=2, type=0 flinger=0xb6962000
D/SurfaceFlinger( 3691): Screen type=0 is already mode=2
D/wrapperGPS( 3702): wrapperConnect_RILD
I/ActivityManager( 4122): System now ready
I/SystemServer( 4122): Making services ready
I/SystemServiceManager( 4122): Starting phase 550
I/SystemServer( 4122): WebViewFactory preparation
I/Zygote ( 4122): Process: zygote socket opened, supported ABIS: armeabi-v7a,armeabi
W/SurfaceFlinger( 3691): Ignoring duplicate VSYNC event from HWC (t=12315119417)
I/ActivityManager( 4122): Start proc android.process.media for broadcast com.android.providers.media/.MtpReceiver: pid=4246 uid=10009 gids={50009, 9997, 1028, 1015, 1023, 1024, 2001, 3003, 3007} abi=armeabi-v7a
D/UsbHostManager( 4122): Added device UsbDevice[mName=/dev/bus/usb/001/002,mVendorId=5401,mProductId=1091,mClass=239,mSubclass=2,mProtocol=1,mManufacturerName=Comneon,mProductName=3 CDC-ACM + 4 CDC-NCM,mSerialNumber=353746060759785 - USB-HSIC,mConfigurations=[
D/UsbHostManager( 4122): UsbConfiguration[mId=1,mName=null,mAttributes=192,mMaxPower=50,mInterfaces=[
D/UsbHostManager( 4122): UsbInterface[mId=0,mAlternateSetting=0,mName=CDC Communication Interface,mClass=2,mSubclass=2,mProtocol=1,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=129,mAttributes=3,mMaxPacketSize=64,mInterval=4]]
D/UsbHostManager( 4122): UsbInterface[mId=1,mAlternateSetting=0,mName=CDC Data Interface,mClass=10,mSubclass=0,mProtocol=0,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=130,mAttributes=2,mMaxPacketSize=512,mInterval=0]
D/UsbHostManager( 4122): UsbEndpoint[mAddress=2,mAttributes=2,mMaxPacketSize=512,mInterval=0]]
D/UsbHostManager( 4122): UsbInterface[mId=2,mAlternateSetting=0,mName=CDC Communication Interface,mClass=2,mSubclass=2,mProtocol=1,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=131,mAttributes=3,mMaxPacketSize=64,mInterval=4]]
D/UsbHostManager( 4122): UsbInterface[mId=3,mAlternateSetting=0,mName=CDC Data Interface,mClass=10,mSubclass=0,mProtocol=0,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=132,mAttributes=2,mMaxPacketSize=512,mInterval=0]
D/UsbHostManager( 4122): UsbEndpoint[mAddress=4,mAttributes=2,mMaxPacketSize=512,mInterval=0]]
D/UsbHostManager( 4122): UsbInterface[mId=4,mAlternateSetting=0,mName=CDC Communication Interface,mClass=2,mSubclass=2,mProtocol=1,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=133,mAttributes=3,mMaxPacketSize=64,mInterval=4]]
D/UsbHostManager( 4122): UsbInterface[mId=5,mAlternateSetting=0,mName=CDC Data Interface,mClass=10,mSubclass=0,mProtocol=0,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=134,mAttributes=2,mMaxPacketSize=512,mInterval=0]
D/UsbHostManager( 4122): UsbEndpoint[mAddress=6,mAttributes=2,mMaxPacketSize=512,mInterval=0]]
D/UsbHostManager( 4122): UsbInterface[mId=6,mAlternateSetting=0,mName=CDC/NCM Communication Interface,mClass=2,mSubclass=13,mProtocol=0,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=135,mAttributes=3,mMaxPacketSize=64,mInterval=4]]
D/UsbHostManager( 4122): UsbInterface[mId=7,mAlternateSetting=0,mName=CDC Data Interface,mClass=10,mSubclass=0,mProtocol=1,mEndpoints=[]
D/UsbHostManager( 4122): UsbInterface[mId=7,mAlternateSetting=1,mName=Data ON,mClass=10,mSubclass=0,mProtocol=1,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=136,mAttributes=2,mMaxPacketSize=512,mInterval=0]
D/UsbHostManager( 4122): UsbEndpoint[mAddress=8,mAttributes=2,mMaxPacketSize=512,mInterval=0]]
D/UsbHostManager( 4122): UsbInterface[mId=8,mAlternateSetting=0,mName=CDC/NCM Communication Interface,mClass=2,mSubclass=13,mProtocol=0,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=137,mAttributes=3,mMaxPacketSize=64,mInterval=4]]
D/UsbHostManager( 4122): UsbInterface[mId=9,mAlternateSetting=0,mName=CDC Data Interface,mClass=10,mSubclass=0,mProtocol=1,mEndpoints=[]
D/UsbHostManager( 4122): UsbInterface[mId=9,mAlternateSetting=1,mName=Data ON,mClass=10,mSubclass=0,mProtocol=1,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=138,mAttributes=2,mMaxPacketSize=512,mInterval=0]
D/UsbHostManager( 4122): UsbEndpoint[mAddress=10,mAttributes=2,mMaxPacketSize=512,mInterval=0]]
D/UsbHostManager( 4122): UsbInterface[mId=10,mAlternateSetting=0,mName=CDC/NCM Communication Interface,mClass=2,mSubclass=13,mProtocol=0,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=139,mAttributes=3,mMaxPacketSize=64,mInterval=4]]
D/UsbHostManager( 4122): UsbInterface[mId=11,mAlternateSetting=0,mName=CDC Data Interface,mClass=10,mSubclass=0,mProtocol=1,mEndpoints=[]
D/UsbHostManager( 4122): UsbInterface[mId=11,mAlternateSetting=1,mName=Data ON,mClass=10,mSubclass=0,mProtocol=1,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=140,mAttributes=2,mMaxPacketSize=512,mInterval=0]
D/UsbHostManager( 4122): UsbEndpoint[mAddress=12,mAttributes=2,mMaxPacketSize=512,mInterval=0]]
D/UsbHostManager( 4122): UsbInterface[mId=12,mAlternateSetting=0,mName=CDC/NCM Communication Interface,mClass=2,mSubclass=13,mProtocol=0,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=141,mAttributes=3,mMaxPacketSize=64,mInterval=4]]
D/UsbHostManager( 4122): UsbInterface[mId=13,mAlternateSetting=0,mName=CDC Data Interface,mClass=10,mSubclass=0,mProtocol=1,mEndpoints=[]
D/UsbHostManager( 4122): UsbInterface[mId=13,mAlternateSetting=1,mName=Data ON,mClass=10,mSubclass=0,mProtocol=1,mEndpoints=[
D/UsbHostManager( 4122): UsbEndpoint[mAddress=142,mAttributes=2,mMaxPacketSize=512,mInterval=0]
D/UsbHostManager( 4122): UsbEndpoint[mAddress=14,mAttributes=2,mMaxPacketSize=512,mInterval=0]]]]
I/ActivityManager( 4122): Start proc WebViewLoader-armeabi-v7a [android.webkit.WebViewFactory$RelroFileCreator] for : pid=4268 uid=1037 gids={} abi=armeabi-v7a
W/ContextImpl( 4122): Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1361 com.android.server.usb.UsbSettingsManager.deviceAttached:741 com.android.server.usb.UsbHostManager.endUsbDeviceAdded:286 com.android.server.usb.UsbHostManager.monitorUsbHostBus:-2 com.android.server.usb.UsbHostManager.access$000:47
V/WebViewFactory( 4268): RelroFileCreator (64bit = false), 32-bit lib: /system/app/webview/lib/arm/libwebviewchromium.so, 64-bit lib:
I/ActivityManager( 4122): Start proc com.android.systemui for service com.android.systemui/.SystemUIService: pid=4292 uid=10016 gids={50016, 9997, 1028, 1015, 1035, 3002, 3001, 3006} abi=armeabi-v7a
D/NetworkManagementService( 4122): enabling bandwidth control
E/MountService( 4122): Boot-time mount failed (-1)
E/MountService( 4122): Boot-time mount failed (-1)
W/MountService( 4122): Duplicate state transition (mounted -> mounted) for /storage/emulated/0
W/auditd ( 3697): type=1325 audit(0.0:149): table=filter family=2 entries=50
W/iptables( 4314): type=1300 audit(0.0:149): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=1f a1=0 a2=40 a3=b6c26000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:149):
W/auditd ( 3697): type=1325 audit(0.0:150): table=filter family=10 entries=47
W/ip6tables( 4317): type=1300 audit(0.0:150): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=1f a1=29 a2=40 a3=b6c29000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:150):
W/auditd ( 3697): type=1325 audit(0.0:151): table=filter family=2 entries=49
W/iptables( 4319): type=1300 audit(0.0:151): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=1f a1=0 a2=40 a3=b6c26000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:151):
W/auditd ( 3697): type=1325 audit(0.0:152): table=filter family=10 entries=46
W/ip6tables( 4320): type=1300 audit(0.0:152): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=1f a1=29 a2=40 a3=b6c29000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:152):
W/auditd ( 3697): type=1325 audit(0.0:153): table=filter family=2 entries=48
W/iptables( 4321): type=1300 audit(0.0:153): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=1f a1=0 a2=40 a3=b6c22000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:153):
I/art ( 4268): System.exit called, status: 0
I/AndroidRuntime( 4268): VM exiting with result code 0, cleanup skipped.
W/auditd ( 3697): type=1325 audit(0.0:154): table=filter family=10 entries=45
W/ip6tables( 4323): type=1300 audit(0.0:154): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=1f a1=29 a2=40 a3=b6c24000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" key=(null)
W/auditd ( 3697): type=1320 audit(0.0:154):
W/auditd ( 3697): type=1325 audit(0.0:155): table=filter family=2 entries=48
W/iptables( 4324): type=1300 audit(0.0:155): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=1f a1=0 a2=40 a3=b6c22000 items=0 ppid=3688 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" key=(null)
E/SQLiteLog( 4246): (283) recovered 112 frames from WAL file /data/data/com.android.providers.media/databases/external.db-wal
V/SystemUIService( 4292): Starting SystemUI services.
V/FingerprintService( 4122): startListening(android.service.fingerprint.IFingerprintServiceReceiver$Stub$Proxy@6a23c66)
D/WifiController( 4122): DEFERRED_TOGGLE handled
W/linker ( 3694): libavcodec.so has text relocations. This is wasting memory and prevents security hardening. Please fix.
D/WVMDrmPlugIn( 3693): WVMDrmPlugin::onInitialize : 6995
D/WVMDrmPlugIn( 3693): WVMDrmPlugin::onSetOnInfoListener : add 6995
D/WVMDrmPlugIn( 3693): WVMDrmPlugin::onTerminate : 6995
I/FFmpegExtractor( 3694): android-source:0xb3c06060
D/SoftapController( 3688): Softap fwReload - Ok
W/CommandListener( 3688): Failed to retrieve HW addr for wlan0 (No such device)
I/FFMPEG ( 3694): Input #0, ogg, from 'android-source:0xb3c06060':
I/FFMPEG ( 3694): Duration: 00:00:00.23, start: 0.000000, bitrate: 293 kb/s
I/FFMPEG ( 3694): Stream #0:0: Audio: vorbis, 44100 Hz, stereo, fltp, 160 kb/s
D/FFmpegExtractor( 3694): FFmpegExtrator, url: android-source:0xb3c06060, format_name: ogg, format_long_name: Ogg
I/FFmpegExtractor( 3694): adjust mime(application/ogg -> audio/vorbis)
D/FFmpegExtractor( 3694): suppoted codec(vorbis) by official Stagefright
D/FFmpegExtractor( 3694): ffmpeg detected media content as 'audio/vorbis' with confidence 0.08