-
Notifications
You must be signed in to change notification settings - Fork 1
/
test54.txt
4787 lines (4787 loc) · 480 KB
/
test54.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): ____ _ _ ____ _ _ ____ ____ ____ _ _ _ _ ____ ___
W/auditd ( 3700): type=2000 audit(0.0:1): initialized
W/auditd ( 3700): type=1325 audit(0.0:2): table=filter family=2 entries=0
W/auditd ( 3700): type=1325 audit(0.0:3): table=mangle family=2 entries=0
W/auditd ( 3700): type=1325 audit(0.0:4): table=nat family=2 entries=0
W/auditd ( 3700): type=1325 audit(0.0:5): table=raw family=2 entries=0
W/auditd ( 3700): type=1325 audit(0.0:6): table=security family=2 entries=0
W/auditd ( 3700): type=1325 audit(0.0:7): table=filter family=3 entries=0
W/auditd ( 3700): type=1325 audit(0.0:8): table=filter family=10 entries=0
W/auditd ( 3700): type=1325 audit(0.0:9): table=mangle family=10 entries=0
W/auditd ( 3700): type=1325 audit(0.0:10): table=raw family=10 entries=0
I/cm ( 0): | \_/ |__| |\ | | | | __ |___ |\ | |\/| | | | \
W/auditd ( 3700): type=1305 audit(0.0:11): audit_pid=3668 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3700): res=1
W/auditd ( 3700): type=1305 audit(0.0:12): audit_rate_limit=20 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3700): res=1
I/lowmemorykiller( 3670): Using in-kernel low memory killer interface
I/cm ( 3687): |___ | | | | \| |__| |__] |___ | \| | | |__| |__/
I/DEBUG ( 3679): debuggerd: Jun 17 2015 15:28:56
I/installd( 3683): installd firing up
--------- beginning of system
I/auditd ( 3677): Starting up
I/Netd ( 3678): Netd 1.0 starting
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 3678): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
I/cm ( 3701): Welcome to Android 5.0.2 / CyanogenMod-12-20150702-UNOFFICIAL-k3gxx
I/Vold ( 3673): Vold 2.1 (the revenge) firing up
D/Vold ( 3673): Volume sdcard1 state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3673): Volume usbdisk state changing -1 (Initializing) -> 0 (No-Media)
I/Cryptfs ( 3673): Check if PFE is activated on Boot
E/Cryptfs ( 3673): Bad magic for real block device /dev/block/mmcblk0p21
E/Cryptfs ( 3673): Error getting crypt footer and key
I/audit_log( 3677): Previous audit logfile detected, rotating
W/libaudit( 3677): Expected sequence number between user space and kernel space is out of skew, expected 2 got 0
E/audit_rules( 3677): Could not read audit rules /data/misc/audit/audit.rules: No such file or directory
I/SurfaceFlinger( 3675): SurfaceFlinger is starting
I/SurfaceFlinger( 3675): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
I/keystore( 3689): SELinux: Keystore SELinux is disabled.
D/libEGL ( 3675): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 3675): PLATFORM VERSION : JB-MR-2
I/mediaserver( 3682): ServiceManager: 0xb60500c0
I/AudioFlinger( 3682): Using default 3000 mSec as standby time.
I/ServiceManager( 3682): Waiting for service batterystats...
I/gralloc ( 3675): using (fd=12)
I/gralloc ( 3675): id =
I/gralloc ( 3675): xres = 1080 px
I/gralloc ( 3675): yres = 1920 px
I/gralloc ( 3675): xres_virtual = 1080 px
I/gralloc ( 3675): yres_virtual = 3840 px
I/gralloc ( 3675): bpp = 32
I/gralloc ( 3675): r = 16:8
I/gralloc ( 3675): g = 8:8
I/gralloc ( 3675): b = 0:8
I/gralloc ( 3675): width = 65 mm (422.030762 dpi)
I/gralloc ( 3675): height = 115 mm (424.069580 dpi)
I/gralloc ( 3675): refresh rate = 60.00 Hz
D/WVMDrmPlugIn( 3681): WVMDrmPlugin::onGetSupportInfo : 0
D/hwcomposer( 3675): using
D/hwcomposer( 3675): xres = 1080 px
D/hwcomposer( 3675): yres = 1920 px
D/hwcomposer( 3675): width = 65 mm (422.030000 dpi)
D/hwcomposer( 3675): height = 115 mm (424.069000 dpi)
D/hwcomposer( 3675): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 3675): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 3675): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 3675): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3675): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3675): open subdev device /dev/v4l-subdev2
I/hwcomposer( 3675): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 3675): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 3675): Using composer version 1.3
I/SurfaceFlinger( 3675): EGL information:
I/SurfaceFlinger( 3675): vendor : Android
I/SurfaceFlinger( 3675): version : 1.4 Android META-EGL
I/SurfaceFlinger( 3675): 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( 3675): Client API: OpenGL_ES
I/SurfaceFlinger( 3675): EGLSurface: 8-8-8-8, config=0xb6acf2ac
D/AndroidRuntime( 3691):
D/AndroidRuntime( 3691): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
I/SurfaceFlinger( 3675): OpenGL ES informations:
I/SurfaceFlinger( 3675): vendor : ARM
I/SurfaceFlinger( 3675): renderer : Mali-T628
I/SurfaceFlinger( 3675): version : OpenGL ES 3.0
I/SurfaceFlinger( 3675): 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( 3675): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 3675): GL_MAX_VIEWPORT_DIMS = 8192
E/libEGL ( 3675): eglQuerySurface:658 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 3675): eglQuerySurface:658 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 3675): call to OpenGL ES API with no current context (logged once per thread)
D/SurfaceFlinger( 3675): Set power mode=2, type=0 flinger=0xb6a62000
I/hwcomposer( 3675): int exynos5_blank(hwc_composer_device_1*, int, int):: disp(0), blank(0)
I/hwcomposer( 3675): unblank ioctl failed (display already unblanked)
D/AndroidRuntime( 3691): CheckJNI is OFF
E/libEGL ( 3675): eglSwapBuffers:1228 error 300d (EGL_BAD_SURFACE)
F/SurfaceFlinger( 3675): eglSwapBuffers(0x1, 0x0) failed with 0x0000300d
--------- beginning of crash
F/libc ( 3675): Fatal signal 6 (SIGABRT), code -6 in tid 3675 (surfaceflinger)
I/DEBUG ( 3679): property debug.db.uid not set; NOT waiting for gdb.
I/DEBUG ( 3679): HINT: adb shell setprop debug.db.uid 100000
I/DEBUG ( 3679): HINT: adb forward tcp:5039 tcp:5039
I/art ( 3691): option[0]=-Xzygote
I/art ( 3691): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 3691): option[2]=exit
I/art ( 3691): option[3]=vfprintf
I/art ( 3691): option[4]=sensitiveThread
I/art ( 3691): option[5]=-verbose:gc
I/art ( 3691): option[6]=-Xms8m
I/art ( 3691): option[7]=-Xmx512m
I/art ( 3691): option[8]=-XX:mainThreadStackSize=24K
I/art ( 3691): option[9]=-XX:HeapGrowthLimit=128m
I/art ( 3691): option[10]=-XX:HeapMinFree=2m
I/art ( 3691): option[11]=-XX:HeapMaxFree=8m
I/art ( 3691): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 3691): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 3691): option[14]=-Xlockprofthreshold:500
I/art ( 3691): option[15]=-Ximage-compiler-option
I/art ( 3691): option[16]=--runtime-arg
I/art ( 3691): option[17]=-Ximage-compiler-option
I/art ( 3691): option[18]=-Xms64m
I/art ( 3691): option[19]=-Ximage-compiler-option
I/art ( 3691): option[20]=--runtime-arg
I/art ( 3691): option[21]=-Ximage-compiler-option
I/art ( 3691): option[22]=-Xmx64m
I/art ( 3691): option[23]=-Ximage-compiler-option
I/art ( 3691): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 3691): option[25]=-Ximage-compiler-option
I/art ( 3691): option[26]=--image-classes=preloaded-classes
I/art ( 3691): option[27]=-Xcompiler-option
I/art ( 3691): option[28]=--runtime-arg
I/art ( 3691): option[29]=-Xcompiler-option
I/art ( 3691): option[30]=-Xms64m
I/art ( 3691): option[31]=-Xcompiler-option
I/art ( 3691): option[32]=--runtime-arg
I/art ( 3691): option[33]=-Xcompiler-option
I/art ( 3691): option[34]=-Xmx512m
I/art ( 3691): option[35]=-Duser.language=es
I/art ( 3691): option[36]=-Duser.region=US
W/art ( 3691): Failed to open oat file '/data/dalvik-cache/arm/system@[email protected]' referenced from image /data/dalvik-cache/arm/system@[email protected]: Failed to open oat filename for reading: No such file or directory
I/art ( 3691): Pruning dalvik-cache since we are generating an image and will need to recompile
W/art ( 3691): Prune Dex Cache
I/DEBUG ( 3679): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 3679): Build fingerprint: 'samsung/cm_k3gxx/k3gxx:5.0.2/LRX22G/f6367390ba:userdebug/test-keys'
I/DEBUG ( 3679): Revision: '10'
I/DEBUG ( 3679): ABI: 'arm'
I/DEBUG ( 3679): pid: 3675, tid: 3675, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
I/DEBUG ( 3679): signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
I/DEBUG ( 3679): Abort message: 'eglSwapBuffers(0x1, 0x0) failed with 0x0000300d'
I/DEBUG ( 3679): r0 00000000 r1 00000e5b r2 00000006 r3 00000000
I/DEBUG ( 3679): r4 b6f9f114 r5 00000006 r6 0000000b r7 0000010c
I/DEBUG ( 3679): r8 00000000 r9 bed46bd0 sl b6a54210 fp bed46bd0
I/DEBUG ( 3679): ip 00000e5b sp bed46650 lr b6f297b9 pc b6f4d4e4 cpsr 600f0010
I/DEBUG ( 3679):
I/DEBUG ( 3679): backtrace:
I/DEBUG ( 3679): #00 pc 000384e4 /system/lib/libc.so (tgkill+12)
I/DEBUG ( 3679): #01 pc 000147b5 /system/lib/libc.so (pthread_kill+52)
I/DEBUG ( 3679): #02 pc 0001550b /system/lib/libc.so (raise+10)
I/DEBUG ( 3679): #03 pc 00011c35 /system/lib/libc.so (__libc_android_abort+36)
I/DEBUG ( 3679): #04 pc 0000fcb8 /system/lib/libc.so (abort+4)
I/DEBUG ( 3679): #05 pc 00007739 /system/lib/libcutils.so (__android_log_assert+88)
I/DEBUG ( 3679): #06 pc 0000f4df /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #07 pc 0001b9fd /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #08 pc 0001abe7 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #09 pc 00019fc3 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #10 pc 00019d49 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #11 pc 00010ed3 /system/lib/libutils.so (android::Looper::pollInner(int)+410)
I/DEBUG ( 3679): #12 pc 00010fc5 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92)
I/DEBUG ( 3679): #13 pc 000174c5 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #14 pc 0001993d /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::run()+8)
I/DEBUG ( 3679): #15 pc 0000083d /system/bin/surfaceflinger
I/DEBUG ( 3679): #16 pc 0000fb75 /system/lib/libc.so (__libc_init+44)
I/DEBUG ( 3679): #17 pc 000008d8 /system/bin/surfaceflinger
I/art ( 3691): Using an offset of 0xff42a000 from default art base address of 0x70000000
I/art ( 3691): GenerateImage: /system/bin/dex2oat --image=/data/dalvik-cache/arm/system@[email protected] --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/core-junit.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/mms-common.jar --dex-file=/system/framework/android.policy.jar --dex-file=/system/framework/apache-xml.jar --oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --instruction-set-features=div --base=0x6f42a000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes-zip=/system/framework/framework.jar --image-classes=preloaded-classes
W/art ( 3691): Prune Dex Cache
W/art ( 3691): Could not create image space with image file '/system/framework/boot.art'. Attempting to fall back to imageless running. Error was: Failed to generate image '/data/dalvik-cache/arm/system@[email protected]': Failed execv(/system/bin/dex2oat --image=/data/dalvik-cache/arm/system@[email protected] --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/core-junit.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/mms-common.jar --dex-file=/system/framework/android.policy.jar --dex-file=/system/framework/apache-xml.jar --oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --instruction-set-features=div --base=0x6f42a000 --runtime-arg -Xms64
I/ServiceManager( 3682): Waiting for service batterystats...
V/NatController( 3678): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 3678): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 3678): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 3678): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=1
V/NatController( 3678): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=1
V/NatController( 3678): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
V/NatController( 3678): runCmd(/system/bin/iptables -t mangle -A natctrl_mangle_FORWARD -p tcp --tcp-flags SYN SYN -j TCPMSS --clamp-mss-to-pmtu) res=0
I/DEBUG ( 3679):
I/DEBUG ( 3679): Tombstone written to: /data/tombstones/tombstone_00
I/ServiceManager( 3671): service 'SurfaceFlinger' died
W/SurfaceComposerClient( 3860): ComposerService remote (surfaceflinger) died [0xb62591c0]
E/BootAnimation( 3860): linkToComposerDeath failed (Broken pipe)
I/ServiceManager( 3671): service 'Exynos.HWCService' died
I/ServiceManager( 3671): service 'media.wifi_display' died
I/ServiceManager( 3671): service 'media.audio_flinger' died
I/Netd ( 4002): Netd 1.0 starting
E/Netd ( 4002): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 4002): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 4002): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 4002): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 4002): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 4002): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 4002): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 4002): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
I/SurfaceFlinger( 4003): SurfaceFlinger is starting
I/SurfaceFlinger( 4003): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
D/libEGL ( 4003): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 4003): PLATFORM VERSION : JB-MR-2
I/mediaserver( 4004): ServiceManager: 0xb60500c0
I/AudioFlinger( 4004): Using default 3000 mSec as standby time.
I/ServiceManager( 4004): Waiting for service batterystats...
D/AndroidRuntime( 4006):
D/AndroidRuntime( 4006): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 4006): CheckJNI is OFF
I/art ( 4006): option[0]=-Xzygote
I/art ( 4006): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 4006): option[2]=exit
I/art ( 4006): option[3]=vfprintf
I/art ( 4006): option[4]=sensitiveThread
I/art ( 4006): option[5]=-verbose:gc
I/art ( 4006): option[6]=-Xms8m
I/art ( 4006): option[7]=-Xmx512m
I/art ( 4006): option[8]=-XX:mainThreadStackSize=24K
I/art ( 4006): option[9]=-XX:HeapGrowthLimit=128m
I/art ( 4006): option[10]=-XX:HeapMinFree=2m
I/art ( 4006): option[11]=-XX:HeapMaxFree=8m
I/art ( 4006): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 4006): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 4006): option[14]=-Xlockprofthreshold:500
I/art ( 4006): option[15]=-Ximage-compiler-option
I/art ( 4006): option[16]=--runtime-arg
I/art ( 4006): option[17]=-Ximage-compiler-option
I/art ( 4006): option[18]=-Xms64m
I/art ( 4006): option[19]=-Ximage-compiler-option
I/art ( 4006): option[20]=--runtime-arg
I/art ( 4006): option[21]=-Ximage-compiler-option
I/art ( 4006): option[22]=-Xmx64m
I/art ( 4006): option[23]=-Ximage-compiler-option
I/art ( 4006): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 4006): option[25]=-Ximage-compiler-option
I/art ( 4006): option[26]=--image-classes=preloaded-classes
I/art ( 4006): option[27]=-Xcompiler-option
I/art ( 4006): option[28]=--runtime-arg
I/art ( 4006): option[29]=-Xcompiler-option
I/art ( 4006): option[30]=-Xms64m
I/art ( 4006): option[31]=-Xcompiler-option
I/art ( 4006): option[32]=--runtime-arg
I/art ( 4006): option[33]=-Xcompiler-option
I/art ( 4006): option[34]=-Xmx512m
I/art ( 4006): option[35]=-Duser.language=es
I/art ( 4006): option[36]=-Duser.region=US
I/art ( 4006): Pruning dalvik-cache since we are generating an image and will need to recompile
W/art ( 4006): Prune Dex Cache
I/gralloc ( 4003): using (fd=12)
I/gralloc ( 4003): id =
I/gralloc ( 4003): xres = 1080 px
I/gralloc ( 4003): yres = 1920 px
I/gralloc ( 4003): xres_virtual = 1080 px
I/gralloc ( 4003): yres_virtual = 3840 px
I/gralloc ( 4003): bpp = 32
I/gralloc ( 4003): r = 16:8
I/gralloc ( 4003): g = 8:8
I/gralloc ( 4003): b = 0:8
I/gralloc ( 4003): width = 65 mm (422.030762 dpi)
I/gralloc ( 4003): height = 115 mm (424.069580 dpi)
I/gralloc ( 4003): refresh rate = 60.00 Hz
I/art ( 4006): Using an offset of 0x2da000 from default art base address of 0x70000000
I/art ( 4006): GenerateImage: /system/bin/dex2oat --image=/data/dalvik-cache/arm/system@[email protected] --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/core-junit.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/mms-common.jar --dex-file=/system/framework/android.policy.jar --dex-file=/system/framework/apache-xml.jar --oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --instruction-set-features=div --base=0x702da000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes-zip=/system/framework/framework.jar --image-classes=preloaded-classes
W/art ( 4006): Prune Dex Cache
W/art ( 4006): Could not create image space with image file '/system/framework/boot.art'. Attempting to fall back to imageless running. Error was: Failed to generate image '/data/dalvik-cache/arm/system@[email protected]': Failed execv(/system/bin/dex2oat --image=/data/dalvik-cache/arm/system@[email protected] --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/core-junit.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/mms-common.jar --dex-file=/system/framework/android.policy.jar --dex-file=/system/framework/apache-xml.jar --oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --instruction-set-features=div --base=0x702da000 --runtime-arg -Xms64
D/hwcomposer( 4003): using
D/hwcomposer( 4003): xres = 1080 px
D/hwcomposer( 4003): yres = 1920 px
D/hwcomposer( 4003): width = 65 mm (422.030000 dpi)
D/hwcomposer( 4003): height = 115 mm (424.069000 dpi)
D/hwcomposer( 4003): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 4003): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 4003): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 4003): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 4003): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 4003): open subdev device /dev/v4l-subdev2
I/hwcomposer( 4003): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 4003): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 4003): Using composer version 1.3
I/SurfaceFlinger( 4003): EGL information:
I/SurfaceFlinger( 4003): vendor : Android
I/SurfaceFlinger( 4003): version : 1.4 Android META-EGL
I/SurfaceFlinger( 4003): 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( 4003): Client API: OpenGL_ES
I/SurfaceFlinger( 4003): EGLSurface: 8-8-8-8, config=0xb6acf2ac
I/SurfaceFlinger( 4003): OpenGL ES informations:
I/SurfaceFlinger( 4003): vendor : ARM
I/SurfaceFlinger( 4003): renderer : Mali-T628
I/SurfaceFlinger( 4003): version : OpenGL ES 3.0
I/SurfaceFlinger( 4003): 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( 4003): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 4003): GL_MAX_VIEWPORT_DIMS = 8192
E/libEGL ( 4003): eglQuerySurface:658 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 4003): eglQuerySurface:658 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 4003): call to OpenGL ES API with no current context (logged once per thread)
D/SurfaceFlinger( 4003): Set power mode=2, type=0 flinger=0xb6a62000
I/hwcomposer( 4003): int exynos5_blank(hwc_composer_device_1*, int, int):: disp(0), blank(0)
I/hwcomposer( 4003): unblank ioctl failed (display already unblanked)
E/libEGL ( 4003): eglSwapBuffers:1228 error 300d (EGL_BAD_SURFACE)
F/SurfaceFlinger( 4003): eglSwapBuffers(0x1, 0x0) failed with 0x0000300d
F/libc ( 4003): Fatal signal 6 (SIGABRT), code -6 in tid 4003 (surfaceflinger)
I/DEBUG ( 3679): property debug.db.uid not set; NOT waiting for gdb.
I/DEBUG ( 3679): HINT: adb shell setprop debug.db.uid 100000
I/DEBUG ( 3679): HINT: adb forward tcp:5039 tcp:5039
I/DEBUG ( 3679): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 3679): Build fingerprint: 'samsung/cm_k3gxx/k3gxx:5.0.2/LRX22G/f6367390ba:userdebug/test-keys'
I/DEBUG ( 3679): Revision: '10'
I/DEBUG ( 3679): ABI: 'arm'
I/DEBUG ( 3679): pid: 4003, tid: 4003, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
I/DEBUG ( 3679): signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
I/DEBUG ( 3679): Abort message: 'eglSwapBuffers(0x1, 0x0) failed with 0x0000300d'
I/DEBUG ( 3679): r0 00000000 r1 00000fa3 r2 00000006 r3 00000000
I/DEBUG ( 3679): r4 b6fdf114 r5 00000006 r6 0000000b r7 0000010c
I/DEBUG ( 3679): r8 00000000 r9 be9c8bd0 sl b6a54210 fp be9c8bd0
I/DEBUG ( 3679): ip 00000fa3 sp be9c8650 lr b6f697b9 pc b6f8d4e4 cpsr 600f0010
I/DEBUG ( 3679):
I/DEBUG ( 3679): backtrace:
I/DEBUG ( 3679): #00 pc 000384e4 /system/lib/libc.so (tgkill+12)
I/DEBUG ( 3679): #01 pc 000147b5 /system/lib/libc.so (pthread_kill+52)
I/DEBUG ( 3679): #02 pc 0001550b /system/lib/libc.so (raise+10)
I/DEBUG ( 3679): #03 pc 00011c35 /system/lib/libc.so (__libc_android_abort+36)
I/DEBUG ( 3679): #04 pc 0000fcb8 /system/lib/libc.so (abort+4)
I/DEBUG ( 3679): #05 pc 00007739 /system/lib/libcutils.so (__android_log_assert+88)
I/DEBUG ( 3679): #06 pc 0000f4df /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #07 pc 0001b9fd /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #08 pc 0001abe7 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #09 pc 00019fc3 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #10 pc 00019d49 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #11 pc 00010ed3 /system/lib/libutils.so (android::Looper::pollInner(int)+410)
I/DEBUG ( 3679): #12 pc 00010fc5 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92)
I/DEBUG ( 3679): #13 pc 000174c5 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3679): #14 pc 0001993d /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::run()+8)
I/DEBUG ( 3679): #15 pc 0000083d /system/bin/surfaceflinger
I/DEBUG ( 3679): #16 pc 0000fb75 /system/lib/libc.so (__libc_init+44)
I/DEBUG ( 3679): #17 pc 000008d8 /system/bin/surfaceflinger
I/ServiceManager( 4004): Waiting for service batterystats...
F/art ( 4006): sart/runtime/class_linker.cc:398] Check failed: java_lang_String.Get() == String_class (java_lang_String.Get()=0x12c0a400, String_class=0x12c0b400) ----- class 'Ljava/lang/String;' cl=0x0 -----
F/art ( 4006): sart/runtime/class_linker.cc:398] objectSize=640 (412 from super)
F/art ( 4006): sart/runtime/class_linker.cc:398] access=0x0000.0011
F/art ( 4006): sart/runtime/class_linker.cc:398] super='java.lang.Class<java.lang.Object>' (cl=0x0)
F/art ( 4006): sart/runtime/class_linker.cc:398] interfaces (3):
F/art ( 4006): sart/runtime/class_linker.cc:398] 0: java.lang.Class<java.io.Serializable> (cl=0x0)
F/art ( 4006): sart/runtime/class_linker.cc:398] 1: java.lang.Class<java.lang.Comparable> (cl=0x0)
F/art ( 4006): sart/runtime/class_linker.cc:398] 2: java.lang.Class<java.lang.CharSequence> (cl=0x0)
F/art ( 4006): sart/runtime/class_linker.cc:398] class not yet loaded
F/art ( 4006): sart/runtime/class_linker.cc:398]
F/art ( 4006): sart/runtime/class_linker.cc:398] ----- class 'Ljava/lang/String;' cl=0x0 -----
F/art ( 4006): sart/runtime/class_linker.cc:398] objectSize=636 (412 from super)
F/art ( 4006): sart/runtime/class_linker.cc:398] access=0x0000.0011
F/art ( 4006): sart/runtime/class_linker.cc:398] super='java.lang.Class<java.lang.Object>' (cl=0x0)
F/art ( 4006): sart/runtime/class_linker.cc:398] interfaces (3):
F/art ( 4006): sart/runtime/class_linker.cc:398] 0: java.lang.Class<java.io.Serializable> (cl=0x0)
F/art ( 4006): sart/runtime/class_linker.cc:398] 1: java.lang.Class<java.lang.Comparable> (cl=0x0)
F/art ( 4006): sart/runtime/class_linker.cc:398] 2: java.lang.Class<java.lang.CharSequence> (cl=0x0)
F/art ( 4006): sart/runtime/class_linker.cc:398] vtable (54 entries, 11 in super):
F/art ( 4006): sart/runtime/class_linker.cc:398] 0: void java.lang.String._getChars(int, int, char[], int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 1: char java.lang.String.charAt(int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 2: int java.lang.String.codePointAt(int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 3: int java.lang.String.codePointBefore(int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 4: int java.lang.String.codePointCount(int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 5: int java.lang.String.compareTo(java.lang.Object)
F/art ( 4006): sart/runtime/class_linker.cc:398] 6: int java.lang.String.compareTo(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 7: int java.lang.String.compareToIgnoreCase(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 8: java.lang.String java.lang.String.concat(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 9: boolean java.lang.String.contains(java.lang.CharSequence)
F/art ( 4006): sart/runtime/class_linker.cc:398] 10: boolean java.lang.String.contentEquals(java.lang.CharSequence)
F/art ( 4006): sart/runtime/class_linker.cc:398] 11: boolean java.lang.String.contentEquals(java.lang.StringBuffer)
F/art ( 4006): sart/runtime/class_linker.cc:398] 12: boolean java.lang.String.endsWith(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 13: boolean java.lang.String.equals(java.lang.Object)
F/art ( 4006): sart/runtime/class_linker.cc:398] 14: boolean java.lang.String.equalsIgnoreCase(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 15: void java.lang.String.getBytes(int, int, byte[], int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 16: byte[] java.lang.String.getBytes()
F/art ( 4006): sart/runtime/class_linker.cc:398] 17: byte[] java.lang.String.getBytes(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 18: byte[] java.lang.String.getBytes(java.nio.charset.Charset)
F/art ( 4006): sart/runtime/class_linker.cc:398] 19: void java.lang.String.getChars(int, int, char[], int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 20: int java.lang.String.hashCode()
F/art ( 4006): sart/runtime/class_linker.cc:398] 21: int java.lang.String.indexOf(int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 22: int java.lang.String.indexOf(int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 23: int java.lang.String.indexOf(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 24: int java.lang.String.indexOf(java.lang.String, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 25: java.lang.String java.lang.String.intern()
F/art ( 4006): sart/runtime/class_linker.cc:398] 26: boolean java.lang.String.isEmpty()
F/art ( 4006): sart/runtime/class_linker.cc:398] 27: int java.lang.String.lastIndexOf(int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 28: int java.lang.String.lastIndexOf(int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 29: int java.lang.String.lastIndexOf(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 30: int java.lang.String.lastIndexOf(java.lang.String, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 31: int java.lang.String.length()
F/art ( 4006): sart/runtime/class_linker.cc:398] 32: boolean java.lang.String.matches(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 33: int java.lang.String.offsetByCodePoints(int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 34: boolean java.lang.String.regionMatches(int, java.lang.String, int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 35: boolean java.lang.String.regionMatches(boolean, int, java.lang.String, int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 36: java.lang.String java.lang.String.replace(char, char)
F/art ( 4006): sart/runtime/class_linker.cc:398] 37: java.lang.String java.lang.String.replace(java.lang.CharSequence, java.lang.CharSequence)
F/art ( 4006): sart/runtime/class_linker.cc:398] 38: java.lang.String java.lang.String.replaceAll(java.lang.String, java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 39: java.lang.String java.lang.String.replaceFirst(java.lang.String, java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 40: java.lang.String[] java.lang.String.split(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 41: java.lang.String[] java.lang.String.split(java.lang.String, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 42: boolean java.lang.String.startsWith(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 43: boolean java.lang.String.startsWith(java.lang.String, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 44: java.lang.CharSequence java.lang.String.subSequence(int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 45: java.lang.String java.lang.String.substring(int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 46: java.lang.String java.lang.String.substring(int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 47: char[] java.lang.String.toCharArray()
F/art ( 4006): sart/runtime/class_linker.cc:398] 48: java.lang.String java.lang.String.toLowerCase()
F/art ( 4006): sart/runtime/class_linker.cc:398] 49: java.lang.String java.lang.String.toLowerCase(java.util.Locale)
F/art ( 4006): sart/runtime/class_linker.cc:398] 50: java.lang.String java.lang.String.toString()
F/art ( 4006): sart/runtime/class_linker.cc:398] 51: java.lang.String java.lang.String.toUpperCase()
F/art ( 4006): sart/runtime/class_linker.cc:398] 52: java.lang.String java.lang.String.toUpperCase(java.util.Locale)
F/art ( 4006): sart/runtime/class_linker.cc:398] 53: java.lang.String java.lang.String.trim()
F/art ( 4006): sart/runtime/class_linker.cc:398] direct methods (38 entries):
F/art ( 4006): sart/runtime/class_linker.cc:398] 0: void java.lang.String.<clinit>()
F/art ( 4006): sart/runtime/class_linker.cc:398] 1: void java.lang.String.<init>()
F/art ( 4006): sart/runtime/class_linker.cc:398] 2: void java.lang.String.<init>(int, int, char[])
F/art ( 4006): sart/runtime/class_linker.cc:398] 3: void java.lang.String.<init>(java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 4: void java.lang.String.<init>(java.lang.StringBuffer)
F/art ( 4006): sart/runtime/class_linker.cc:398] 5: void java.lang.String.<init>(java.lang.StringBuilder)
F/art ( 4006): sart/runtime/class_linker.cc:398] 6: void java.lang.String.<init>(byte[])
F/art ( 4006): sart/runtime/class_linker.cc:398] 7: void java.lang.String.<init>(byte[], int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 8: void java.lang.String.<init>(byte[], int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 9: void java.lang.String.<init>(byte[], int, int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 10: void java.lang.String.<init>(byte[], int, int, java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 11: void java.lang.String.<init>(byte[], int, int, java.nio.charset.Charset)
F/art ( 4006): sart/runtime/class_linker.cc:398] 12: void java.lang.String.<init>(byte[], java.lang.String)
F/art ( 4006): sart/runtime/class_linker.cc:398] 13: void java.lang.String.<init>(byte[], java.nio.charset.Charset)
F/art ( 4006): sart/runtime/class_linker.cc:398] 14: void java.lang.String.<init>(char[])
F/art ( 4006): sart/runtime/class_linker.cc:398] 15: void java.lang.String.<init>(char[], int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 16: void java.lang.String.<init>(int[], int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 17: java.lang.String java.lang.String.copyValueOf(char[])
F/art ( 4006): sart/runtime/class_linker.cc:398] 18: java.lang.String java.lang.String.copyValueOf(char[], int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 19: java.lang.StringIndexOutOfBoundsException java.lang.String.failedBoundsCheck(int, int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 20: int java.lang.String.fastIndexOf(int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 21: char java.lang.String.foldCase(char)
F/art ( 4006): sart/runtime/class_linker.cc:398] 22: java.lang.String java.lang.String.format(java.lang.String, java.lang.Object[])
F/art ( 4006): sart/runtime/class_linker.cc:398] 23: java.lang.String java.lang.String.format(java.util.Locale, java.lang.String, java.lang.Object[])
F/art ( 4006): sart/runtime/class_linker.cc:398] 24: java.lang.StringIndexOutOfBoundsException java.lang.String.indexAndLength(int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 25: int java.lang.String.indexOf(java.lang.String, java.lang.String, int, int, char)
F/art ( 4006): sart/runtime/class_linker.cc:398] 26: int java.lang.String.indexOfSupplementary(int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 27: int java.lang.String.lastIndexOfSupplementary(int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 28: java.lang.StringIndexOutOfBoundsException java.lang.String.startEndAndLength(int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 29: java.lang.String java.lang.String.valueOf(char)
F/art ( 4006): sart/runtime/class_linker.cc:398] 30: java.lang.String java.lang.String.valueOf(double)
F/art ( 4006): sart/runtime/class_linker.cc:398] 31: java.lang.String java.lang.String.valueOf(float)
F/art ( 4006): sart/runtime/class_linker.cc:398] 32: java.lang.String java.lang.String.valueOf(int)
F/art ( 4006): sart/runtime/class_linker.cc:398] 33: java.lang.String java.lang.String.valueOf(long)
F/art ( 4006): sart/runtime/class_linker.cc:398] 34: java.lang.String java.lang.String.valueOf(java.lang.Object)
F/art ( 4006): sart/runtime/class_linker.cc:398] 35: java.lang.String java.lang.String.valueOf(boolean)
F/art ( 4006): sart/runtime/class_linker.cc:398] 36: java.lang.String java.lang.String.valueOf(char[])
F/art ( 4006): sart/runtime/class_linker.cc:398] 37: java.lang.String java.lang.String.valueOf(char[], int, int)
F/art ( 4006): sart/runtime/class_linker.cc:398] static fields (4 entries):
F/art ( 4006): sart/runtime/class_linker.cc:398] 0: char[] java.lang.String.ASCII
F/art ( 4006): sart/runtime/class_linker.cc:398] 1: java.util.Comparator java.lang.String.CASE_INSENSITIVE_ORDER
F/art ( 4006): sart/runtime/class_linker.cc:398] 2: long java.lang.String.serialVersionUID
F/art ( 4006): sart/runtime/class_linker.cc:398] 3: char java.lang.String.REPLACEMENT_CHAR
F/art ( 4006): sart/runtime/class_linker.cc:398] instance fields (4 entries):
F/art ( 4006): sart/runtime/class_linker.cc:398] 0: char[] java.lang.String.value
F/art ( 4006): sart/runtime/class_linker.cc:398] 1: int java.lang.String.count
F/art ( 4006): sart/runtime/class_linker.cc:398] 2: int java.lang.String.hashCode
F/art ( 4006): sart/runtime/class_linker.cc:398] 3: int java.lang.String.offset
F/art ( 4006): sart/runtime/class_linker.cc:398]
F/art ( 4006): sart/runtime/runtime.cc:286] Runtime aborting...
F/art ( 4006): sart/runtime/runtime.cc:286] Aborting thread:
F/art ( 4006): sart/runtime/runtime.cc:286] "main" prio=5 tid=1 Runnable (still starting up)
F/art ( 4006): sart/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x0 self=0xb5007800
F/art ( 4006): sart/runtime/runtime.cc:286] | sysTid=4006 nice=0 cgrp=default sched=0/0 handle=0xb6f12ec8
F/art ( 4006): sart/runtime/runtime.cc:286] | state=R schedstat=( 1260412875 6221500 65 ) utm=107 stm=19 core=7 HZ=100
F/art ( 4006): sart/runtime/runtime.cc:286] | stack=0xbe37f000-0xbe381000 stackSize=8MB
F/art ( 4006): sart/runtime/runtime.cc:286] | held mutexes= "abort lock" "mutator lock"(shared held)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #00 pc 000045b4 /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #01 pc 00002e1d /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #02 pc 0025ba7d /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+84)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #03 pc 0023ed1b /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+162)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #04 pc 0022e579 /system/lib/libart.so (art::AbortState::DumpThread(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, art::Thread*)+32)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #05 pc 0022e7e3 /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+354)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #06 pc 0022e9db /system/lib/libart.so (art::Runtime::Abort()+82)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #07 pc 000a9395 /system/lib/libart.so (art::LogMessage::~LogMessage()+1360)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #08 pc 000e0a15 /system/lib/libart.so (art::ClassLinker::InitWithoutImage(std::__1::vector<art::DexFile const*, std::__1::allocator<art::DexFile const*> > const&)+10180)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #09 pc 00230695 /system/lib/libart.so (art::Runtime::Init(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*>, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*> > > const&, bool)+3076)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #10 pc 00231b63 /system/lib/libart.so (art::Runtime::Create(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*>, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*> > > const&, bool)+58)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #11 pc 001e4047 /system/lib/libart.so (JNI_CreateJavaVM+470)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #12 pc 0005ad93 /system/lib/libandroid_runtime.so (android::AndroidRuntime::startVm(_JavaVM**, _JNIEnv**)+2174)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #13 pc 0005b3bf /system/lib/libandroid_runtime.so (android::AndroidRuntime::start(char const*, android::Vector<android::String8> const&)+250)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #14 pc 00001655 /system/bin/app_process32 (???)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #15 pc 0000fb75 /system/lib/libc.so (__libc_init+44)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #16 pc 00001770 /system/bin/app_process32 (???)
F/art ( 4006): sart/runtime/runtime.cc:286] (no managed stack frames)
F/art ( 4006): sart/runtime/runtime.cc:286] Dumping all threads without appropriate locks held: thread list lock
F/art ( 4006): sart/runtime/runtime.cc:286] All threads:
F/art ( 4006): sart/runtime/runtime.cc:286] DALVIK THREADS (1):
F/art ( 4006): sart/runtime/runtime.cc:286] "main" prio=5 tid=1 Runnable (still starting up)
F/art ( 4006): sart/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x0 self=0xb5007800
F/art ( 4006): sart/runtime/runtime.cc:286] | sysTid=4006 nice=0 cgrp=default sched=0/0 handle=0xb6f12ec8
F/art ( 4006): sart/runtime/runtime.cc:286] | state=R schedstat=( 1277861498 6221500 68 ) utm=107 stm=20 core=7 HZ=100
F/art ( 4006): sart/runtime/runtime.cc:286] | stack=0xbe37f000-0xbe381000 stackSize=8MB
F/art ( 4006): sart/runtime/runtime.cc:286] | held mutexes= "abort lock" "mutator lock"(shared held)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #00 pc 000045b4 /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #01 pc 00002e1d /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #02 pc 0025ba7d /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+84)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #03 pc 0023ed1b /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+162)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #04 pc 00247e3d /system/lib/libart.so (art::ThreadList::DumpLocked(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+120)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #05 pc 0022e791 /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+272)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #06 pc 0022e9db /system/lib/libart.so (art::Runtime::Abort()+82)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #07 pc 000a9395 /system/lib/libart.so (art::LogMessage::~LogMessage()+1360)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #08 pc 000e0a15 /system/lib/libart.so (art::ClassLinker::InitWithoutImage(std::__1::vector<art::DexFile const*, std::__1::allocator<art::DexFile const*> > const&)+10180)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #09 pc 00230695 /system/lib/libart.so (art::Runtime::Init(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*>, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*> > > const&, bool)+3076)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #10 pc 00231b63 /system/lib/libart.so (art::Runtime::Create(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*>, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*> > > const&, bool)+58)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #11 pc 001e4047 /system/lib/libart.so (JNI_CreateJavaVM+470)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #12 pc 0005ad93 /system/lib/libandroid_runtime.so (android::AndroidRuntime::startVm(_JavaVM**, _JNIEnv**)+2174)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #13 pc 0005b3bf /system/lib/libandroid_runtime.so (android::AndroidRuntime::start(char const*, android::Vector<android::String8> const&)+250)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #14 pc 00001655 /system/bin/app_process32 (???)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #15 pc 0000fb75 /system/lib/libc.so (__libc_init+44)
F/art ( 4006): sart/runtime/runtime.cc:286] native: #16 pc 00001770 /system/bin/app_process32 (???)
F/art ( 4006): sart/runtime/runtime.cc:286] (no managed stack frames)
F/art ( 4006): sart/runtime/runtime.cc:286]
F/art ( 4006): sart/runtime/runtime.cc:286]
F/libc ( 4006): Fatal signal 6 (SIGABRT), code -6 in tid 4006 (main)
V/NatController( 4002): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 4002): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 4002): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 4002): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=0
V/NatController( 4002): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=0
V/NatController( 4002): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
V/NatController( 4002): runCmd(/system/bin/iptables -t mangle -A natctrl_mangle_FORWARD -p tcp --tcp-flags SYN SYN -j TCPMSS --clamp-mss-to-pmtu) res=0
I/DEBUG ( 3679):
I/DEBUG ( 3679): Tombstone written to: /data/tombstones/tombstone_01
I/DEBUG ( 3679): property debug.db.uid not set; NOT waiting for gdb.
I/DEBUG ( 3679): HINT: adb shell setprop debug.db.uid 100000
I/DEBUG ( 3679): HINT: adb forward tcp:5039 tcp:5039
I/ServiceManager( 3671): service 'SurfaceFlinger' died
I/ServiceManager( 3671): service 'Exynos.HWCService' died
I/ServiceManager( 3671): service 'media.wifi_display' died
E/DEBUG ( 3679): unexpected waitpid response: n=4006, status=00000009
E/DEBUG ( 3679): ptrace detach from 4006 failed: No such process
E/DEBUG ( 3679): debuggerd committing suicide to free the zombie!
I/ServiceManager( 3671): service 'media.audio_flinger' died
I/DEBUG ( 4213): debuggerd: Jun 17 2015 15:28:56
I/Netd ( 4215): Netd 1.0 starting
E/Netd ( 4215): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 4215): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 4215): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 4215): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 4215): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 4215): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 4215): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 4215): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
I/SurfaceFlinger( 4216): SurfaceFlinger is starting
I/SurfaceFlinger( 4216): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
D/libEGL ( 4216): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 4216): PLATFORM VERSION : JB-MR-2
I/mediaserver( 4217): ServiceManager: 0xb60500c0
I/AudioFlinger( 4217): Using default 3000 mSec as standby time.
I/ServiceManager( 4217): Waiting for service batterystats...
I/gralloc ( 4216): using (fd=12)
I/gralloc ( 4216): id =
I/gralloc ( 4216): xres = 1080 px
I/gralloc ( 4216): yres = 1920 px
I/gralloc ( 4216): xres_virtual = 1080 px
I/gralloc ( 4216): yres_virtual = 3840 px
I/gralloc ( 4216): bpp = 32
I/gralloc ( 4216): r = 16:8
I/gralloc ( 4216): g = 8:8
I/gralloc ( 4216): b = 0:8
I/gralloc ( 4216): width = 65 mm (422.030762 dpi)
I/gralloc ( 4216): height = 115 mm (424.069580 dpi)
I/gralloc ( 4216): refresh rate = 60.00 Hz
D/AndroidRuntime( 4219):
D/AndroidRuntime( 4219): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 4219): CheckJNI is OFF
I/art ( 4219): option[0]=-Xzygote
I/art ( 4219): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 4219): option[2]=exit
I/art ( 4219): option[3]=vfprintf
I/art ( 4219): option[4]=sensitiveThread
I/art ( 4219): option[5]=-verbose:gc
I/art ( 4219): option[6]=-Xms8m
I/art ( 4219): option[7]=-Xmx512m
I/art ( 4219): option[8]=-XX:mainThreadStackSize=24K
I/art ( 4219): option[9]=-XX:HeapGrowthLimit=128m
I/art ( 4219): option[10]=-XX:HeapMinFree=2m
I/art ( 4219): option[11]=-XX:HeapMaxFree=8m
I/art ( 4219): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 4219): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 4219): option[14]=-Xlockprofthreshold:500
I/art ( 4219): option[15]=-Ximage-compiler-option
I/art ( 4219): option[16]=--runtime-arg
I/art ( 4219): option[17]=-Ximage-compiler-option
I/art ( 4219): option[18]=-Xms64m
I/art ( 4219): option[19]=-Ximage-compiler-option
I/art ( 4219): option[20]=--runtime-arg
I/art ( 4219): option[21]=-Ximage-compiler-option
I/art ( 4219): option[22]=-Xmx64m
I/art ( 4219): option[23]=-Ximage-compiler-option
I/art ( 4219): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 4219): option[25]=-Ximage-compiler-option
I/art ( 4219): option[26]=--image-classes=preloaded-classes
I/art ( 4219): option[27]=-Xcompiler-option
I/art ( 4219): option[28]=--runtime-arg
I/art ( 4219): option[29]=-Xcompiler-option
I/art ( 4219): option[30]=-Xms64m
I/art ( 4219): option[31]=-Xcompiler-option
I/art ( 4219): option[32]=--runtime-arg
I/art ( 4219): option[33]=-Xcompiler-option
I/art ( 4219): option[34]=-Xmx512m
I/art ( 4219): option[35]=-Duser.language=es
I/art ( 4219): option[36]=-Duser.region=US
I/art ( 4219): Pruning dalvik-cache since we are generating an image and will need to recompile
W/art ( 4219): Prune Dex Cache
I/art ( 4219): Using an offset of 0xff919000 from default art base address of 0x70000000
I/art ( 4219): GenerateImage: /system/bin/dex2oat --image=/data/dalvik-cache/arm/system@[email protected] --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/core-junit.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/mms-common.jar --dex-file=/system/framework/android.policy.jar --dex-file=/system/framework/apache-xml.jar --oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --instruction-set-features=div --base=0x6f919000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes-zip=/system/framework/framework.jar --image-classes=preloaded-classes
W/art ( 4219): Prune Dex Cache
W/art ( 4219): Could not create image space with image file '/system/framework/boot.art'. Attempting to fall back to imageless running. Error was: Failed to generate image '/data/dalvik-cache/arm/system@[email protected]': Failed execv(/system/bin/dex2oat --image=/data/dalvik-cache/arm/system@[email protected] --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/core-junit.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/mms-common.jar --dex-file=/system/framework/android.policy.jar --dex-file=/system/framework/apache-xml.jar --oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --instruction-set-features=div --base=0x6f919000 --runtime-arg -Xms64
D/hwcomposer( 4216): using
D/hwcomposer( 4216): xres = 1080 px
D/hwcomposer( 4216): yres = 1920 px
D/hwcomposer( 4216): width = 65 mm (422.030000 dpi)
D/hwcomposer( 4216): height = 115 mm (424.069000 dpi)
D/hwcomposer( 4216): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 4216): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 4216): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 4216): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 4216): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 4216): open subdev device /dev/v4l-subdev2
I/hwcomposer( 4216): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 4216): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 4216): Using composer version 1.3
I/SurfaceFlinger( 4216): EGL information:
I/SurfaceFlinger( 4216): vendor : Android
I/SurfaceFlinger( 4216): version : 1.4 Android META-EGL
I/SurfaceFlinger( 4216): 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( 4216): Client API: OpenGL_ES
I/SurfaceFlinger( 4216): EGLSurface: 8-8-8-8, config=0xb6acf2ac
I/SurfaceFlinger( 4216): OpenGL ES informations:
I/SurfaceFlinger( 4216): vendor : ARM
I/SurfaceFlinger( 4216): renderer : Mali-T628
I/SurfaceFlinger( 4216): version : OpenGL ES 3.0
I/SurfaceFlinger( 4216): 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( 4216): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 4216): GL_MAX_VIEWPORT_DIMS = 8192
E/libEGL ( 4216): eglQuerySurface:658 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 4216): eglQuerySurface:658 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 4216): call to OpenGL ES API with no current context (logged once per thread)
D/SurfaceFlinger( 4216): Set power mode=2, type=0 flinger=0xb6a62000
I/hwcomposer( 4216): int exynos5_blank(hwc_composer_device_1*, int, int):: disp(0), blank(0)
I/hwcomposer( 4216): unblank ioctl failed (display already unblanked)
E/libEGL ( 4216): eglSwapBuffers:1228 error 300d (EGL_BAD_SURFACE)
F/SurfaceFlinger( 4216): eglSwapBuffers(0x1, 0x0) failed with 0x0000300d
F/libc ( 4216): Fatal signal 6 (SIGABRT), code -6 in tid 4216 (surfaceflinger)
I/DEBUG ( 4213): property debug.db.uid not set; NOT waiting for gdb.
I/DEBUG ( 4213): HINT: adb shell setprop debug.db.uid 100000
I/DEBUG ( 4213): HINT: adb forward tcp:5039 tcp:5039
I/DEBUG ( 4213): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 4213): Build fingerprint: 'samsung/cm_k3gxx/k3gxx:5.0.2/LRX22G/f6367390ba:userdebug/test-keys'
I/DEBUG ( 4213): Revision: '10'
I/DEBUG ( 4213): ABI: 'arm'
I/DEBUG ( 4213): pid: 4216, tid: 4216, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
I/DEBUG ( 4213): signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
I/DEBUG ( 4213): Abort message: 'eglSwapBuffers(0x1, 0x0) failed with 0x0000300d'
I/DEBUG ( 4213): r0 00000000 r1 00001078 r2 00000006 r3 00000000
I/DEBUG ( 4213): r4 b6fd9114 r5 00000006 r6 0000000b r7 0000010c
I/DEBUG ( 4213): r8 00000000 r9 bea2fbd0 sl b6a54210 fp bea2fbd0
I/DEBUG ( 4213): ip 00001078 sp bea2f650 lr b6f637b9 pc b6f874e4 cpsr 600f0010
I/DEBUG ( 4213):
I/DEBUG ( 4213): backtrace:
I/DEBUG ( 4213): #00 pc 000384e4 /system/lib/libc.so (tgkill+12)
I/DEBUG ( 4213): #01 pc 000147b5 /system/lib/libc.so (pthread_kill+52)
I/DEBUG ( 4213): #02 pc 0001550b /system/lib/libc.so (raise+10)
I/DEBUG ( 4213): #03 pc 00011c35 /system/lib/libc.so (__libc_android_abort+36)
I/DEBUG ( 4213): #04 pc 0000fcb8 /system/lib/libc.so (abort+4)
I/DEBUG ( 4213): #05 pc 00007739 /system/lib/libcutils.so (__android_log_assert+88)
I/DEBUG ( 4213): #06 pc 0000f4df /system/lib/libsurfaceflinger.so
I/DEBUG ( 4213): #07 pc 0001b9fd /system/lib/libsurfaceflinger.so
I/DEBUG ( 4213): #08 pc 0001abe7 /system/lib/libsurfaceflinger.so
I/DEBUG ( 4213): #09 pc 00019fc3 /system/lib/libsurfaceflinger.so
I/DEBUG ( 4213): #10 pc 00019d49 /system/lib/libsurfaceflinger.so
I/DEBUG ( 4213): #11 pc 00010ed3 /system/lib/libutils.so (android::Looper::pollInner(int)+410)
I/DEBUG ( 4213): #12 pc 00010fc5 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92)
I/DEBUG ( 4213): #13 pc 000174c5 /system/lib/libsurfaceflinger.so
I/DEBUG ( 4213): #14 pc 0001993d /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::run()+8)
I/DEBUG ( 4213): #15 pc 0000083d /system/bin/surfaceflinger
I/DEBUG ( 4213): #16 pc 0000fb75 /system/lib/libc.so (__libc_init+44)
I/DEBUG ( 4213): #17 pc 000008d8 /system/bin/surfaceflinger
I/ServiceManager( 4217): Waiting for service batterystats...
F/art ( 4219): sart/runtime/class_linker.cc:398] Check failed: java_lang_String.Get() == String_class (java_lang_String.Get()=0x12c0a400, String_class=0x12c0b400) ----- class 'Ljava/lang/String;' cl=0x0 -----
F/art ( 4219): sart/runtime/class_linker.cc:398] objectSize=640 (412 from super)
F/art ( 4219): sart/runtime/class_linker.cc:398] access=0x0000.0011
F/art ( 4219): sart/runtime/class_linker.cc:398] super='java.lang.Class<java.lang.Object>' (cl=0x0)
F/art ( 4219): sart/runtime/class_linker.cc:398] interfaces (3):
F/art ( 4219): sart/runtime/class_linker.cc:398] 0: java.lang.Class<java.io.Serializable> (cl=0x0)
F/art ( 4219): sart/runtime/class_linker.cc:398] 1: java.lang.Class<java.lang.Comparable> (cl=0x0)
F/art ( 4219): sart/runtime/class_linker.cc:398] 2: java.lang.Class<java.lang.CharSequence> (cl=0x0)
F/art ( 4219): sart/runtime/class_linker.cc:398] class not yet loaded
F/art ( 4219): sart/runtime/class_linker.cc:398]
F/art ( 4219): sart/runtime/class_linker.cc:398] ----- class 'Ljava/lang/String;' cl=0x0 -----
F/art ( 4219): sart/runtime/class_linker.cc:398] objectSize=636 (412 from super)
F/art ( 4219): sart/runtime/class_linker.cc:398] access=0x0000.0011
F/art ( 4219): sart/runtime/class_linker.cc:398] super='java.lang.Class<java.lang.Object>' (cl=0x0)
F/art ( 4219): sart/runtime/class_linker.cc:398] interfaces (3):
F/art ( 4219): sart/runtime/class_linker.cc:398] 0: java.lang.Class<java.io.Serializable> (cl=0x0)
F/art ( 4219): sart/runtime/class_linker.cc:398] 1: java.lang.Class<java.lang.Comparable> (cl=0x0)
F/art ( 4219): sart/runtime/class_linker.cc:398] 2: java.lang.Class<java.lang.CharSequence> (cl=0x0)
F/art ( 4219): sart/runtime/class_linker.cc:398] vtable (54 entries, 11 in super):
F/art ( 4219): sart/runtime/class_linker.cc:398] 0: void java.lang.String._getChars(int, int, char[], int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 1: char java.lang.String.charAt(int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 2: int java.lang.String.codePointAt(int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 3: int java.lang.String.codePointBefore(int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 4: int java.lang.String.codePointCount(int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 5: int java.lang.String.compareTo(java.lang.Object)
F/art ( 4219): sart/runtime/class_linker.cc:398] 6: int java.lang.String.compareTo(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 7: int java.lang.String.compareToIgnoreCase(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 8: java.lang.String java.lang.String.concat(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 9: boolean java.lang.String.contains(java.lang.CharSequence)
F/art ( 4219): sart/runtime/class_linker.cc:398] 10: boolean java.lang.String.contentEquals(java.lang.CharSequence)
F/art ( 4219): sart/runtime/class_linker.cc:398] 11: boolean java.lang.String.contentEquals(java.lang.StringBuffer)
F/art ( 4219): sart/runtime/class_linker.cc:398] 12: boolean java.lang.String.endsWith(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 13: boolean java.lang.String.equals(java.lang.Object)
F/art ( 4219): sart/runtime/class_linker.cc:398] 14: boolean java.lang.String.equalsIgnoreCase(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 15: void java.lang.String.getBytes(int, int, byte[], int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 16: byte[] java.lang.String.getBytes()
F/art ( 4219): sart/runtime/class_linker.cc:398] 17: byte[] java.lang.String.getBytes(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 18: byte[] java.lang.String.getBytes(java.nio.charset.Charset)
F/art ( 4219): sart/runtime/class_linker.cc:398] 19: void java.lang.String.getChars(int, int, char[], int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 20: int java.lang.String.hashCode()
F/art ( 4219): sart/runtime/class_linker.cc:398] 21: int java.lang.String.indexOf(int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 22: int java.lang.String.indexOf(int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 23: int java.lang.String.indexOf(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 24: int java.lang.String.indexOf(java.lang.String, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 25: java.lang.String java.lang.String.intern()
F/art ( 4219): sart/runtime/class_linker.cc:398] 26: boolean java.lang.String.isEmpty()
F/art ( 4219): sart/runtime/class_linker.cc:398] 27: int java.lang.String.lastIndexOf(int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 28: int java.lang.String.lastIndexOf(int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 29: int java.lang.String.lastIndexOf(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 30: int java.lang.String.lastIndexOf(java.lang.String, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 31: int java.lang.String.length()
F/art ( 4219): sart/runtime/class_linker.cc:398] 32: boolean java.lang.String.matches(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 33: int java.lang.String.offsetByCodePoints(int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 34: boolean java.lang.String.regionMatches(int, java.lang.String, int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 35: boolean java.lang.String.regionMatches(boolean, int, java.lang.String, int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 36: java.lang.String java.lang.String.replace(char, char)
F/art ( 4219): sart/runtime/class_linker.cc:398] 37: java.lang.String java.lang.String.replace(java.lang.CharSequence, java.lang.CharSequence)
F/art ( 4219): sart/runtime/class_linker.cc:398] 38: java.lang.String java.lang.String.replaceAll(java.lang.String, java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 39: java.lang.String java.lang.String.replaceFirst(java.lang.String, java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 40: java.lang.String[] java.lang.String.split(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 41: java.lang.String[] java.lang.String.split(java.lang.String, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 42: boolean java.lang.String.startsWith(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 43: boolean java.lang.String.startsWith(java.lang.String, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 44: java.lang.CharSequence java.lang.String.subSequence(int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 45: java.lang.String java.lang.String.substring(int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 46: java.lang.String java.lang.String.substring(int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 47: char[] java.lang.String.toCharArray()
F/art ( 4219): sart/runtime/class_linker.cc:398] 48: java.lang.String java.lang.String.toLowerCase()
F/art ( 4219): sart/runtime/class_linker.cc:398] 49: java.lang.String java.lang.String.toLowerCase(java.util.Locale)
F/art ( 4219): sart/runtime/class_linker.cc:398] 50: java.lang.String java.lang.String.toString()
F/art ( 4219): sart/runtime/class_linker.cc:398] 51: java.lang.String java.lang.String.toUpperCase()
F/art ( 4219): sart/runtime/class_linker.cc:398] 52: java.lang.String java.lang.String.toUpperCase(java.util.Locale)
F/art ( 4219): sart/runtime/class_linker.cc:398] 53: java.lang.String java.lang.String.trim()
F/art ( 4219): sart/runtime/class_linker.cc:398] direct methods (38 entries):
F/art ( 4219): sart/runtime/class_linker.cc:398] 0: void java.lang.String.<clinit>()
F/art ( 4219): sart/runtime/class_linker.cc:398] 1: void java.lang.String.<init>()
F/art ( 4219): sart/runtime/class_linker.cc:398] 2: void java.lang.String.<init>(int, int, char[])
F/art ( 4219): sart/runtime/class_linker.cc:398] 3: void java.lang.String.<init>(java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 4: void java.lang.String.<init>(java.lang.StringBuffer)
F/art ( 4219): sart/runtime/class_linker.cc:398] 5: void java.lang.String.<init>(java.lang.StringBuilder)
F/art ( 4219): sart/runtime/class_linker.cc:398] 6: void java.lang.String.<init>(byte[])
F/art ( 4219): sart/runtime/class_linker.cc:398] 7: void java.lang.String.<init>(byte[], int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 8: void java.lang.String.<init>(byte[], int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 9: void java.lang.String.<init>(byte[], int, int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 10: void java.lang.String.<init>(byte[], int, int, java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 11: void java.lang.String.<init>(byte[], int, int, java.nio.charset.Charset)
F/art ( 4219): sart/runtime/class_linker.cc:398] 12: void java.lang.String.<init>(byte[], java.lang.String)
F/art ( 4219): sart/runtime/class_linker.cc:398] 13: void java.lang.String.<init>(byte[], java.nio.charset.Charset)
F/art ( 4219): sart/runtime/class_linker.cc:398] 14: void java.lang.String.<init>(char[])
F/art ( 4219): sart/runtime/class_linker.cc:398] 15: void java.lang.String.<init>(char[], int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 16: void java.lang.String.<init>(int[], int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 17: java.lang.String java.lang.String.copyValueOf(char[])
F/art ( 4219): sart/runtime/class_linker.cc:398] 18: java.lang.String java.lang.String.copyValueOf(char[], int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 19: java.lang.StringIndexOutOfBoundsException java.lang.String.failedBoundsCheck(int, int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 20: int java.lang.String.fastIndexOf(int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 21: char java.lang.String.foldCase(char)
F/art ( 4219): sart/runtime/class_linker.cc:398] 22: java.lang.String java.lang.String.format(java.lang.String, java.lang.Object[])
F/art ( 4219): sart/runtime/class_linker.cc:398] 23: java.lang.String java.lang.String.format(java.util.Locale, java.lang.String, java.lang.Object[])
F/art ( 4219): sart/runtime/class_linker.cc:398] 24: java.lang.StringIndexOutOfBoundsException java.lang.String.indexAndLength(int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 25: int java.lang.String.indexOf(java.lang.String, java.lang.String, int, int, char)
F/art ( 4219): sart/runtime/class_linker.cc:398] 26: int java.lang.String.indexOfSupplementary(int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 27: int java.lang.String.lastIndexOfSupplementary(int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 28: java.lang.StringIndexOutOfBoundsException java.lang.String.startEndAndLength(int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 29: java.lang.String java.lang.String.valueOf(char)
F/art ( 4219): sart/runtime/class_linker.cc:398] 30: java.lang.String java.lang.String.valueOf(double)
F/art ( 4219): sart/runtime/class_linker.cc:398] 31: java.lang.String java.lang.String.valueOf(float)
F/art ( 4219): sart/runtime/class_linker.cc:398] 32: java.lang.String java.lang.String.valueOf(int)
F/art ( 4219): sart/runtime/class_linker.cc:398] 33: java.lang.String java.lang.String.valueOf(long)
F/art ( 4219): sart/runtime/class_linker.cc:398] 34: java.lang.String java.lang.String.valueOf(java.lang.Object)
F/art ( 4219): sart/runtime/class_linker.cc:398] 35: java.lang.String java.lang.String.valueOf(boolean)
F/art ( 4219): sart/runtime/class_linker.cc:398] 36: java.lang.String java.lang.String.valueOf(char[])
F/art ( 4219): sart/runtime/class_linker.cc:398] 37: java.lang.String java.lang.String.valueOf(char[], int, int)
F/art ( 4219): sart/runtime/class_linker.cc:398] static fields (4 entries):
F/art ( 4219): sart/runtime/class_linker.cc:398] 0: char[] java.lang.String.ASCII
F/art ( 4219): sart/runtime/class_linker.cc:398] 1: java.util.Comparator java.lang.String.CASE_INSENSITIVE_ORDER
F/art ( 4219): sart/runtime/class_linker.cc:398] 2: long java.lang.String.serialVersionUID
F/art ( 4219): sart/runtime/class_linker.cc:398] 3: char java.lang.String.REPLACEMENT_CHAR
F/art ( 4219): sart/runtime/class_linker.cc:398] instance fields (4 entries):
F/art ( 4219): sart/runtime/class_linker.cc:398] 0: char[] java.lang.String.value
F/art ( 4219): sart/runtime/class_linker.cc:398] 1: int java.lang.String.count
F/art ( 4219): sart/runtime/class_linker.cc:398] 2: int java.lang.String.hashCode
F/art ( 4219): sart/runtime/class_linker.cc:398] 3: int java.lang.String.offset
F/art ( 4219): sart/runtime/class_linker.cc:398]
F/art ( 4219): sart/runtime/runtime.cc:286] Runtime aborting...
F/art ( 4219): sart/runtime/runtime.cc:286] Aborting thread:
F/art ( 4219): sart/runtime/runtime.cc:286] "main" prio=5 tid=1 Runnable (still starting up)
F/art ( 4219): sart/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x0 self=0xb5007800
F/art ( 4219): sart/runtime/runtime.cc:286] | sysTid=4219 nice=0 cgrp=default sched=0/0 handle=0xb6f93ec8
F/art ( 4219): sart/runtime/runtime.cc:286] | state=R schedstat=( 1265981717 18345241 305 ) utm=106 stm=20 core=4 HZ=100
F/art ( 4219): sart/runtime/runtime.cc:286] | stack=0xbe7b7000-0xbe7b9000 stackSize=8MB
F/art ( 4219): sart/runtime/runtime.cc:286] | held mutexes= "abort lock" "mutator lock"(shared held)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #00 pc 000045b4 /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #01 pc 00002e1d /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #02 pc 0025ba7d /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+84)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #03 pc 0023ed1b /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+162)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #04 pc 0022e579 /system/lib/libart.so (art::AbortState::DumpThread(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, art::Thread*)+32)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #05 pc 0022e7e3 /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+354)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #06 pc 0022e9db /system/lib/libart.so (art::Runtime::Abort()+82)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #07 pc 000a9395 /system/lib/libart.so (art::LogMessage::~LogMessage()+1360)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #08 pc 000e0a15 /system/lib/libart.so (art::ClassLinker::InitWithoutImage(std::__1::vector<art::DexFile const*, std::__1::allocator<art::DexFile const*> > const&)+10180)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #09 pc 00230695 /system/lib/libart.so (art::Runtime::Init(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*>, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*> > > const&, bool)+3076)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #10 pc 00231b63 /system/lib/libart.so (art::Runtime::Create(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*>, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*> > > const&, bool)+58)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #11 pc 001e4047 /system/lib/libart.so (JNI_CreateJavaVM+470)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #12 pc 0005ad93 /system/lib/libandroid_runtime.so (android::AndroidRuntime::startVm(_JavaVM**, _JNIEnv**)+2174)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #13 pc 0005b3bf /system/lib/libandroid_runtime.so (android::AndroidRuntime::start(char const*, android::Vector<android::String8> const&)+250)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #14 pc 00001655 /system/bin/app_process32 (???)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #15 pc 0000fb75 /system/lib/libc.so (__libc_init+44)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #16 pc 00001770 /system/bin/app_process32 (???)
F/art ( 4219): sart/runtime/runtime.cc:286] (no managed stack frames)
F/art ( 4219): sart/runtime/runtime.cc:286] Dumping all threads without appropriate locks held: thread list lock
F/art ( 4219): sart/runtime/runtime.cc:286] All threads:
F/art ( 4219): sart/runtime/runtime.cc:286] DALVIK THREADS (1):
F/art ( 4219): sart/runtime/runtime.cc:286] "main" prio=5 tid=1 Runnable (still starting up)
F/art ( 4219): sart/runtime/runtime.cc:286] | group="" sCount=0 dsCount=0 obj=0x0 self=0xb5007800
F/art ( 4219): sart/runtime/runtime.cc:286] | sysTid=4219 nice=0 cgrp=default sched=0/0 handle=0xb6f93ec8
F/art ( 4219): sart/runtime/runtime.cc:286] | state=R schedstat=( 1280982426 18345241 305 ) utm=107 stm=21 core=4 HZ=100
F/art ( 4219): sart/runtime/runtime.cc:286] | stack=0xbe7b7000-0xbe7b9000 stackSize=8MB
F/art ( 4219): sart/runtime/runtime.cc:286] | held mutexes= "abort lock" "mutator lock"(shared held)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #00 pc 000045b4 /system/lib/libbacktrace_libc++.so (UnwindCurrent::Unwind(unsigned int, ucontext*)+23)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #01 pc 00002e1d /system/lib/libbacktrace_libc++.so (Backtrace::Unwind(unsigned int, ucontext*)+8)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #02 pc 0025ba7d /system/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, int, char const*, art::mirror::ArtMethod*)+84)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #03 pc 0023ed1b /system/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&) const+162)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #04 pc 00247e3d /system/lib/libart.so (art::ThreadList::DumpLocked(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+120)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #05 pc 0022e791 /system/lib/libart.so (art::AbortState::Dump(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)+272)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #06 pc 0022e9db /system/lib/libart.so (art::Runtime::Abort()+82)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #07 pc 000a9395 /system/lib/libart.so (art::LogMessage::~LogMessage()+1360)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #08 pc 000e0a15 /system/lib/libart.so (art::ClassLinker::InitWithoutImage(std::__1::vector<art::DexFile const*, std::__1::allocator<art::DexFile const*> > const&)+10180)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #09 pc 00230695 /system/lib/libart.so (art::Runtime::Init(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*>, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*> > > const&, bool)+3076)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #10 pc 00231b63 /system/lib/libart.so (art::Runtime::Create(std::__1::vector<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*>, std::__1::allocator<std::__1::pair<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void const*> > > const&, bool)+58)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #11 pc 001e4047 /system/lib/libart.so (JNI_CreateJavaVM+470)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #12 pc 0005ad93 /system/lib/libandroid_runtime.so (android::AndroidRuntime::startVm(_JavaVM**, _JNIEnv**)+2174)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #13 pc 0005b3bf /system/lib/libandroid_runtime.so (android::AndroidRuntime::start(char const*, android::Vector<android::String8> const&)+250)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #14 pc 00001655 /system/bin/app_process32 (???)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #15 pc 0000fb75 /system/lib/libc.so (__libc_init+44)
F/art ( 4219): sart/runtime/runtime.cc:286] native: #16 pc 00001770 /system/bin/app_process32 (???)
F/art ( 4219): sart/runtime/runtime.cc:286] (no managed stack frames)
F/art ( 4219): sart/runtime/runtime.cc:286]
F/art ( 4219): sart/runtime/runtime.cc:286]
F/libc ( 4219): Fatal signal 6 (SIGABRT), code -6 in tid 4219 (main)
V/NatController( 4215): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 4215): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 4215): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 4215): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=0
V/NatController( 4215): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=0
V/NatController( 4215): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
V/NatController( 4215): runCmd(/system/bin/iptables -t mangle -A natctrl_mangle_FORWARD -p tcp --tcp-flags SYN SYN -j TCPMSS --clamp-mss-to-pmtu) res=0
I/DEBUG ( 4213):
I/DEBUG ( 4213): Tombstone written to: /data/tombstones/tombstone_02
I/DEBUG ( 4213): property debug.db.uid not set; NOT waiting for gdb.
I/DEBUG ( 4213): HINT: adb shell setprop debug.db.uid 100000
I/DEBUG ( 4213): HINT: adb forward tcp:5039 tcp:5039
I/ServiceManager( 3671): service 'SurfaceFlinger' died
I/ServiceManager( 3671): service 'Exynos.HWCService' died
I/ServiceManager( 3671): service 'media.wifi_display' died
E/DEBUG ( 4213): unexpected waitpid response: n=4219, status=00000009
E/DEBUG ( 4213): ptrace detach from 4219 failed: No such process
E/DEBUG ( 4213): debuggerd committing suicide to free the zombie!
I/ServiceManager( 3671): service 'media.audio_flinger' died
I/DEBUG ( 4423): debuggerd: Jun 17 2015 15:28:56
I/Netd ( 4428): Netd 1.0 starting
E/Netd ( 4428): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 4428): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 4428): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 4428): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 4428): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 4428): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 4428): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 4428): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
I/SurfaceFlinger( 4429): SurfaceFlinger is starting
I/SurfaceFlinger( 4429): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
D/libEGL ( 4429): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 4429): PLATFORM VERSION : JB-MR-2
I/mediaserver( 4430): ServiceManager: 0xb60500c0
I/AudioFlinger( 4430): Using default 3000 mSec as standby time.
I/ServiceManager( 4430): Waiting for service batterystats...
I/gralloc ( 4429): using (fd=12)
I/gralloc ( 4429): id =
I/gralloc ( 4429): xres = 1080 px
I/gralloc ( 4429): yres = 1920 px
I/gralloc ( 4429): xres_virtual = 1080 px
I/gralloc ( 4429): yres_virtual = 3840 px
I/gralloc ( 4429): bpp = 32
I/gralloc ( 4429): r = 16:8
I/gralloc ( 4429): g = 8:8
I/gralloc ( 4429): b = 0:8
I/gralloc ( 4429): width = 65 mm (422.030762 dpi)
I/gralloc ( 4429): height = 115 mm (424.069580 dpi)
I/gralloc ( 4429): refresh rate = 60.00 Hz
D/AndroidRuntime( 4432):
D/AndroidRuntime( 4432): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 4432): CheckJNI is OFF
I/art ( 4432): option[0]=-Xzygote
I/art ( 4432): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 4432): option[2]=exit
I/art ( 4432): option[3]=vfprintf
I/art ( 4432): option[4]=sensitiveThread
I/art ( 4432): option[5]=-verbose:gc
I/art ( 4432): option[6]=-Xms8m
I/art ( 4432): option[7]=-Xmx512m
I/art ( 4432): option[8]=-XX:mainThreadStackSize=24K
I/art ( 4432): option[9]=-XX:HeapGrowthLimit=128m
I/art ( 4432): option[10]=-XX:HeapMinFree=2m
I/art ( 4432): option[11]=-XX:HeapMaxFree=8m
I/art ( 4432): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 4432): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 4432): option[14]=-Xlockprofthreshold:500
I/art ( 4432): option[15]=-Ximage-compiler-option
I/art ( 4432): option[16]=--runtime-arg
I/art ( 4432): option[17]=-Ximage-compiler-option
I/art ( 4432): option[18]=-Xms64m
I/art ( 4432): option[19]=-Ximage-compiler-option
I/art ( 4432): option[20]=--runtime-arg
I/art ( 4432): option[21]=-Ximage-compiler-option
I/art ( 4432): option[22]=-Xmx64m
I/art ( 4432): option[23]=-Ximage-compiler-option
I/art ( 4432): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 4432): option[25]=-Ximage-compiler-option
I/art ( 4432): option[26]=--image-classes=preloaded-classes
I/art ( 4432): option[27]=-Xcompiler-option
I/art ( 4432): option[28]=--runtime-arg
I/art ( 4432): option[29]=-Xcompiler-option
I/art ( 4432): option[30]=-Xms64m
I/art ( 4432): option[31]=-Xcompiler-option
I/art ( 4432): option[32]=--runtime-arg
I/art ( 4432): option[33]=-Xcompiler-option
I/art ( 4432): option[34]=-Xmx512m
I/art ( 4432): option[35]=-Duser.language=es
I/art ( 4432): option[36]=-Duser.region=US
I/art ( 4432): Pruning dalvik-cache since we are generating an image and will need to recompile
W/art ( 4432): Prune Dex Cache
I/art ( 4432): Using an offset of 0xffc9d000 from default art base address of 0x70000000
I/art ( 4432): GenerateImage: /system/bin/dex2oat --image=/data/dalvik-cache/arm/system@[email protected] --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/core-junit.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/mms-common.jar --dex-file=/system/framework/android.policy.jar --dex-file=/system/framework/apache-xml.jar --oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --instruction-set-features=div --base=0x6fc9d000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes-zip=/system/framework/framework.jar --image-classes=preloaded-classes
W/art ( 4432): Prune Dex Cache
W/art ( 4432): Could not create image space with image file '/system/framework/boot.art'. Attempting to fall back to imageless running. Error was: Failed to generate image '/data/dalvik-cache/arm/system@[email protected]': Failed execv(/system/bin/dex2oat --image=/data/dalvik-cache/arm/system@[email protected] --dex-file=/system/framework/core-libart.jar --dex-file=/system/framework/conscrypt.jar --dex-file=/system/framework/okhttp.jar --dex-file=/system/framework/core-junit.jar --dex-file=/system/framework/bouncycastle.jar --dex-file=/system/framework/ext.jar --dex-file=/system/framework/framework.jar --dex-file=/system/framework/telephony-common.jar --dex-file=/system/framework/voip-common.jar --dex-file=/system/framework/ims-common.jar --dex-file=/system/framework/mms-common.jar --dex-file=/system/framework/android.policy.jar --dex-file=/system/framework/apache-xml.jar --oat-file=/data/dalvik-cache/arm/system@[email protected] --instruction-set=arm --instruction-set-features=div --base=0x6fc9d000 --runtime-arg -Xms64
D/hwcomposer( 4429): using
D/hwcomposer( 4429): xres = 1080 px
D/hwcomposer( 4429): yres = 1920 px
D/hwcomposer( 4429): width = 65 mm (422.030000 dpi)
D/hwcomposer( 4429): height = 115 mm (424.069000 dpi)
D/hwcomposer( 4429): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 4429): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 4429): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 4429): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 4429): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 4429): open subdev device /dev/v4l-subdev2
I/hwcomposer( 4429): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 4429): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 4429): Using composer version 1.3
I/SurfaceFlinger( 4429): EGL information:
I/SurfaceFlinger( 4429): vendor : Android
I/SurfaceFlinger( 4429): version : 1.4 Android META-EGL
I/SurfaceFlinger( 4429): 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( 4429): Client API: OpenGL_ES
I/SurfaceFlinger( 4429): EGLSurface: 8-8-8-8, config=0xb6acf2ac
I/SurfaceFlinger( 4429): OpenGL ES informations:
I/SurfaceFlinger( 4429): vendor : ARM
I/SurfaceFlinger( 4429): renderer : Mali-T628
I/SurfaceFlinger( 4429): version : OpenGL ES 3.0
I/SurfaceFlinger( 4429): 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( 4429): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 4429): GL_MAX_VIEWPORT_DIMS = 8192
E/libEGL ( 4429): eglQuerySurface:658 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 4429): eglQuerySurface:658 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 4429): call to OpenGL ES API with no current context (logged once per thread)
D/SurfaceFlinger( 4429): Set power mode=2, type=0 flinger=0xb6a62000
I/hwcomposer( 4429): int exynos5_blank(hwc_composer_device_1*, int, int):: disp(0), blank(0)
I/hwcomposer( 4429): unblank ioctl failed (display already unblanked)
E/libEGL ( 4429): eglSwapBuffers:1228 error 300d (EGL_BAD_SURFACE)
F/SurfaceFlinger( 4429): eglSwapBuffers(0x1, 0x0) failed with 0x0000300d
F/libc ( 4429): Fatal signal 6 (SIGABRT), code -6 in tid 4429 (surfaceflinger)
I/DEBUG ( 4423): property debug.db.uid not set; NOT waiting for gdb.