-
Notifications
You must be signed in to change notification settings - Fork 1
/
test25.txt
2225 lines (2225 loc) · 207 KB
/
test25.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 ( 3595): type=1325 audit(0.0:2): table=filter family=2 entries=0
W/auditd ( 3595): type=1325 audit(0.0:3): table=mangle family=2 entries=0
W/auditd ( 3595): type=1325 audit(0.0:4): table=nat family=2 entries=0
W/auditd ( 3595): type=1325 audit(0.0:5): table=raw family=2 entries=0
W/auditd ( 3595): type=1325 audit(0.0:6): table=security family=2 entries=0
W/auditd ( 3595): type=1325 audit(0.0:7): table=filter family=3 entries=0
W/auditd ( 3595): type=1325 audit(0.0:8): table=filter family=10 entries=0
W/auditd ( 3595): type=1325 audit(0.0:9): table=mangle family=10 entries=0
W/auditd ( 3595): type=1325 audit(0.0:10): table=raw family=10 entries=0
I/auditd ( 3595): type=1403 audit(0.0:11): policy loaded auid=4294967295 ses=4294967295
W/auditd ( 3595): type=1404 audit(0.0:12): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
W/init ( 3536): type=1400 audit(0.0:13): avc: denied { write } for name="etc" dev="mmcblk0p18" ino=357 scontext=u:r:init:s0 tcontext=u:object_r:system_file:s0 tclass=dir
W/init ( 3536): type=1300 audit(0.0:13): arch=40000028 syscall=322 per=800000 success=no exit=-13 a0=ffffff9c a1=b6d3ba60 a2=20241 a3=1b6 items=1 ppid=1 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/init" subj=u:r:init:s0 key=(null)
W/auditd ( 3595): type=1307 audit(0.0:13): cwd="/"
W/auditd ( 3595): type=1302 audit(0.0:13): item=0 name="/etc/" inode=357 dev=103:0a mode=040755 ouid=0 ogid=2000 rdev=00:00 obj=u:object_r:system_file:s0
W/auditd ( 3595): type=1320 audit(0.0:13):
W/init ( 3536): type=1400 audit(0.0:14): avc: denied { write } for name="etc" dev="mmcblk0p18" ino=357 scontext=u:r:init:s0 tcontext=u:object_r:system_file:s0 tclass=dir
W/init ( 3536): type=1300 audit(0.0:14): arch=40000028 syscall=322 per=800000 success=no exit=-13 a0=ffffff9c a1=b6d3ba60 a2=20241 a3=1b6 items=1 ppid=1 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/init" subj=u:r:init:s0 key=(null)
W/auditd ( 3595): type=1307 audit(0.0:14): cwd="/"
W/auditd ( 3595): type=1302 audit(0.0:14): item=0 name="/etc/" inode=357 dev=103:0a mode=040755 ouid=0 ogid=2000 rdev=00:00 obj=u:object_r:system_file:s0
W/auditd ( 3595): type=1320 audit(0.0:14):
W/init ( 3536): type=1400 audit(0.0:15): avc: denied { write } for name="etc" dev="mmcblk0p18" ino=357 scontext=u:r:init:s0 tcontext=u:object_r:system_file:s0 tclass=dir
W/init ( 3536): type=1300 audit(0.0:15): arch=40000028 syscall=322 per=800000 success=no exit=-13 a0=ffffff9c a1=b6d3ba60 a2=20241 a3=1b6 items=1 ppid=1 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/init" subj=u:r:init:s0 key=(null)
W/auditd ( 3595): type=1307 audit(0.0:15): cwd="/"
W/auditd ( 3595): type=1302 audit(0.0:15): item=0 name="/etc/" inode=357 dev=103:0a mode=040755 ouid=0 ogid=2000 rdev=00:00 obj=u:object_r:system_file:s0
W/auditd ( 3595): type=1320 audit(0.0:15):
W/init ( 3536): type=1400 audit(0.0:16): avc: denied { write } for name="etc" dev="mmcblk0p18" ino=357 scontext=u:r:init:s0 tcontext=u:object_r:system_file:s0 tclass=dir
W/init ( 3536): type=1300 audit(0.0:16): arch=40000028 syscall=322 per=800000 success=no exit=-13 a0=ffffff9c a1=b6d3ba60 a2=20241 a3=1b6 items=1 ppid=1 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/init" subj=u:r:init:s0 key=(null)
W/auditd ( 3595): type=1307 audit(0.0:16): cwd="/"
W/auditd ( 3595): type=1302 audit(0.0:16): item=0 name="/etc/" inode=357 dev=103:0a mode=040755 ouid=0 ogid=2000 rdev=00:00 obj=u:object_r:system_file:s0
W/auditd ( 3595): type=1320 audit(0.0:16):
W/init ( 1): type=1400 audit(0.0:17): avc: denied { mounton } for path="/preload" dev="mmcblk0p20" ino=2 scontext=u:r:init:s0 tcontext=u:object_r:system_file:s0 tclass=dir
W/auditd ( 3595): type=1305 audit(0.0:18): audit_pid=3569 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3595): subj=u:r:logd:s0 res=1
W/auditd ( 3595): type=1305 audit(0.0:19): audit_rate_limit=20 old=0 auid=4294967295 ses=4294967295
W/auditd ( 3595): subj=u:r:logd:s0 res=1
I/cm ( 3577): | \_/ |__| |\ | | | | __ |___ |\ | |\/| | | | \
W/init ( 3584): type=1400 audit(0.0:20): avc: denied { entrypoint } for path="/system/bin/auditd" dev="mmcblk0p18" ino=173 scontext=u:r:logd:s0 tcontext=u:object_r:system_file:s0 tclass=file
W/init ( 3584): type=1300 audit(0.0:20): arch=40000028 syscall=11 per=800000 success=no exit=-13 a0=b6d80954 a1=b6d66770 a2=57e64 a3=ff0000 items=1 ppid=1 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/init" subj=u:r:init:s0 key=(null)
W/auditd ( 3595): type=1307 audit(0.0:20): cwd="/"
W/auditd ( 3595): type=1302 audit(0.0:20): item=0 name="/system/bin/auditd" inode=173 dev=103:0a mode=0100755 ouid=0 ogid=2000 rdev=00:00 obj=u:object_r:system_file:s0
W/auditd ( 3595): type=1320 audit(0.0:20):
I/lowmemorykiller( 3572): Using in-kernel low memory killer interface
I/cm ( 3583): |___ | | | | \| |__| |__] |___ | \| | | |__| |__/
--------- beginning of system
I/Vold ( 3575): Vold 2.1 (the revenge) firing up
D/Vold ( 3575): Volume sdcard1 state changing -1 (Initializing) -> 0 (No-Media)
D/Vold ( 3575): Volume usbdisk state changing -1 (Initializing) -> 0 (No-Media)
I/Cryptfs ( 3575): Check if PFE is activated on Boot
I/Netd ( 3585): Netd 1.0 starting
I/DEBUG ( 3586): debuggerd: Jun 17 2015 15:28:56
E/Netd ( 3585): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 3585): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 3585): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 3585): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 3585): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 3585): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 3585): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 3585): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
E/Cryptfs ( 3575): Bad magic for real block device /dev/block/platform/12200000.dwmmc0/by-name/USERDATA
E/Cryptfs ( 3575): Error getting crypt footer and key
I/installd( 3590): installd firing up
E/sdcard ( 3596): usage: sdcard [OPTIONS] <source_path> <dest_path>
E/sdcard ( 3596): -u: specify UID to run as
E/sdcard ( 3596): -g: specify GID to run as
E/sdcard ( 3596): -w: specify GID required to write (default sdcard_rw, requires -d or -l)
E/sdcard ( 3596): -t: specify number of threads to use (default 2)
E/sdcard ( 3596): -d: derive file permissions based on path
E/sdcard ( 3596): -l: derive file permissions based on legacy internal layout
E/sdcard ( 3596): -s: split derived permissions for pics, av
E/sdcard ( 3596):
E/sdcard ( 3597): usage: sdcard [OPTIONS] <source_path> <dest_path>
E/sdcard ( 3597): -u: specify UID to run as
E/sdcard ( 3597): -g: specify GID to run as
E/sdcard ( 3597): -w: specify GID required to write (default sdcard_rw, requires -d or -l)
E/sdcard ( 3597): -t: specify number of threads to use (default 2)
E/sdcard ( 3597): -d: derive file permissions based on path
E/sdcard ( 3597): -l: derive file permissions based on legacy internal layout
E/sdcard ( 3597): -s: split derived permissions for pics, av
E/sdcard ( 3597):
I/SurfaceFlinger( 3576): SurfaceFlinger is starting
I/SurfaceFlinger( 3576): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
I/cm ( 3608): Welcome to Android 5.0.2 / CyanogenMod-12-20150624-UNOFFICIAL-k3gxx
W/auditd ( 3595): type=1325 audit(0.0:21): table=filter family=2 entries=4
W/iptables( 3671): type=1300 audit(0.0:21): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c29100 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:21):
W/auditd ( 3595): type=1325 audit(0.0:22): table=filter family=10 entries=4
W/ip6tables( 3672): type=1300 audit(0.0:22): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c2b400 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:22):
W/auditd ( 3595): type=1325 audit(0.0:23): table=filter family=2 entries=6
W/iptables( 3673): type=1300 audit(0.0:23): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c23100 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:23):
W/auditd ( 3595): type=1325 audit(0.0:24): table=filter family=10 entries=6
W/ip6tables( 3674): type=1300 audit(0.0:24): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c36600 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:24):
W/auditd ( 3595): type=1325 audit(0.0:25): table=filter family=2 entries=7
W/iptables( 3681): type=1300 audit(0.0:25): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c30400 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:25):
W/auditd ( 3595): type=1325 audit(0.0:26): table=filter family=10 entries=7
W/ip6tables( 3682): type=1300 audit(0.0:26): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c32800 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:26):
W/auditd ( 3595): type=1325 audit(0.0:27): table=filter family=2 entries=9
W/iptables( 3683): type=1300 audit(0.0:27): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c33600 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:27):
W/auditd ( 3595): type=1325 audit(0.0:28): table=filter family=10 entries=9
W/ip6tables( 3684): type=1300 audit(0.0:28): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c47800 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:28):
I/mediaserver( 3589): ServiceManager: 0xb60500c0
I/AudioFlinger( 3589): Using default 3000 mSec as standby time.
W/auditd ( 3595): type=1325 audit(0.0:29): table=filter family=2 entries=10
W/iptables( 3691): type=1300 audit(0.0:29): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c31800 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:29):
I/ServiceManager( 3589): Waiting for service batterystats...
W/auditd ( 3595): type=1325 audit(0.0:30): table=filter family=10 entries=10
W/ip6tables( 3692): type=1300 audit(0.0:30): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c42c00 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:30):
W/auditd ( 3595): type=1325 audit(0.0:31): table=filter family=2 entries=12
W/iptables( 3693): type=1300 audit(0.0:31): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c44800 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:31):
W/auditd ( 3595): type=1325 audit(0.0:32): table=filter family=10 entries=12
D/libEGL ( 3576): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 3576): PLATFORM VERSION : JB-MR-2
I/gralloc ( 3576): using (fd=12)
I/gralloc ( 3576): id =
I/gralloc ( 3576): xres = 1080 px
I/gralloc ( 3576): yres = 1920 px
I/gralloc ( 3576): xres_virtual = 1080 px
I/gralloc ( 3576): yres_virtual = 3840 px
I/gralloc ( 3576): bpp = 32
I/gralloc ( 3576): r = 16:8
I/gralloc ( 3576): g = 8:8
I/gralloc ( 3576): b = 0:8
I/gralloc ( 3576): width = 65 mm (422.030762 dpi)
I/gralloc ( 3576): height = 115 mm (424.069580 dpi)
I/gralloc ( 3576): refresh rate = 60.00 Hz
D/WVMDrmPlugIn( 3588): WVMDrmPlugin::onGetSupportInfo : 0
D/AndroidRuntime( 3593):
D/AndroidRuntime( 3593): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 3593): CheckJNI is OFF
I/art ( 3593): option[0]=-Xzygote
I/art ( 3593): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 3593): option[2]=exit
I/art ( 3593): option[3]=vfprintf
I/art ( 3593): option[4]=sensitiveThread
I/art ( 3593): option[5]=-verbose:gc
I/art ( 3593): option[6]=-Xms8m
I/art ( 3593): option[7]=-Xmx512m
I/art ( 3593): option[8]=-XX:mainThreadStackSize=24K
I/art ( 3593): option[9]=-XX:HeapGrowthLimit=128m
I/art ( 3593): option[10]=-XX:HeapMinFree=2m
I/art ( 3593): option[11]=-XX:HeapMaxFree=8m
I/art ( 3593): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 3593): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 3593): option[14]=-Xlockprofthreshold:500
I/art ( 3593): option[15]=-Ximage-compiler-option
I/art ( 3593): option[16]=--runtime-arg
I/art ( 3593): option[17]=-Ximage-compiler-option
I/art ( 3593): option[18]=-Xms64m
I/art ( 3593): option[19]=-Ximage-compiler-option
I/art ( 3593): option[20]=--runtime-arg
I/art ( 3593): option[21]=-Ximage-compiler-option
I/art ( 3593): option[22]=-Xmx64m
I/art ( 3593): option[23]=-Ximage-compiler-option
I/art ( 3593): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 3593): option[25]=-Ximage-compiler-option
I/art ( 3593): option[26]=--image-classes=preloaded-classes
I/art ( 3593): option[27]=-Xcompiler-option
I/art ( 3593): option[28]=--runtime-arg
I/art ( 3593): option[29]=-Xcompiler-option
I/art ( 3593): option[30]=-Xms64m
I/art ( 3593): option[31]=-Xcompiler-option
I/art ( 3593): option[32]=--runtime-arg
I/art ( 3593): option[33]=-Xcompiler-option
I/art ( 3593): option[34]=-Xmx512m
I/art ( 3593): option[35]=-Duser.language=es
I/art ( 3593): option[36]=-Duser.region=US
I/art ( 3593): Pruning dalvik-cache since we are generating an image and will need to recompile
W/art ( 3593): Unexpected file type of
W/art ( 3593): encountered.
I/art ( 3593): Using an offset of 0x494000 from default art base address of 0x70000000
I/art ( 3593): 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=0x70494000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes-zip=/system/framework/framework.jar --image-classes=preloaded-classes
D/hwcomposer( 3576): using
D/hwcomposer( 3576): xres = 1080 px
D/hwcomposer( 3576): yres = 1920 px
D/hwcomposer( 3576): width = 65 mm (422.030000 dpi)
D/hwcomposer( 3576): height = 115 mm (424.069000 dpi)
D/hwcomposer( 3576): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 3576): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 3576): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 3576): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3576): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3576): open subdev device /dev/v4l-subdev2
I/hwcomposer( 3576): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 3576): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 3576): Using composer version 1.3
I/SurfaceFlinger( 3576): EGL information:
I/SurfaceFlinger( 3576): vendor : Android
I/SurfaceFlinger( 3576): version : 1.4 Android META-EGL
I/SurfaceFlinger( 3576): 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( 3576): Client API: OpenGL_ES
I/SurfaceFlinger( 3576): EGLSurface: 8-8-8-8, config=0xb6acf2ac
I/SurfaceFlinger( 3576): OpenGL ES informations:
I/SurfaceFlinger( 3576): vendor : ARM
I/SurfaceFlinger( 3576): renderer : Mali-T628
I/SurfaceFlinger( 3576): version : OpenGL ES 3.0
I/SurfaceFlinger( 3576): 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( 3576): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 3576): GL_MAX_VIEWPORT_DIMS = 8192
E/libEGL ( 3576): eglQuerySurface:607 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 3576): eglQuerySurface:607 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 3576): call to OpenGL ES API with no current context (logged once per thread)
D/SurfaceFlinger( 3576): Set power mode=2, type=0 flinger=0xb6a62000
I/hwcomposer( 3576): int exynos5_blank(hwc_composer_device_1*, int, int):: disp(0), blank(0)
I/hwcomposer( 3576): unblank ioctl failed (display already unblanked)
W/art ( 3593): Unexpected file type of
W/art ( 3593): encountered.
W/art ( 3593): 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=0x70494000 --runtime-arg -Xms64
E/libEGL ( 3576): eglSwapBuffers:1071 error 300d (EGL_BAD_SURFACE)
F/SurfaceFlinger( 3576): eglSwapBuffers(0x1, 0x0) failed with 0x0000300d
--------- beginning of crash
F/libc ( 3576): Fatal signal 6 (SIGABRT), code -6 in tid 3576 (surfaceflinger)
I/DEBUG ( 3586): property debug.db.uid not set; NOT waiting for gdb.
I/DEBUG ( 3586): HINT: adb shell setprop debug.db.uid 100000
I/DEBUG ( 3586): HINT: adb forward tcp:5039 tcp:5039
I/DEBUG ( 3586): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 3586): Build fingerprint: 'samsung/cm_k3gxx/k3gxx:5.0.2/LRX22G/8900861058:userdebug/test-keys'
I/DEBUG ( 3586): Revision: '10'
I/DEBUG ( 3586): ABI: 'arm'
I/DEBUG ( 3586): pid: 3576, tid: 3576, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
I/DEBUG ( 3586): signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
I/DEBUG ( 3586): Abort message: 'eglSwapBuffers(0x1, 0x0) failed with 0x0000300d'
I/DEBUG ( 3586): r0 00000000 r1 00000df8 r2 00000006 r3 00000000
I/DEBUG ( 3586): r4 b6f8d114 r5 00000006 r6 0000000b r7 0000010c
I/DEBUG ( 3586): r8 00000000 r9 bebcebd0 sl b6a54210 fp bebcebd0
I/DEBUG ( 3586): ip 00000df8 sp bebce650 lr b6f177b9 pc b6f3b4e4 cpsr 600f0010
I/DEBUG ( 3586):
I/DEBUG ( 3586): backtrace:
I/DEBUG ( 3586): #00 pc 000384e4 /system/lib/libc.so (tgkill+12)
I/DEBUG ( 3586): #01 pc 000147b5 /system/lib/libc.so (pthread_kill+52)
I/DEBUG ( 3586): #02 pc 0001550b /system/lib/libc.so (raise+10)
I/DEBUG ( 3586): #03 pc 00011c35 /system/lib/libc.so (__libc_android_abort+36)
I/DEBUG ( 3586): #04 pc 0000fcb8 /system/lib/libc.so (abort+4)
I/DEBUG ( 3586): #05 pc 00007739 /system/lib/libcutils.so (__android_log_assert+88)
I/DEBUG ( 3586): #06 pc 0000f4df /system/lib/libsurfaceflinger.so
I/DEBUG ( 3586): #07 pc 0001b9fd /system/lib/libsurfaceflinger.so
I/DEBUG ( 3586): #08 pc 0001abe7 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3586): #09 pc 00019fc3 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3586): #10 pc 00019d49 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3586): #11 pc 00010ed3 /system/lib/libutils.so (android::Looper::pollInner(int)+410)
I/DEBUG ( 3586): #12 pc 00010fc5 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92)
I/DEBUG ( 3586): #13 pc 000174c5 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3586): #14 pc 0001993d /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::run()+8)
I/DEBUG ( 3586): #15 pc 0000083d /system/bin/surfaceflinger
I/DEBUG ( 3586): #16 pc 0000fb75 /system/lib/libc.so (__libc_init+44)
I/DEBUG ( 3586): #17 pc 000008d8 /system/bin/surfaceflinger
W/auditd ( 3595): type=1325 audit(0.0:93): table=mangle family=10 entries=9
W/ip6tables( 3831): type=1300 audit(0.0:93): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c42800 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:93):
W/auditd ( 3595): type=1325 audit(0.0:94): table=mangle family=2 entries=11
W/iptables( 3832): type=1300 audit(0.0:94): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c34800 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:94):
W/auditd ( 3595): type=1325 audit(0.0:95): table=mangle family=10 entries=11
W/ip6tables( 3833): type=1300 audit(0.0:95): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c47c00 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:95):
W/auditd ( 3595): type=1325 audit(0.0:96): table=mangle family=2 entries=12
W/iptables( 3837): type=1300 audit(0.0:96): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c41800 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:96):
W/auditd ( 3595): type=1325 audit(0.0:97): table=mangle family=2 entries=14
W/iptables( 3838): type=1300 audit(0.0:97): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c1c200 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:97):
I/ServiceManager( 3589): Waiting for service batterystats...
W/auditd ( 3595): type=1325 audit(0.0:98): table=nat family=2 entries=5
W/iptables( 3842): type=1300 audit(0.0:98): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c2a100 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:98):
W/auditd ( 3595): type=1325 audit(0.0:99): table=nat family=2 entries=7
W/iptables( 3843): type=1300 audit(0.0:99): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c33400 items=0 ppid=3585 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
V/NatController( 3585): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 3585): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 3585): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 3585): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=1
V/NatController( 3585): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=1
V/NatController( 3585): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
V/NatController( 3585): 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 ( 3586):
I/DEBUG ( 3586): Tombstone written to: /data/tombstones/tombstone_09
F/libc ( 3767): Fatal signal 11 (SIGSEGV), code 1, fault addr 0x0 in tid 3901 (BootAnimation)
I/DEBUG ( 3586): property debug.db.uid not set; NOT waiting for gdb.
I/DEBUG ( 3586): HINT: adb shell setprop debug.db.uid 100000
I/DEBUG ( 3586): HINT: adb forward tcp:5039 tcp:5039
W/SurfaceComposerClient( 3767): ComposerService remote (surfaceflinger) died [0xb63591c0]
I/ServiceManager( 3574): service 'SurfaceFlinger' died
D/BootAnimation( 3767): SurfaceFlinger died, exiting...
I/ServiceManager( 3574): service 'Exynos.HWCService' died
I/ServiceManager( 3574): service 'media.wifi_display' died
I/ServiceManager( 3574): service 'media.audio_flinger' died
E/DEBUG ( 3586): unexpected waitpid response: n=3901, status=00000009
E/DEBUG ( 3586): ptrace detach from 3901 failed: No such process
E/DEBUG ( 3586): debuggerd committing suicide to free the zombie!
W/init ( 3907): type=1400 audit(0.0:142): avc: denied { entrypoint } for path="/system/bin/auditd" dev="mmcblk0p18" ino=173 scontext=u:r:logd:s0 tcontext=u:object_r:system_file:s0 tclass=file
W/init ( 3907): type=1300 audit(0.0:142): arch=40000028 syscall=11 per=800000 success=no exit=-13 a0=b6d80954 a1=b6d66770 a2=57e64 a3=ff0000 items=1 ppid=1 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/init" subj=u:r:init:s0 key=(null)
W/auditd ( 3595): type=1307 audit(0.0:142): cwd="/"
W/auditd ( 3595): type=1302 audit(0.0:142): item=0 name="/system/bin/auditd" inode=173 dev=103:0a mode=0100755 ouid=0 ogid=2000 rdev=00:00 obj=u:object_r:system_file:s0
W/auditd ( 3595): type=1320 audit(0.0:142):
I/Netd ( 3908): Netd 1.0 starting
I/DEBUG ( 3909): debuggerd: Jun 17 2015 15:28:56
E/Netd ( 3908): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 3908): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 3908): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 3908): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 3908): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 3908): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 3908): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 3908): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
W/auditd ( 3595): type=1325 audit(0.0:143): table=filter family=2 entries=41
W/iptables( 3915): type=1300 audit(0.0:143): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c29000 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:143):
I/SurfaceFlinger( 3911): SurfaceFlinger is starting
W/auditd ( 3595): type=1325 audit(0.0:144): table=filter family=10 entries=37
W/ip6tables( 3916): type=1300 audit(0.0:144): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c28000 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:144):
I/SurfaceFlinger( 3911): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
W/auditd ( 3595): type=1325 audit(0.0:145): table=filter family=2 entries=40
W/iptables( 3920): type=1300 audit(0.0:145): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c26000 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:145):
W/auditd ( 3595): type=1325 audit(0.0:146): table=filter family=10 entries=36
W/ip6tables( 3921): type=1300 audit(0.0:146): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c23000 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:146):
W/auditd ( 3595): type=1325 audit(0.0:147): table=filter family=2 entries=39
W/iptables( 3923): type=1300 audit(0.0:147): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c22000 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:147):
D/libEGL ( 3911): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 3911): PLATFORM VERSION : JB-MR-2
I/mediaserver( 3912): ServiceManager: 0xb60500c0
I/AudioFlinger( 3912): Using default 3000 mSec as standby time.
I/ServiceManager( 3912): Waiting for service batterystats...
I/gralloc ( 3911): using (fd=12)
I/gralloc ( 3911): id =
I/gralloc ( 3911): xres = 1080 px
I/gralloc ( 3911): yres = 1920 px
I/gralloc ( 3911): xres_virtual = 1080 px
I/gralloc ( 3911): yres_virtual = 3840 px
I/gralloc ( 3911): bpp = 32
I/gralloc ( 3911): r = 16:8
I/gralloc ( 3911): g = 8:8
I/gralloc ( 3911): b = 0:8
I/gralloc ( 3911): width = 65 mm (422.030762 dpi)
I/gralloc ( 3911): height = 115 mm (424.069580 dpi)
I/gralloc ( 3911): refresh rate = 60.00 Hz
D/AndroidRuntime( 3914):
D/AndroidRuntime( 3914): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 3914): CheckJNI is OFF
I/art ( 3914): option[0]=-Xzygote
I/art ( 3914): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 3914): option[2]=exit
I/art ( 3914): option[3]=vfprintf
I/art ( 3914): option[4]=sensitiveThread
I/art ( 3914): option[5]=-verbose:gc
I/art ( 3914): option[6]=-Xms8m
I/art ( 3914): option[7]=-Xmx512m
I/art ( 3914): option[8]=-XX:mainThreadStackSize=24K
I/art ( 3914): option[9]=-XX:HeapGrowthLimit=128m
I/art ( 3914): option[10]=-XX:HeapMinFree=2m
I/art ( 3914): option[11]=-XX:HeapMaxFree=8m
I/art ( 3914): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 3914): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 3914): option[14]=-Xlockprofthreshold:500
I/art ( 3914): option[15]=-Ximage-compiler-option
I/art ( 3914): option[16]=--runtime-arg
I/art ( 3914): option[17]=-Ximage-compiler-option
I/art ( 3914): option[18]=-Xms64m
I/art ( 3914): option[19]=-Ximage-compiler-option
I/art ( 3914): option[20]=--runtime-arg
I/art ( 3914): option[21]=-Ximage-compiler-option
I/art ( 3914): option[22]=-Xmx64m
I/art ( 3914): option[23]=-Ximage-compiler-option
I/art ( 3914): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 3914): option[25]=-Ximage-compiler-option
I/art ( 3914): option[26]=--image-classes=preloaded-classes
I/art ( 3914): option[27]=-Xcompiler-option
I/art ( 3914): option[28]=--runtime-arg
I/art ( 3914): option[29]=-Xcompiler-option
I/art ( 3914): option[30]=-Xms64m
I/art ( 3914): option[31]=-Xcompiler-option
I/art ( 3914): option[32]=--runtime-arg
I/art ( 3914): option[33]=-Xcompiler-option
I/art ( 3914): option[34]=-Xmx512m
I/art ( 3914): option[35]=-Duser.language=es
I/art ( 3914): option[36]=-Duser.region=US
I/art ( 3914): Pruning dalvik-cache since we are generating an image and will need to recompile
W/art ( 3914): Unexpected file type of
W/art ( 3914): encountered.
I/art ( 3914): Using an offset of 0x5d8000 from default art base address of 0x70000000
I/art ( 3914): 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=0x705d8000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes-zip=/system/framework/framework.jar --image-classes=preloaded-classes
W/art ( 3914): Unexpected file type of
W/art ( 3914): encountered.
W/art ( 3914): 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=0x705d8000 --runtime-arg -Xms64
D/hwcomposer( 3911): using
D/hwcomposer( 3911): xres = 1080 px
D/hwcomposer( 3911): yres = 1920 px
D/hwcomposer( 3911): width = 65 mm (422.030000 dpi)
D/hwcomposer( 3911): height = 115 mm (424.069000 dpi)
D/hwcomposer( 3911): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 3911): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 3911): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 3911): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3911): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 3911): open subdev device /dev/v4l-subdev2
I/hwcomposer( 3911): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 3911): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 3911): Using composer version 1.3
I/SurfaceFlinger( 3911): EGL information:
I/SurfaceFlinger( 3911): vendor : Android
I/SurfaceFlinger( 3911): version : 1.4 Android META-EGL
I/SurfaceFlinger( 3911): 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( 3911): Client API: OpenGL_ES
I/SurfaceFlinger( 3911): EGLSurface: 8-8-8-8, config=0xb6acf2ac
I/SurfaceFlinger( 3911): OpenGL ES informations:
I/SurfaceFlinger( 3911): vendor : ARM
I/SurfaceFlinger( 3911): renderer : Mali-T628
I/SurfaceFlinger( 3911): version : OpenGL ES 3.0
I/SurfaceFlinger( 3911): 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( 3911): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 3911): GL_MAX_VIEWPORT_DIMS = 8192
E/libEGL ( 3911): eglQuerySurface:607 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 3911): eglQuerySurface:607 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 3911): call to OpenGL ES API with no current context (logged once per thread)
D/SurfaceFlinger( 3911): Set power mode=2, type=0 flinger=0xb6a62000
I/hwcomposer( 3911): int exynos5_blank(hwc_composer_device_1*, int, int):: disp(0), blank(0)
I/hwcomposer( 3911): unblank ioctl failed (display already unblanked)
E/libEGL ( 3911): eglSwapBuffers:1071 error 300d (EGL_BAD_SURFACE)
F/SurfaceFlinger( 3911): eglSwapBuffers(0x1, 0x0) failed with 0x0000300d
F/libc ( 3911): Fatal signal 6 (SIGABRT), code -6 in tid 3911 (surfaceflinger)
I/DEBUG ( 3909): property debug.db.uid not set; NOT waiting for gdb.
I/DEBUG ( 3909): HINT: adb shell setprop debug.db.uid 100000
I/DEBUG ( 3909): HINT: adb forward tcp:5039 tcp:5039
I/DEBUG ( 3909): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 3909): Build fingerprint: 'samsung/cm_k3gxx/k3gxx:5.0.2/LRX22G/8900861058:userdebug/test-keys'
I/DEBUG ( 3909): Revision: '10'
I/DEBUG ( 3909): ABI: 'arm'
I/DEBUG ( 3909): pid: 3911, tid: 3911, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
I/DEBUG ( 3909): signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
I/DEBUG ( 3909): Abort message: 'eglSwapBuffers(0x1, 0x0) failed with 0x0000300d'
I/DEBUG ( 3909): r0 00000000 r1 00000f47 r2 00000006 r3 00000000
I/DEBUG ( 3909): r4 b6f5b114 r5 00000006 r6 0000000b r7 0000010c
I/DEBUG ( 3909): r8 00000000 r9 bea3fbd0 sl b6a54210 fp bea3fbd0
I/DEBUG ( 3909): ip 00000f47 sp bea3f650 lr b6ee57b9 pc b6f094e4 cpsr 600f0010
I/DEBUG ( 3909):
I/DEBUG ( 3909): backtrace:
I/DEBUG ( 3909): #00 pc 000384e4 /system/lib/libc.so (tgkill+12)
I/DEBUG ( 3909): #01 pc 000147b5 /system/lib/libc.so (pthread_kill+52)
I/DEBUG ( 3909): #02 pc 0001550b /system/lib/libc.so (raise+10)
I/DEBUG ( 3909): #03 pc 00011c35 /system/lib/libc.so (__libc_android_abort+36)
I/DEBUG ( 3909): #04 pc 0000fcb8 /system/lib/libc.so (abort+4)
I/DEBUG ( 3909): #05 pc 00007739 /system/lib/libcutils.so (__android_log_assert+88)
I/DEBUG ( 3909): #06 pc 0000f4df /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #07 pc 0001b9fd /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #08 pc 0001abe7 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #09 pc 00019fc3 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #10 pc 00019d49 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #11 pc 00010ed3 /system/lib/libutils.so (android::Looper::pollInner(int)+410)
I/DEBUG ( 3909): #12 pc 00010fc5 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92)
I/DEBUG ( 3909): #13 pc 000174c5 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #14 pc 0001993d /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::run()+8)
I/DEBUG ( 3909): #15 pc 0000083d /system/bin/surfaceflinger
I/DEBUG ( 3909): #16 pc 0000fb75 /system/lib/libc.so (__libc_init+44)
I/DEBUG ( 3909): #17 pc 000008d8 /system/bin/surfaceflinger
W/auditd ( 3595): type=1325 audit(0.0:272): table=raw family=2 entries=6
W/iptables( 4062): type=1300 audit(0.0:272): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c20400 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:272):
W/auditd ( 3595): type=1325 audit(0.0:273): table=raw family=10 entries=6
W/ip6tables( 4063): type=1300 audit(0.0:273): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c31800 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:273):
W/auditd ( 3595): type=1325 audit(0.0:274): table=raw family=2 entries=8
W/iptables( 4064): type=1300 audit(0.0:274): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c1ba00 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:274):
W/auditd ( 3595): type=1325 audit(0.0:275): table=raw family=10 entries=8
W/ip6tables( 4065): type=1300 audit(0.0:275): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c37800 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:275):
W/auditd ( 3595): type=1325 audit(0.0:276): table=mangle family=2 entries=16
W/iptables( 4066): type=1300 audit(0.0:276): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c48800 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:276):
W/auditd ( 3595): type=1325 audit(0.0:277): table=mangle family=10 entries=12
W/ip6tables( 4067): type=1300 audit(0.0:277): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c47800 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:277):
W/auditd ( 3595): type=1325 audit(0.0:278): table=mangle family=2 entries=15
W/iptables( 4068): type=1300 audit(0.0:278): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c1c200 items=0 ppid=3908 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
I/ServiceManager( 3912): Waiting for service batterystats...
V/NatController( 3908): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 3908): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 3908): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 3908): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=0
V/NatController( 3908): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=0
V/NatController( 3908): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
I/DEBUG ( 3909):
I/DEBUG ( 3909): Tombstone written to: /data/tombstones/tombstone_00
V/NatController( 3908): 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/ServiceManager( 3574): service 'SurfaceFlinger' died
I/ServiceManager( 3574): service 'Exynos.HWCService' died
I/ServiceManager( 3574): service 'media.wifi_display' died
W/SurfaceComposerClient( 3981): ComposerService remote (surfaceflinger) died [0xb63591c0]
E/BootAnimation( 3981): linkToComposerDeath failed (Broken pipe)
I/ServiceManager( 3574): service 'media.audio_flinger' died
W/init ( 4116): type=1400 audit(0.0:322): avc: denied { entrypoint } for path="/system/bin/auditd" dev="mmcblk0p18" ino=173 scontext=u:r:logd:s0 tcontext=u:object_r:system_file:s0 tclass=file
W/init ( 4116): type=1300 audit(0.0:322): arch=40000028 syscall=11 per=800000 success=no exit=-13 a0=b6d80954 a1=b6d66770 a2=57e64 a3=ff0000 items=1 ppid=1 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/init" subj=u:r:init:s0 key=(null)
W/auditd ( 3595): type=1307 audit(0.0:322): cwd="/"
W/auditd ( 3595): type=1302 audit(0.0:322): item=0 name="/system/bin/auditd" inode=173 dev=103:0a mode=0100755 ouid=0 ogid=2000 rdev=00:00 obj=u:object_r:system_file:s0
W/auditd ( 3595): type=1320 audit(0.0:322):
I/Netd ( 4117): Netd 1.0 starting
E/Netd ( 4117): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 4117): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 4117): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 4117): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 4117): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 4117): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 4117): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 4117): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
I/SurfaceFlinger( 4119): SurfaceFlinger is starting
I/SurfaceFlinger( 4119): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
W/auditd ( 3595): type=1325 audit(0.0:323): table=filter family=2 entries=40
W/iptables( 4125): type=1300 audit(0.0:323): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c25000 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:323):
W/auditd ( 3595): type=1325 audit(0.0:324): table=filter family=10 entries=37
W/ip6tables( 4127): type=1300 audit(0.0:324): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c28000 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:324):
W/auditd ( 3595): type=1325 audit(0.0:325): table=filter family=2 entries=39
W/iptables( 4129): type=1300 audit(0.0:325): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c22000 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:325):
D/libEGL ( 4119): loaded /vendor/lib/egl/libGLES_mali.so
W/auditd ( 3595): type=1325 audit(0.0:326): table=filter family=10 entries=36
W/ip6tables( 4130): type=1300 audit(0.0:326): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c23000 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:326):
I/ ( 4119): PLATFORM VERSION : JB-MR-2
W/auditd ( 3595): type=1325 audit(0.0:327): table=filter family=2 entries=39
W/iptables( 4143): type=1300 audit(0.0:327): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c22000 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:327):
D/AndroidRuntime( 4122):
D/AndroidRuntime( 4122): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 4122): CheckJNI is OFF
I/art ( 4122): option[0]=-Xzygote
I/art ( 4122): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 4122): option[2]=exit
I/art ( 4122): option[3]=vfprintf
I/art ( 4122): option[4]=sensitiveThread
I/art ( 4122): option[5]=-verbose:gc
I/art ( 4122): option[6]=-Xms8m
I/art ( 4122): option[7]=-Xmx512m
I/art ( 4122): option[8]=-XX:mainThreadStackSize=24K
I/art ( 4122): option[9]=-XX:HeapGrowthLimit=128m
I/art ( 4122): option[10]=-XX:HeapMinFree=2m
I/art ( 4122): option[11]=-XX:HeapMaxFree=8m
I/art ( 4122): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 4122): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 4122): option[14]=-Xlockprofthreshold:500
I/art ( 4122): option[15]=-Ximage-compiler-option
I/art ( 4122): option[16]=--runtime-arg
I/art ( 4122): option[17]=-Ximage-compiler-option
I/art ( 4122): option[18]=-Xms64m
I/art ( 4122): option[19]=-Ximage-compiler-option
I/art ( 4122): option[20]=--runtime-arg
I/art ( 4122): option[21]=-Ximage-compiler-option
I/art ( 4122): option[22]=-Xmx64m
I/art ( 4122): option[23]=-Ximage-compiler-option
I/art ( 4122): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 4122): option[25]=-Ximage-compiler-option
I/art ( 4122): option[26]=--image-classes=preloaded-classes
I/art ( 4122): option[27]=-Xcompiler-option
I/art ( 4122): option[28]=--runtime-arg
I/art ( 4122): option[29]=-Xcompiler-option
I/art ( 4122): option[30]=-Xms64m
I/art ( 4122): option[31]=-Xcompiler-option
I/art ( 4122): option[32]=--runtime-arg
I/art ( 4122): option[33]=-Xcompiler-option
I/art ( 4122): option[34]=-Xmx512m
I/art ( 4122): option[35]=-Duser.language=es
I/art ( 4122): option[36]=-Duser.region=US
I/art ( 4122): Pruning dalvik-cache since we are generating an image and will need to recompile
W/art ( 4122): Unexpected file type of
W/art ( 4122): encountered.
I/art ( 4122): Using an offset of 0x2eb000 from default art base address of 0x70000000
I/art ( 4122): 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=0x702eb000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes-zip=/system/framework/framework.jar --image-classes=preloaded-classes
I/mediaserver( 4120): ServiceManager: 0xb60500c0
I/AudioFlinger( 4120): Using default 3000 mSec as standby time.
I/ServiceManager( 4120): Waiting for service batterystats...
I/gralloc ( 4119): using (fd=12)
I/gralloc ( 4119): id =
I/gralloc ( 4119): xres = 1080 px
I/gralloc ( 4119): yres = 1920 px
I/gralloc ( 4119): xres_virtual = 1080 px
I/gralloc ( 4119): yres_virtual = 3840 px
I/gralloc ( 4119): bpp = 32
I/gralloc ( 4119): r = 16:8
I/gralloc ( 4119): g = 8:8
I/gralloc ( 4119): b = 0:8
I/gralloc ( 4119): width = 65 mm (422.030762 dpi)
I/gralloc ( 4119): height = 115 mm (424.069580 dpi)
I/gralloc ( 4119): refresh rate = 60.00 Hz
W/art ( 4122): Unexpected file type of
W/art ( 4122): encountered.
W/art ( 4122): 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=0x702eb000 --runtime-arg -Xms64
D/hwcomposer( 4119): using
D/hwcomposer( 4119): xres = 1080 px
D/hwcomposer( 4119): yres = 1920 px
D/hwcomposer( 4119): width = 65 mm (422.030000 dpi)
D/hwcomposer( 4119): height = 115 mm (424.069000 dpi)
D/hwcomposer( 4119): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 4119): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 4119): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 4119): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 4119): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 4119): open subdev device /dev/v4l-subdev2
I/hwcomposer( 4119): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 4119): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 4119): Using composer version 1.3
I/SurfaceFlinger( 4119): EGL information:
I/SurfaceFlinger( 4119): vendor : Android
I/SurfaceFlinger( 4119): version : 1.4 Android META-EGL
I/SurfaceFlinger( 4119): 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( 4119): Client API: OpenGL_ES
I/SurfaceFlinger( 4119): EGLSurface: 8-8-8-8, config=0xb6acf2ac
I/SurfaceFlinger( 4119): OpenGL ES informations:
I/SurfaceFlinger( 4119): vendor : ARM
I/SurfaceFlinger( 4119): renderer : Mali-T628
I/SurfaceFlinger( 4119): version : OpenGL ES 3.0
I/SurfaceFlinger( 4119): 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( 4119): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 4119): GL_MAX_VIEWPORT_DIMS = 8192
E/libEGL ( 4119): eglQuerySurface:607 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 4119): eglQuerySurface:607 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 4119): call to OpenGL ES API with no current context (logged once per thread)
D/SurfaceFlinger( 4119): Set power mode=2, type=0 flinger=0xb6a62000
I/hwcomposer( 4119): int exynos5_blank(hwc_composer_device_1*, int, int):: disp(0), blank(0)
I/hwcomposer( 4119): unblank ioctl failed (display already unblanked)
E/libEGL ( 4119): eglSwapBuffers:1071 error 300d (EGL_BAD_SURFACE)
F/SurfaceFlinger( 4119): eglSwapBuffers(0x1, 0x0) failed with 0x0000300d
F/libc ( 4119): Fatal signal 6 (SIGABRT), code -6 in tid 4119 (surfaceflinger)
I/DEBUG ( 3909): property debug.db.uid not set; NOT waiting for gdb.
I/DEBUG ( 3909): HINT: adb shell setprop debug.db.uid 100000
I/DEBUG ( 3909): HINT: adb forward tcp:5039 tcp:5039
I/DEBUG ( 3909): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 3909): Build fingerprint: 'samsung/cm_k3gxx/k3gxx:5.0.2/LRX22G/8900861058:userdebug/test-keys'
I/DEBUG ( 3909): Revision: '10'
I/DEBUG ( 3909): ABI: 'arm'
I/DEBUG ( 3909): pid: 4119, tid: 4119, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
I/DEBUG ( 3909): signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
I/DEBUG ( 3909): Abort message: 'eglSwapBuffers(0x1, 0x0) failed with 0x0000300d'
I/DEBUG ( 3909): r0 00000000 r1 00001017 r2 00000006 r3 00000000
I/DEBUG ( 3909): r4 b6f63114 r5 00000006 r6 0000000b r7 0000010c
I/DEBUG ( 3909): r8 00000000 r9 be91ebd0 sl b6a54210 fp be91ebd0
I/DEBUG ( 3909): ip 00001017 sp be91e650 lr b6eed7b9 pc b6f114e4 cpsr 600f0010
I/DEBUG ( 3909):
I/DEBUG ( 3909): backtrace:
I/DEBUG ( 3909): #00 pc 000384e4 /system/lib/libc.so (tgkill+12)
I/DEBUG ( 3909): #01 pc 000147b5 /system/lib/libc.so (pthread_kill+52)
I/DEBUG ( 3909): #02 pc 0001550b /system/lib/libc.so (raise+10)
I/DEBUG ( 3909): #03 pc 00011c35 /system/lib/libc.so (__libc_android_abort+36)
I/DEBUG ( 3909): #04 pc 0000fcb8 /system/lib/libc.so (abort+4)
I/DEBUG ( 3909): #05 pc 00007739 /system/lib/libcutils.so (__android_log_assert+88)
I/DEBUG ( 3909): #06 pc 0000f4df /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #07 pc 0001b9fd /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #08 pc 0001abe7 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #09 pc 00019fc3 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #10 pc 00019d49 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #11 pc 00010ed3 /system/lib/libutils.so (android::Looper::pollInner(int)+410)
I/DEBUG ( 3909): #12 pc 00010fc5 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92)
I/DEBUG ( 3909): #13 pc 000174c5 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #14 pc 0001993d /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::run()+8)
I/DEBUG ( 3909): #15 pc 0000083d /system/bin/surfaceflinger
I/DEBUG ( 3909): #16 pc 0000fb75 /system/lib/libc.so (__libc_init+44)
I/DEBUG ( 3909): #17 pc 000008d8 /system/bin/surfaceflinger
W/auditd ( 3595): type=1325 audit(0.0:450): table=raw family=2 entries=8
W/iptables( 4265): type=1300 audit(0.0:450): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c30100 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:450):
W/auditd ( 3595): type=1325 audit(0.0:451): table=raw family=10 entries=8
W/ip6tables( 4266): type=1300 audit(0.0:451): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c32400 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:451):
W/auditd ( 3595): type=1325 audit(0.0:452): table=raw family=2 entries=6
W/iptables( 4267): type=1300 audit(0.0:452): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c20400 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:452):
W/auditd ( 3595): type=1325 audit(0.0:453): table=raw family=10 entries=6
W/ip6tables( 4268): type=1300 audit(0.0:453): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c31800 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:453):
W/auditd ( 3595): type=1325 audit(0.0:454): table=raw family=2 entries=8
W/iptables( 4269): type=1300 audit(0.0:454): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c1ba00 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:454):
W/auditd ( 3595): type=1325 audit(0.0:455): table=raw family=10 entries=8
W/ip6tables( 4270): type=1300 audit(0.0:455): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c37800 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:455):
W/auditd ( 3595): type=1325 audit(0.0:456): table=mangle family=2 entries=16
W/iptables( 4271): type=1300 audit(0.0:456): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c48800 items=0 ppid=4117 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
I/ServiceManager( 4120): Waiting for service batterystats...
I/DEBUG ( 3909):
I/DEBUG ( 3909): Tombstone written to: /data/tombstones/tombstone_01
V/NatController( 4117): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 4117): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 4117): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 4117): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=0
V/NatController( 4117): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=0
I/ServiceManager( 3574): service 'SurfaceFlinger' died
I/ServiceManager( 3574): service 'Exynos.HWCService' died
I/ServiceManager( 3574): service 'media.wifi_display' died
V/NatController( 4117): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
V/NatController( 4117): 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/ServiceManager( 3574): service 'media.audio_flinger' died
W/init ( 4333): type=1400 audit(0.0:505): avc: denied { entrypoint } for path="/system/bin/auditd" dev="mmcblk0p18" ino=173 scontext=u:r:logd:s0 tcontext=u:object_r:system_file:s0 tclass=file
W/init ( 4333): type=1300 audit(0.0:505): arch=40000028 syscall=11 per=800000 success=no exit=-13 a0=b6d80954 a1=b6d66770 a2=57e64 a3=ff0000 items=1 ppid=1 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/init" subj=u:r:init:s0 key=(null)
W/auditd ( 3595): type=1307 audit(0.0:505): cwd="/"
W/auditd ( 3595): type=1302 audit(0.0:505): item=0 name="/system/bin/auditd" inode=173 dev=103:0a mode=0100755 ouid=0 ogid=2000 rdev=00:00 obj=u:object_r:system_file:s0
W/auditd ( 3595): type=1320 audit(0.0:505):
I/Netd ( 4334): Netd 1.0 starting
E/Netd ( 4334): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 4334): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 4334): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 4334): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 4334): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 4334): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 4334): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 4334): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
W/auditd ( 3595): type=1325 audit(0.0:506): table=filter family=2 entries=40
W/iptables( 4340): type=1300 audit(0.0:506): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c25000 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:506):
W/auditd ( 3595): type=1325 audit(0.0:507): table=filter family=10 entries=37
W/ip6tables( 4341): type=1300 audit(0.0:507): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c28000 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:507):
I/SurfaceFlinger( 4336): SurfaceFlinger is starting
I/SurfaceFlinger( 4336): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
W/auditd ( 3595): type=1325 audit(0.0:508): table=filter family=2 entries=39
W/iptables( 4342): type=1300 audit(0.0:508): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c22000 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:508):
W/auditd ( 3595): type=1325 audit(0.0:509): table=filter family=10 entries=36
W/ip6tables( 4347): type=1300 audit(0.0:509): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c23000 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:509):
W/auditd ( 3595): type=1325 audit(0.0:510): table=filter family=2 entries=39
W/iptables( 4348): type=1300 audit(0.0:510): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c22000 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:510):
D/libEGL ( 4336): loaded /vendor/lib/egl/libGLES_mali.so
I/ ( 4336): PLATFORM VERSION : JB-MR-2
I/mediaserver( 4337): ServiceManager: 0xb60500c0
I/AudioFlinger( 4337): Using default 3000 mSec as standby time.
I/ServiceManager( 4337): Waiting for service batterystats...
D/AndroidRuntime( 4339):
D/AndroidRuntime( 4339): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 4339): CheckJNI is OFF
I/art ( 4339): option[0]=-Xzygote
I/art ( 4339): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 4339): option[2]=exit
I/art ( 4339): option[3]=vfprintf
I/art ( 4339): option[4]=sensitiveThread
I/art ( 4339): option[5]=-verbose:gc
I/art ( 4339): option[6]=-Xms8m
I/art ( 4339): option[7]=-Xmx512m
I/art ( 4339): option[8]=-XX:mainThreadStackSize=24K
I/art ( 4339): option[9]=-XX:HeapGrowthLimit=128m
I/art ( 4339): option[10]=-XX:HeapMinFree=2m
I/art ( 4339): option[11]=-XX:HeapMaxFree=8m
I/art ( 4339): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 4339): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 4339): option[14]=-Xlockprofthreshold:500
I/art ( 4339): option[15]=-Ximage-compiler-option
I/art ( 4339): option[16]=--runtime-arg
I/art ( 4339): option[17]=-Ximage-compiler-option
I/art ( 4339): option[18]=-Xms64m
I/art ( 4339): option[19]=-Ximage-compiler-option
I/art ( 4339): option[20]=--runtime-arg
I/art ( 4339): option[21]=-Ximage-compiler-option
I/art ( 4339): option[22]=-Xmx64m
I/art ( 4339): option[23]=-Ximage-compiler-option
I/art ( 4339): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 4339): option[25]=-Ximage-compiler-option
I/art ( 4339): option[26]=--image-classes=preloaded-classes
I/art ( 4339): option[27]=-Xcompiler-option
I/art ( 4339): option[28]=--runtime-arg
I/art ( 4339): option[29]=-Xcompiler-option
I/art ( 4339): option[30]=-Xms64m
I/art ( 4339): option[31]=-Xcompiler-option
I/art ( 4339): option[32]=--runtime-arg
I/art ( 4339): option[33]=-Xcompiler-option
I/art ( 4339): option[34]=-Xmx512m
I/art ( 4339): option[35]=-Duser.language=es
I/art ( 4339): option[36]=-Duser.region=US
I/art ( 4339): Pruning dalvik-cache since we are generating an image and will need to recompile
W/art ( 4339): Unexpected file type of
W/art ( 4339): encountered.
I/art ( 4339): Using an offset of 0xffa21000 from default art base address of 0x70000000
I/art ( 4339): 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=0x6fa21000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes-zip=/system/framework/framework.jar --image-classes=preloaded-classes
W/art ( 4339): Unexpected file type of
W/art ( 4339): encountered.
W/art ( 4339): 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=0x6fa21000 --runtime-arg -Xms64
I/gralloc ( 4336): using (fd=12)
I/gralloc ( 4336): id =
I/gralloc ( 4336): xres = 1080 px
I/gralloc ( 4336): yres = 1920 px
I/gralloc ( 4336): xres_virtual = 1080 px
I/gralloc ( 4336): yres_virtual = 3840 px
I/gralloc ( 4336): bpp = 32
I/gralloc ( 4336): r = 16:8
I/gralloc ( 4336): g = 8:8
I/gralloc ( 4336): b = 0:8
I/gralloc ( 4336): width = 65 mm (422.030762 dpi)
I/gralloc ( 4336): height = 115 mm (424.069580 dpi)
I/gralloc ( 4336): refresh rate = 60.00 Hz
D/hwcomposer( 4336): using
D/hwcomposer( 4336): xres = 1080 px
D/hwcomposer( 4336): yres = 1920 px
D/hwcomposer( 4336): width = 65 mm (422.030000 dpi)
D/hwcomposer( 4336): height = 115 mm (424.069000 dpi)
D/hwcomposer( 4336): refresh rate = 60 Hz
D/libexynosv4l2-subdev( 4336): try node: /dev/v4l-subdev0
D/libexynosv4l2-subdev( 4336): try node: /dev/v4l-subdev1
D/libexynosv4l2-subdev( 4336): try node: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 4336): node found for device s5p-mixer0: /dev/v4l-subdev2
I/libexynosv4l2-subdev( 4336): open subdev device /dev/v4l-subdev2
I/hwcomposer( 4336): PSR info devname = /sys/devices/14400000.fimd_fb/psr_info
I/hwcomposer( 4336): PSR mode is 2(0: video mode, 1: DP PSR mode, 2: MIPI-DSI command mode)
I/SurfaceFlinger( 4336): Using composer version 1.3
I/SurfaceFlinger( 4336): EGL information:
I/SurfaceFlinger( 4336): vendor : Android
I/SurfaceFlinger( 4336): version : 1.4 Android META-EGL
I/SurfaceFlinger( 4336): 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( 4336): Client API: OpenGL_ES
I/SurfaceFlinger( 4336): EGLSurface: 8-8-8-8, config=0xb6acf2ac
I/SurfaceFlinger( 4336): OpenGL ES informations:
I/SurfaceFlinger( 4336): vendor : ARM
I/SurfaceFlinger( 4336): renderer : Mali-T628
I/SurfaceFlinger( 4336): version : OpenGL ES 3.0
I/SurfaceFlinger( 4336): 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( 4336): GL_MAX_TEXTURE_SIZE = 8192
I/SurfaceFlinger( 4336): GL_MAX_VIEWPORT_DIMS = 8192
E/libEGL ( 4336): eglQuerySurface:607 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 4336): eglQuerySurface:607 error 300d (EGL_BAD_SURFACE)
E/libEGL ( 4336): call to OpenGL ES API with no current context (logged once per thread)
D/SurfaceFlinger( 4336): Set power mode=2, type=0 flinger=0xb6a62000
I/hwcomposer( 4336): int exynos5_blank(hwc_composer_device_1*, int, int):: disp(0), blank(0)
I/hwcomposer( 4336): unblank ioctl failed (display already unblanked)
E/libEGL ( 4336): eglSwapBuffers:1071 error 300d (EGL_BAD_SURFACE)
F/SurfaceFlinger( 4336): eglSwapBuffers(0x1, 0x0) failed with 0x0000300d
F/libc ( 4336): Fatal signal 6 (SIGABRT), code -6 in tid 4336 (surfaceflinger)
I/DEBUG ( 3909): property debug.db.uid not set; NOT waiting for gdb.
I/DEBUG ( 3909): HINT: adb shell setprop debug.db.uid 100000
I/DEBUG ( 3909): HINT: adb forward tcp:5039 tcp:5039
I/DEBUG ( 3909): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 3909): Build fingerprint: 'samsung/cm_k3gxx/k3gxx:5.0.2/LRX22G/8900861058:userdebug/test-keys'
I/DEBUG ( 3909): Revision: '10'
I/DEBUG ( 3909): ABI: 'arm'
I/DEBUG ( 3909): pid: 4336, tid: 4336, name: surfaceflinger >>> /system/bin/surfaceflinger <<<
I/DEBUG ( 3909): signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
I/DEBUG ( 3909): Abort message: 'eglSwapBuffers(0x1, 0x0) failed with 0x0000300d'
I/DEBUG ( 3909): r0 00000000 r1 000010f0 r2 00000006 r3 00000000
I/DEBUG ( 3909): r4 b6fe9114 r5 00000006 r6 0000000b r7 0000010c
I/DEBUG ( 3909): r8 00000000 r9 bec78bd0 sl b6a54210 fp bec78bd0
I/DEBUG ( 3909): ip 000010f0 sp bec78650 lr b6f737b9 pc b6f974e4 cpsr 600f0010
I/DEBUG ( 3909):
I/DEBUG ( 3909): backtrace:
I/DEBUG ( 3909): #00 pc 000384e4 /system/lib/libc.so (tgkill+12)
I/DEBUG ( 3909): #01 pc 000147b5 /system/lib/libc.so (pthread_kill+52)
I/DEBUG ( 3909): #02 pc 0001550b /system/lib/libc.so (raise+10)
I/DEBUG ( 3909): #03 pc 00011c35 /system/lib/libc.so (__libc_android_abort+36)
I/DEBUG ( 3909): #04 pc 0000fcb8 /system/lib/libc.so (abort+4)
I/DEBUG ( 3909): #05 pc 00007739 /system/lib/libcutils.so (__android_log_assert+88)
I/DEBUG ( 3909): #06 pc 0000f4df /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #07 pc 0001b9fd /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #08 pc 0001abe7 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #09 pc 00019fc3 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #10 pc 00019d49 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #11 pc 00010ed3 /system/lib/libutils.so (android::Looper::pollInner(int)+410)
I/DEBUG ( 3909): #12 pc 00010fc5 /system/lib/libutils.so (android::Looper::pollOnce(int, int*, int*, void**)+92)
I/DEBUG ( 3909): #13 pc 000174c5 /system/lib/libsurfaceflinger.so
I/DEBUG ( 3909): #14 pc 0001993d /system/lib/libsurfaceflinger.so (android::SurfaceFlinger::run()+8)
I/DEBUG ( 3909): #15 pc 0000083d /system/bin/surfaceflinger
I/DEBUG ( 3909): #16 pc 0000fb75 /system/lib/libc.so (__libc_init+44)
I/DEBUG ( 3909): #17 pc 000008d8 /system/bin/surfaceflinger
W/auditd ( 3595): type=1325 audit(0.0:637): table=raw family=2 entries=8
W/iptables( 4486): type=1300 audit(0.0:637): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c1ba00 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:637):
W/auditd ( 3595): type=1325 audit(0.0:638): table=raw family=10 entries=8
W/ip6tables( 4487): type=1300 audit(0.0:638): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c37800 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:638):
W/auditd ( 3595): type=1325 audit(0.0:639): table=mangle family=2 entries=16
W/iptables( 4488): type=1300 audit(0.0:639): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c48800 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:639):
W/auditd ( 3595): type=1325 audit(0.0:640): table=mangle family=10 entries=12
W/ip6tables( 4489): type=1300 audit(0.0:640): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c47800 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:640):
W/auditd ( 3595): type=1325 audit(0.0:641): table=mangle family=2 entries=15
W/iptables( 4490): type=1300 audit(0.0:641): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c1c200 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:641):
W/auditd ( 3595): type=1325 audit(0.0:642): table=mangle family=10 entries=11
W/ip6tables( 4491): type=1300 audit(0.0:642): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c1c200 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:642):
W/auditd ( 3595): type=1325 audit(0.0:643): table=mangle family=2 entries=15
W/iptables( 4492): type=1300 audit(0.0:643): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c1c200 items=0 ppid=4334 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
I/ServiceManager( 4337): Waiting for service batterystats...
V/NatController( 4334): runCmd(/system/bin/iptables -F natctrl_FORWARD) res=0
V/NatController( 4334): runCmd(/system/bin/iptables -A natctrl_FORWARD -j DROP) res=0
V/NatController( 4334): runCmd(/system/bin/iptables -t nat -F natctrl_nat_POSTROUTING) res=0
V/NatController( 4334): runCmd(/system/bin/iptables -F natctrl_tether_counters) res=0
V/NatController( 4334): runCmd(/system/bin/iptables -X natctrl_tether_counters) res=0
V/NatController( 4334): runCmd(/system/bin/iptables -N natctrl_tether_counters) res=0
V/NatController( 4334): 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 ( 3909):
I/DEBUG ( 3909): Tombstone written to: /data/tombstones/tombstone_02
I/ServiceManager( 3574): service 'SurfaceFlinger' died
I/ServiceManager( 3574): service 'Exynos.HWCService' died
I/ServiceManager( 3574): service 'media.wifi_display' died
I/ServiceManager( 3574): service 'media.audio_flinger' died
W/init ( 4547): type=1400 audit(0.0:691): avc: denied { entrypoint } for path="/system/bin/auditd" dev="mmcblk0p18" ino=173 scontext=u:r:logd:s0 tcontext=u:object_r:system_file:s0 tclass=file
W/init ( 4547): type=1300 audit(0.0:691): arch=40000028 syscall=11 per=800000 success=no exit=-13 a0=b6d80954 a1=b6d66770 a2=57e64 a3=ff0000 items=1 ppid=1 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/init" subj=u:r:init:s0 key=(null)
W/auditd ( 3595): type=1307 audit(0.0:691): cwd="/"
W/auditd ( 3595): type=1302 audit(0.0:691): item=0 name="/system/bin/auditd" inode=173 dev=103:0a mode=0100755 ouid=0 ogid=2000 rdev=00:00 obj=u:object_r:system_file:s0
W/auditd ( 3595): type=1320 audit(0.0:691):
I/Netd ( 4548): Netd 1.0 starting
E/Netd ( 4548): Failed to open /proc/sys/net/ipv6/conf/default/accept_ra_rt_table: No such file or directory
E/Netd ( 4548): Failed to open /proc/sys/net/ipv6/conf/ip6tnl0/accept_ra_rt_table: No such file or directory
E/Netd ( 4548): Failed to open /proc/sys/net/ipv6/conf/lo/accept_ra_rt_table: No such file or directory
E/Netd ( 4548): Failed to open /proc/sys/net/ipv6/conf/rmnet0/accept_ra_rt_table: No such file or directory
E/Netd ( 4548): Failed to open /proc/sys/net/ipv6/conf/rmnet1/accept_ra_rt_table: No such file or directory
E/Netd ( 4548): Failed to open /proc/sys/net/ipv6/conf/rmnet2/accept_ra_rt_table: No such file or directory
E/Netd ( 4548): Failed to open /proc/sys/net/ipv6/conf/rmnet3/accept_ra_rt_table: No such file or directory
E/Netd ( 4548): Failed to open /proc/sys/net/ipv6/conf/sit0/accept_ra_rt_table: No such file or directory
W/auditd ( 3595): type=1325 audit(0.0:692): table=filter family=2 entries=40
W/iptables( 4554): type=1300 audit(0.0:692): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c25000 items=0 ppid=4548 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:692):
I/SurfaceFlinger( 4550): SurfaceFlinger is starting
I/SurfaceFlinger( 4550): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
W/auditd ( 3595): type=1325 audit(0.0:693): table=filter family=10 entries=37
W/ip6tables( 4555): type=1300 audit(0.0:693): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c28000 items=0 ppid=4548 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:693):
W/auditd ( 3595): type=1325 audit(0.0:694): table=filter family=2 entries=39
W/iptables( 4558): type=1300 audit(0.0:694): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c22000 items=0 ppid=4548 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:694):
W/auditd ( 3595): type=1325 audit(0.0:695): table=filter family=10 entries=36
W/ip6tables( 4561): type=1300 audit(0.0:695): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=29 a2=40 a3=b6c23000 items=0 ppid=4548 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/ip6tables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:695):
D/libEGL ( 4550): loaded /vendor/lib/egl/libGLES_mali.so
W/auditd ( 3595): type=1325 audit(0.0:696): table=filter family=2 entries=39
W/iptables( 4562): type=1300 audit(0.0:696): arch=40000028 syscall=294 per=800000 success=yes exit=0 a0=4 a1=0 a2=40 a3=b6c22000 items=0 ppid=4548 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 ses=4294967295 tty=(none) exe="/system/bin/iptables" subj=u:r:netd:s0 key=(null)
W/auditd ( 3595): type=1320 audit(0.0:696):
I/ ( 4550): PLATFORM VERSION : JB-MR-2
D/AndroidRuntime( 4553):
D/AndroidRuntime( 4553): >>>>>> AndroidRuntime START com.android.internal.os.ZygoteInit <<<<<<
D/AndroidRuntime( 4553): CheckJNI is OFF
I/art ( 4553): option[0]=-Xzygote
I/art ( 4553): option[1]=-Xstacktracefile:/data/anr/traces.txt
I/art ( 4553): option[2]=exit
I/art ( 4553): option[3]=vfprintf
I/art ( 4553): option[4]=sensitiveThread
I/art ( 4553): option[5]=-verbose:gc
I/art ( 4553): option[6]=-Xms8m
I/art ( 4553): option[7]=-Xmx512m
I/art ( 4553): option[8]=-XX:mainThreadStackSize=24K
I/art ( 4553): option[9]=-XX:HeapGrowthLimit=128m
I/art ( 4553): option[10]=-XX:HeapMinFree=2m
I/art ( 4553): option[11]=-XX:HeapMaxFree=8m
I/art ( 4553): option[12]=-XX:HeapTargetUtilization=0.75
I/art ( 4553): option[13]=-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y
I/art ( 4553): option[14]=-Xlockprofthreshold:500
I/art ( 4553): option[15]=-Ximage-compiler-option
I/art ( 4553): option[16]=--runtime-arg
I/art ( 4553): option[17]=-Ximage-compiler-option
I/art ( 4553): option[18]=-Xms64m
I/art ( 4553): option[19]=-Ximage-compiler-option
I/art ( 4553): option[20]=--runtime-arg
I/art ( 4553): option[21]=-Ximage-compiler-option
I/art ( 4553): option[22]=-Xmx64m
I/art ( 4553): option[23]=-Ximage-compiler-option
I/art ( 4553): option[24]=--image-classes-zip=/system/framework/framework.jar
I/art ( 4553): option[25]=-Ximage-compiler-option
I/art ( 4553): option[26]=--image-classes=preloaded-classes
I/art ( 4553): option[27]=-Xcompiler-option
I/art ( 4553): option[28]=--runtime-arg
I/art ( 4553): option[29]=-Xcompiler-option
I/art ( 4553): option[30]=-Xms64m
I/art ( 4553): option[31]=-Xcompiler-option
I/art ( 4553): option[32]=--runtime-arg
I/art ( 4553): option[33]=-Xcompiler-option
I/art ( 4553): option[34]=-Xmx512m
I/art ( 4553): option[35]=-Duser.language=es
I/art ( 4553): option[36]=-Duser.region=US
I/art ( 4553): Pruning dalvik-cache since we are generating an image and will need to recompile
W/art ( 4553): Unexpected file type of
W/art ( 4553): encountered.
I/art ( 4553): Using an offset of 0x329000 from default art base address of 0x70000000
I/art ( 4553): 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=0x70329000 --runtime-arg -Xms64m --runtime-arg -Xmx64m --image-classes-zip=/system/framework/framework.jar --image-classes=preloaded-classes
I/mediaserver( 4551): ServiceManager: 0xb60500c0
I/AudioFlinger( 4551): Using default 3000 mSec as standby time.
I/ServiceManager( 4551): Waiting for service batterystats...
I/gralloc ( 4550): using (fd=12)
I/gralloc ( 4550): id =
I/gralloc ( 4550): xres = 1080 px
I/gralloc ( 4550): yres = 1920 px
I/gralloc ( 4550): xres_virtual = 1080 px
I/gralloc ( 4550): yres_virtual = 3840 px
I/gralloc ( 4550): bpp = 32
I/gralloc ( 4550): r = 16:8
I/gralloc ( 4550): g = 8:8
I/gralloc ( 4550): b = 0:8
I/gralloc ( 4550): width = 65 mm (422.030762 dpi)
I/gralloc ( 4550): height = 115 mm (424.069580 dpi)
I/gralloc ( 4550): refresh rate = 60.00 Hz