My favorites | Sign in
Project Home Downloads Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions

Issue 53 attachment: logcat.txt (81.8 KB)

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
--------- beginning of /dev/log/system

I/Vold ( 1511): Vold 2.1 (the revenge) firing up

D/Vold ( 1511): Volume sdcard state changing -1 (Initializing) -> 0 (No-Media)

D/Vold ( 1511): Volume sdcard state changing 0 (No-Media) -> 2 (Pending)

D/Vold ( 1511): Volume sdcard state changing 2 (Pending) -> 1 (Idle-Unmounted)

W/Vold ( 1511): Ignoring unknown switch 'usb_mass_storage'

D/Vold ( 1511): USB disconnected

D/Vold ( 1511): Share method ums now unavailable

D/Vold ( 1511): USB disconnected

D/Vold ( 1511): USB connected

D/Vold ( 1511): Share method ums now available

W/Vold ( 1511): Ignoring unknown switch 'MSM72K_UDC'

W/Vold ( 1511): Ignoring unknown switch 'usb_mass_storage'

W/Vold ( 1511): Ignoring unknown switch 'MSM72K_UDC'

D/Vold ( 1511): USB connected

W/Vold ( 1511): Ignoring unknown switch 'usb_mass_storage'

D/Vold ( 1511): USB disconnected

D/Vold ( 1511): Share method ums now unavailable

D/Vold ( 1511): USB disconnected

D/Vold ( 1511): USB connected

D/Vold ( 1511): Share method ums now available

W/Vold ( 1511): Ignoring unknown switch 'MSM72K_UDC'

W/Vold ( 1511): Ignoring unknown switch 'usb_mass_storage'

W/Vold ( 1511): Ignoring unknown switch 'MSM72K_UDC'

D/Vold ( 1511): USB connected

W/Vold ( 1511): Ignoring unknown switch 'usb_mass_storage'

D/Vold ( 1511): USB disconnected

D/Vold ( 1511): Share method ums now unavailable

D/Vold ( 1511): USB disconnected

D/Vold ( 1511): USB connected

D/Vold ( 1511): Share method ums now available

W/Vold ( 1511): Ignoring unknown switch 'MSM72K_UDC'

W/Vold ( 1511): Ignoring unknown switch 'usb_mass_storage'

W/Vold ( 1511): Ignoring unknown switch 'MSM72K_UDC'

D/Vold ( 1511): USB connected

W/Vold ( 1511): Ignoring unknown switch 'usb_mass_storage'

D/Vold ( 1511): USB disconnected

D/Vold ( 1511): Share method ums now unavailable

D/Vold ( 1511): USB disconnected

D/Vold ( 1511): USB connected

D/Vold ( 1511): Share method ums now available

W/Vold ( 1511): Ignoring unknown switch 'MSM72K_UDC'

W/Vold ( 1511): Ignoring unknown switch 'usb_mass_storage'

W/Vold ( 1511): Ignoring unknown switch 'MSM72K_UDC'

D/Vold ( 1511): USB connected

--------- beginning of /dev/log/main

I/SurfaceFlinger( 1638): GL_MAX_TEXTURE_SIZE = 4096

I/SurfaceFlinger( 1638): GL_MAX_VIEWPORT_DIMS = 4096

I/SurfaceFlinger( 1638): flags = 00000000

D/SensorService( 1638): nuSensorService starting...

I/SensorService( 1638): K3DH 3-axis Acceleration sensor

I/SensorService( 1638): AMI306 3-axis Magnetic Field sensor

I/SensorService( 1638): AMI306 Orientation sensor

I/SensorService( 1638): Proximity sensor

I/sysproc ( 1638): System server: starting Android runtime.

I/sysproc ( 1638): System server: starting Android services.

D/SensorService( 1638): nuSensorService thread starting...

I/SystemServer( 1638): Entered the Android system server!

I/sysproc ( 1638): System server: entering thread pool.

I/SystemServer( 1638): Entropy Service

I/SystemServer( 1638): Power Manager

I/SystemServer( 1638): Activity Manager

I/ActivityManager( 1638): Memory class: 24

D/libEGL ( 1656): loaded /system/lib/egl/libGLES_android.so

D/libEGL ( 1656): loaded /system/lib/egl/libEGL_adreno200.so

D/libEGL ( 1656): loaded /system/lib/egl/libGLESv1_CM_adreno200.so

D/libEGL ( 1656): loaded /system/lib/egl/libGLESv2_adreno200.so

W/zipro ( 1656): Unable to open zip '/data/local/bootanimation.zip': No such file or directory

W/zipro ( 1656): Unable to open zip '/system/media/bootanimation.zip': No such file or directory

E/SurfaceFlinger( 1638): eglSwapBuffers: EGL error 0x3008 (EGL_BAD_DISPLAY)

I/SystemServer( 1638): Telephony Registry

I/SystemServer( 1638): Package Manager

I/installd( 1518): new connection

I/Installer( 1638): connecting...

D/dalvikvm( 1638): GC_CONCURRENT freed 157K, 47% free 3016K/5639K, external 716K/1038K, paused 4ms+7ms

D/dalvikvm( 1638): GC_CONCURRENT freed 197K, 44% free 3387K/6023K, external 716K/1038K, paused 4ms+7ms

D/szipinf ( 1638): Initializing inflate state

D/dalvikvm( 1638): GC_CONCURRENT freed 497K, 47% free 3334K/6279K, external 716K/1038K, paused 5ms+6ms

D/szipinf ( 1638): Initializing inflate state

W/PackageParser( 1638): No actions in intent filter at /system/app/Bluetooth.apk Binary XML file line #124

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

I/PackageManager( 1638): Package com.google.android.gm at /system/app/Gmail.apk ignored: updated version 176 better than this 169

D/dalvikvm( 1638): GC_CONCURRENT freed 196K, 43% free 3612K/6279K, external 716K/1038K, paused 4ms+7ms

I/PackageManager( 1638): Package com.google.android.googlequicksearchbox at /system/app/GoogleQuickSearchBox.apk ignored: updated version 133247963 better than this 112185293

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/dalvikvm( 1638): GC_CONCURRENT freed 260K, 43% free 3784K/6535K, external 716K/1038K, paused 4ms+19ms

I/PackageManager( 1638): Package com.noshufou.android.su at /system/app/Superuser.apk ignored: updated version 41 better than this 38

I/PackageManager( 1638): Package com.android.vending at /system/app/Vending.apk ignored: updated version 8010007 better than this 4002304

D/PackageManager( 1638): No files in app dir /vendor/app

W/PackageParser( 1638): Unknown element under <application>: instrumentation at /data/app/miyowa.android.microsoft.wlm-1.apk Binary XML file line #128

D/dalvikvm( 1638): GC_CONCURRENT freed 267K, 41% free 3983K/6727K, external 716K/1038K, paused 4ms+8ms

W/PackageParser( 1638): Unknown element under <manifest>: supports-gl-texture at /data/app/com.instagram.android-1.apk Binary XML file line #50

I/PackageManager( 1638): Linking native library dir for /data/app/com.instagram.android-1.apk

W/PackageParser( 1638): No actions in intent filter at /data/app/com.blueway.eltelon-1.apk Binary XML file line #33

I/PackageManager( 1638): Time to scan packages: 3.866 seconds

W/PackageManager( 1638): Unknown permission com.android.vending.permission.UPDATE_MARKET_FAILURE in package com.android.vending.updater

W/PackageManager( 1638): Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone

W/PackageManager( 1638): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x9be45)

W/PackageManager( 1638): Not granting permission android.permission.WRITE_SECURE_SETTINGS to package com.whatsapp (protectionLevel=3 flags=0xbe44)

W/PackageManager( 1638): Unknown permission android.permission.READ_OWNER_DATA in package com.android.setupwizard

W/PackageManager( 1638): Unknown permission android.permission.WRITE_OWNER_DATA in package com.android.setupwizard

W/PackageManager( 1638): Not granting permission com.google.android.gm.permission.READ_GMAIL to package com.google.android.apps.uploader (protectionLevel=2 flags=0xbe45)

W/PackageManager( 1638): Unknown permission com.google.android.voicesearch.SHORTCUTS_ACCESS in package com.google.android.googlequicksearchbox

W/PackageManager( 1638): Unknown permission android.permission.READ_EXTERNAL_STORAGE in package com.android.vending

W/PackageManager( 1638): Not granting permission android.permission.CHANGE_COMPONENT_ENABLED_STATE to package com.android.vending (protectionLevel=3 flags=0xabec5)

W/PackageManager( 1638): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.vending (protectionLevel=2 flags=0xabec5)

W/PackageManager( 1638): Not granting permission android.permission.STATUS_BAR to package com.android.vending (protectionLevel=3 flags=0xabec5)

W/PackageManager( 1638): Unknown permission com.google.android.voicesearch.AUDIO_FILE_ACCESS in package com.google.android.gm

W/PackageManager( 1638): Unknown permission android.permission.READ_OWNER_DATA in package com.android.email

W/PackageManager( 1638): Not granting permission android.permission.DEVICE_POWER to package com.android.deskclock (protectionLevel=2 flags=0x8be45)

D/dalvikvm( 1638): GC_CONCURRENT freed 324K, 40% free 4215K/6983K, external 716K/1038K, paused 5ms+7ms

D/dalvikvm( 1638): GC_EXPLICIT freed 208K, 42% free 4073K/6983K, external 716K/1038K, paused 75ms

I/SystemServer( 1638): Account Manager

D/szipinf ( 1638): Initializing inflate state

I/SystemServer( 1638): Content Manager

D/szipinf ( 1638): Initializing inflate state

I/ActivityThread( 1638): Pub settings: com.android.providers.settings.SettingsProvider

I/SystemServer( 1638): System Content Providers

I/SystemServer( 1638): Battery Service

D/SettingsProvider( 1638): cache for settings table 'secure' rows=38; fullycached=true

I/SystemServer( 1638): Lights Service

I/SystemServer( 1638): Vibrator Service

D/SettingsProvider( 1638): cache for settings table 'system' rows=65; fullycached=true

I/SystemServer( 1638): Alarm Manager

I/SystemServer( 1638): Init Watchdog

I/SystemServer( 1638): Window Manager

I/InputManager( 1638): Initializing input manager

I/InputManager( 1638): Starting input manager

I/SystemServer( 1638): Bluetooth Service

I/EventHub( 1638): New keyboard: device->id=0x20000 devname='7k_handset' propName='hw.keyboards.131072.devname' keylayout='/system/usr/keylayout/7k_handset.kl'

I/EventHub( 1638): New device: path=/dev/input/event4 name=7k_handset id=0x20000 (of 0x1) index=1 fd=96 classes=0x81

I/EventHub( 1638): New keyboard: device->id=0x30001 devname='thunder_keypad' propName='hw.keyboards.196609.devname' keylayout='/system/usr/keylayout/thunder_keypad.kl'

I/EventHub( 1638): New device: path=/dev/input/event1 name=thunder_keypad id=0x30001 (of 0x2) index=2 fd=97 classes=0x1

I/EventHub( 1638): New device: path=/dev/input/event0 name=touch_mcs6000 id=0x10002 (of 0x3) index=3 fd=99 classes=0x14

I/InputManager-Callbacks( 1638): No input device calibration properties found for device touch_mcs6000.

I/InputReader( 1638): Device added: id=0x10002, name=touch_mcs6000, sources=00001002

I/InputReader( 1638): Device added: id=0x30001, name=thunder_keypad, sources=00000101

I/InputReader( 1638): Device added: id=0x0, name=7k_handset, sources=00000101

I/InputManager-Callbacks( 1638): No input device calibration properties found for device thunder_keypad.

I/InputManager-Callbacks( 1638): No input device calibration properties found for device 7k_handset.

I/BluetoothProfileState( 1638): Message:Entering Stable State

I/BluetoothProfileState( 1638): Message:Entering Stable State

I/SystemServer( 1638): Device Policy

I/SystemServer( 1638): Status Bar

I/SystemServer( 1638): Clipboard Service

D/szipinf ( 1638): Initializing inflate state

I/SystemServer( 1638): Input Method Service

I/InputManagerService( 1638): Enabled input methods: com.android.inputmethod.latin/.LatinIME

I/SystemServer( 1638): NetStat Service

I/SystemServer( 1638): NetworkManagement Service

I/SystemServer( 1638): Connectivity Service

I/WifiService( 1638): WifiService starting up with Wi-Fi enabled

D/NetworkManagmentService( 1638): Registering observer

I/SystemServer( 1638): Throttle Service

I/SystemServer( 1638): Accessibility Manager

I/SystemServer( 1638): Mount Service

I/SystemServer( 1638): Notification Manager

I/SystemServer( 1638): Device Storage Monitor

I/SystemServer( 1638): Location Manager

D/VoldCmdListener( 1511): volume list

I/SystemServer( 1638): Search Service

I/SystemServer( 1638): DropBox Service

I/PackageManager( 1638): Updating external media status from unmounted to unmounted

I/SystemServer( 1638): Wallpaper Service

D/VoldCmdListener( 1511): share status ums

I/SystemServer( 1638): Audio Service

D/dalvikvm( 1638): GC_CONCURRENT freed 176K, 38% free 4433K/7047K, external 716K/1038K, paused 4ms+27ms

D/AudioHardwareMSM72XX( 1516): setVoiceVolume(0.800000)

I/AudioHardwareMSM72XX( 1516): Setting in-call volume to 6 (available range is 0 to 7)

D/AudioHardwareInterface( 1516): setMode(NORMAL)

W/AudioPolicyManagerBase( 1516): setPhoneState() setting same state 0

I/SystemServer( 1638): Headset Observer

I/SystemServer( 1638): Dock Observer

I/SystemServer( 1638): USB Service

W/UsbDeviceSettingsManager( 1638): settings file not found

I/SystemServer( 1638): UI Mode Manager Service

I/SystemServer( 1638): Backup Service

I/BackupManagerService( 1638): Found stale backup journal, scheduling

I/BackupManagerService( 1638): com.android.providers.settings

I/BackupManagerService( 1638): Backup enabled => true

I/SystemServer( 1638): AppWidget Service

I/SystemServer( 1638): Recognition Service

I/SystemServer( 1638): DiskStats Service

I/WindowManager( 1638): SAFE MODE not enabled

D/dalvikvm( 1638): JIT started for system_server

I/power ( 1638): *** set_screen_state 1

D/PowerManagerService( 1638): system ready!

I/Zygote ( 1638): Process: zygote socket opened

I/ActivityManager( 1638): System now ready

I/SystemServer( 1638): Making services ready

I/StatusBarManagerService( 1638): Starting service: ComponentInfo{com.android.systemui/com.android.systemui.statusbar.StatusBarService}

I/ActivityManager( 1638): Start proc com.android.systemui for service com.android.systemui/.statusbar.StatusBarService: pid=1714 uid=1000 gids={3002, 3001, 3003}

I/ActivityManager( 1638): Config changed: { scale=1.0 imsi=0/0 loc=es_US touch=0 keys=0/0/0 nav=0/0 orien=0 layout=0 uiMode=17 seq=2}

I/ActivityManager( 1638): Config changed: { scale=1.0 imsi=0/0 loc=es_US touch=3 keys=1/1/2 nav=1/1 orien=1 layout=18 uiMode=17 seq=3}

W/RecognitionManagerService( 1638): no available voice recognition services found

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

I/PowerWidget( 1714): Clearing any old widget stuffs

I/PowerWidget( 1714): Setting up widget

I/PowerWidget( 1714): Button list: toggleBrightness|toggleSound|toggleWifi|toggleMobileData|toggleNetworkMode|toggleGPS|toggleSync|toggleBluetooth|toggleWifiAp|toggleAirplane|toggleMediaPrevious|toggleMediaNext|toggleMediaPlayPause

I/PowerWidget( 1714): Setting up button: toggleBrightness

D/dalvikvm( 1638): GC_CONCURRENT freed 440K, 40% free 4527K/7431K, external 1035K/1038K, paused 8ms+21ms

D/dalvikvm( 1638): GC_EXTERNAL_ALLOC freed 5K, 40% free 4521K/7431K, external 1035K/1038K, paused 163ms

D/Tethering( 1638): wlan0 is not a tetherable iface, ignoring

I/PowerWidget( 1714): Setting up button: toggleSound

I/PowerWidget( 1714): Setting up button: toggleWifi

I/PowerWidget( 1714): Setting up button: toggleMobileData

I/PowerWidget( 1714): Setting up button: toggleNetworkMode

I/PowerWidget( 1714): Setting up button: toggleGPS

I/PowerWidget( 1714): Setting up button: toggleSync

I/ActivityManager( 1638): Start proc com.android.inputmethod.latin for service com.android.inputmethod.latin/.LatinIME: pid=1735 uid=10022 gids={}

I/SyncButton( 1714): Registering sync state listener

I/PowerWidget( 1714): Setting up button: toggleBluetooth

I/PowerWidget( 1714): Setting up button: toggleWifiAp

I/PowerWidget( 1714): Setting up button: toggleAirplane

D/NetworkManagmentService( 1638): Registering observer

I/PowerWidget( 1714): Setting up button: toggleMediaPrevious

I/PowerWidget( 1714): Setting up button: toggleMediaNext

I/PowerWidget( 1714): Setting up button: toggleMediaPlayPause

I/ActivityManager( 1638): Start proc com.android.phone for added application com.android.phone: pid=1746 uid=1001 gids={3002, 3001, 3003, 1015}

I/ActivityManager( 1638): Starting: Intent { act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10000000 cmp=com.android.launcher/com.android.launcher2.Launcher } from pid 0

D/szipinf ( 1638): Initializing inflate state

I/ActivityManager( 1638): Start proc com.android.launcher for activity com.android.launcher/com.android.launcher2.Launcher: pid=1751 uid=10024 gids={}

D/SntpClient( 1638): request time failed: java.net.UnknownHostException: europe.pool.ntp.org

D/SntpClient( 1638): request time failed: java.net.UnknownHostException: europe.pool.ntp.org

D/szipinf ( 1735): Initializing inflate state

I/ActivityManager( 1638): Start proc com.google.process.gapps for service com.google.android.gsf/.loginservice.GoogleLoginService: pid=1766 uid=10017 gids={3003, 1015, 2001, 1007}

I//system/bin/tc( 1512): RTNETLINK answers: Operation not supported on transport endpoint

I/logwrapper( 1512): /system/bin/tc terminated by exit(2)

D/szipinf ( 1751): Initializing inflate state

D/szipinf ( 1746): Initializing inflate state

I//system/bin/tc( 1512): RTNETLINK answers: Operation not supported on transport endpoint

I/logwrapper( 1512): /system/bin/tc terminated by exit(2)

I/StatusBarManagerService( 1638): registerStatusBar bar=com.android.internal.statusbar.IStatusBar$Stub$Proxy@405e0158

I//system/bin/tc( 1512): Cannot find device "ifb0"

I/logwrapper( 1512): /system/bin/tc terminated by exit(1)

I/PowerWidget( 1714): Clearing any old widget stuffs

I/SyncButton( 1714): Unregistering sync state listener

I/ActivityThread( 1751): Pub com.android.launcher2.settings: com.android.launcher2.LauncherProvider

I/PowerWidget( 1714): Setting up widget

I/PowerWidget( 1714): Button list: toggleBrightness|toggleSound|toggleWifi|toggleMobileData|toggleNetworkMode|toggleGPS|toggleSync|toggleBluetooth|toggleWifiAp|toggleAirplane|toggleMediaPrevious|toggleMediaNext|toggleMediaPlayPause

D/SntpClient( 1638): request time failed: java.net.UnknownHostException: europe.pool.ntp.org

D/SntpClient( 1638): request time failed: java.net.UnknownHostException: europe.pool.ntp.org

I/PowerWidget( 1714): Setting up button: toggleBrightness

I/PowerWidget( 1714): Setting up button: toggleSound

I/ActivityThread( 1766): Pub com.google.settings: com.google.android.gsf.settings.GoogleSettingsProvider

I/PowerWidget( 1714): Setting up button: toggleWifi

I/PowerWidget( 1714): Setting up button: toggleMobileData

I/PowerWidget( 1714): Setting up button: toggleNetworkMode

I/PowerWidget( 1714): Setting up button: toggleGPS

I/PowerWidget( 1714): Setting up button: toggleSync

I/ActivityThread( 1766): Pub subscribedfeeds: com.google.android.gsf.subscribedfeeds.SubscribedFeedsProvider

I/SyncButton( 1714): Registering sync state listener

D/dalvikvm( 1638): GC_EXTERNAL_ALLOC freed 205K, 38% free 4680K/7431K, external 1545K/1567K, paused 227ms

I/PowerWidget( 1714): Setting up button: toggleBluetooth

I/ActivityThread( 1766): Pub com.google.android.gsf.gservices: com.google.android.gsf.gservices.GservicesProvider

I/PowerWidget( 1714): Setting up button: toggleWifiAp

I/PowerWidget( 1714): Setting up button: toggleAirplane

I/PowerWidget( 1714): Setting up button: toggleMediaPrevious

I/PowerWidget( 1714): Setting up button: toggleMediaNext

I/PowerWidget( 1714): Setting up button: toggleMediaPlayPause

I/GservicesProvider( 1766): Gservices pushing to system: true; secure: true

I/ActivityThread( 1766): Pub com.google.android.providers.talk: com.google.android.gsf.talk.TalkProvider

I/ActivityThread( 1746): Pub telephony: com.android.providers.telephony.TelephonyProvider

D/szipinf ( 1751): Initializing inflate state

I/ActivityThread( 1746): Pub icc: com.android.phone.IccProvider

D/VoldCmdListener( 1511): share status ums

D/StorageNotification( 1714): Startup with UMS connection false (media state unmounted)

I/ActivityThread( 1746): Pub mms: com.android.providers.telephony.MmsProvider

I/StorageNotification( 1714): UMS connection changed to true (media state unmounted)

I/ActivityThread( 1746): Pub sms: com.android.providers.telephony.SmsProvider

I/ActivityThread( 1746): Pub mms-sms: com.android.providers.telephony.MmsSmsProvider

D/szipinf ( 1751): Initializing inflate state

D/dalvikvm( 1735): GC_EXTERNAL_ALLOC freed 79K, 48% free 2809K/5379K, external 716K/1038K, paused 380ms

D/SyncManager( 1638): setSyncAutomatically: , provider subscribedfeeds -> true

D/SyncManager( 1638): setSyncAutomatically: already set to true, doing nothing

D/szipinf ( 1751): Initializing inflate state

D/dalvikvm( 1735): GC_FOR_MALLOC freed 9K, 48% free 2801K/5379K, external 1484K/1996K, paused 394ms

I/dalvikvm-heap( 1735): Grow heap (frag case) to 7.315MB for 786058-byte allocation

D/dalvikvm( 1714): GC_CONCURRENT freed 196K, 48% free 2914K/5575K, external 907K/1038K, paused 6ms+57ms

D/dalvikvm( 1735): GC_FOR_MALLOC freed <1K, 42% free 3569K/6151K, external 1484K/1996K, paused 155ms

D/NetworkLocationService( 1766): onCreate com.google.android.location.NetworkLocationService@40554ab0

D/CallManager( 1746): registerPhone(GSM Handler{405463c0})

D/NetworkLocationClient( 1766): ANDROID minProtocolVersion 1 maxProtocolVersion 1 releaseVersion -1

D/NetworkLocationClient( 1766): binding to Intent { act=com.google.android.location.internal.ANDROID_NLP }

D/dalvikvm( 1735): GC_CONCURRENT freed <1K, 42% free 3568K/6151K, external 1484K/1996K, paused 23ms+47ms

D/dalvikvm( 1751): GC_EXTERNAL_ALLOC freed 107K, 49% free 2788K/5379K, external 997K/1038K, paused 116ms

I/ActivityManager( 1638): Start proc android.process.acore for content provider com.android.providers.contacts/.CallLogProvider: pid=1808 uid=10000 gids={3003, 1015}

W/ActivityManager( 1638): Unable to start service Intent { act=com.android.ussd.IExtendedNetworkService }: not found

I/ActivityThread( 1808): Pub user_dictionary: com.android.providers.userdictionary.UserDictionaryProvider

I/ActivityThread( 1808): Pub com.android.social: com.android.providers.contacts.SocialProvider

D/dalvikvm( 1714): GC_EXTERNAL_ALLOC freed 76K, 46% free 3025K/5575K, external 1037K/1038K, paused 215ms

D/dalvikvm( 1746): GC_CONCURRENT freed 136K, 48% free 2954K/5575K, external 716K/1038K, paused 5ms+9ms

I/TelephonyRegistry( 1638): notifyServiceState: 3 home null null null Unknown CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false

I/ActivityThread( 1808): Pub applications: com.android.providers.applications.ApplicationsProvider

D/dalvikvm( 1751): GC_EXTERNAL_ALLOC freed 34K, 48% free 2822K/5379K, external 1474K/1480K, paused 131ms

I/TelephonyRegistry( 1638): notifyDataConnection: state=0 isDataConnectivityPossible=false reason=radioTurnedOff interfaceName=null networkType=0

I/TelephonyRegistry( 1638): notifyDataConnection: state=0 isDataConnectivityPossible=false reason=gprsDetached interfaceName=null networkType=0

D/loc_api_rpc_glue( 1638): Loc API RPC client initialized.

D/GpsLocationProvider( 1638): set_capabilities_callback: 7

I/wpa_supplicant( 1785): CTRL-EVENT-STATE-CHANGE id=-1 state=2 BSSID=00:00:00:00:00:00

D/libloc ( 1638): loc_read_gps_conf: using /etc/gps.conf

D/NetworkLocationService( 1766): onBind com.google.android.location.NetworkLocationProvidercom.google.android.location.NetworkLocationService@40554ab0

D/libloc ( 1638): loc_eng_init created client, id = 0

D/dalvikvm( 1766): GC_CONCURRENT freed 234K, 49% free 2869K/5575K, external 716K/1038K, paused 4ms+5ms

D/libloc ( 1638): loc_eng_deferred_action_thread started

D/libloc ( 1638): loc_eng_set_gps_lock mode, client = 0, lock_type = 1

D/NetworkLocationService( 1766): onBind com.google.android.location.GeocodeProvidercom.google.android.location.NetworkLocationService@40554ab0

D/libloc ( 1638): loc_eng_ioctl called: client = 0, ioctl_type = RPC_LOC_IOCTL_SET_ENGINE_LOCK

V/WifiStateTracker( 1638): Connection to supplicant established, state=SCANNING

I/ActivityThread( 1808): Pub contacts;com.android.contacts: com.android.providers.contacts.ContactsProvider2

D/BT HSHFP( 1746): Starting BluetoothHeadsetService

D/androidInternalNlpService( 1766): onCreate com.google.android.location.internal.server.NetworkLocationService@40535508

D/androidNlpServiceThread( 1766): start monitoring enabled

D/libloc ( 1638): loc_eng_set_server, type = 1, hostname = supl.google.com, port = 7276

D/libloc ( 1638): loc_eng_set_server, addr = supl.google.com:7276

D/libloc ( 1638): loc_eng_ioctl called: client = 0, ioctl_type = RPC_LOC_IOCTL_SET_UMTS_SLP_SERVER_ADDR

I/Database( 1751): sqlite returned: error code = 0, msg = Recovered 4 frames from WAL file /data/data/com.android.launcher/databases/launcher.db-wal

I/Database( 1808): sqlite returned: error code = 0, msg = Recovered 415 frames from WAL file /data/data/com.android.providers.contacts/databases/contacts2.db-wal

D/libloc ( 1638): loc_eng_ioctl result: client = 0, ioctl_type = RPC_LOC_IOCTL_SET_ENGINE_LOCK, RPC_LOC_API_SUCCESS

D/libloc ( 1638): loc_eng_deferred_action_thread. waiting for events

D/dalvikvm( 1638): GC_CONCURRENT freed 440K, 38% free 4869K/7751K, external 1872K/2037K, paused 7ms+13ms

D/androidNlpServiceThread( 1766): ANDROID minProtocolVersion 1 maxProtocolVersion 1 releaseVersion -1

D/androidNlpServiceThread( 1766): This NLP should run continuously.

D/NetworkLocationRealOs( 1766): NLPv2 file already exists; ignoring any NLPv1 files

I/ActivityManager( 1638): Start proc com.android.settings for broadcast com.android.settings/.widget.SettingsAppWidgetProvider: pid=1838 uid=1000 gids={3002, 3001, 3003}

D/LocationProviderProxy( 1638): LocationProviderProxy.onServiceConnected ComponentInfo{com.google.android.location/com.google.android.location.NetworkLocationService}

D/NetworkLocationClient( 1766): onServiceConnected to ComponentInfo{com.google.android.location/com.google.android.location.internal.server.NetworkLocationService}

D/GeocoderProxy( 1638): onServiceConnected ComponentInfo{com.google.android.location/com.google.android.location.NetworkLocationService}

I/TelephonyRegistry( 1638): notifyServiceState: 1 home Unknown CSS not supported -1 -1RoamInd: -1DefRoamInd: -1EmergOnly: false

D/androidNlpServiceThread( 1766): updateState: shouldBeEnabled true shouldBeRunning true

D/Tethering( 1638): MasterInitialState.processMessage what=3

D/androidNlpServiceThread( 1766): Creating RealOs

D/dalvikvm( 1638): GC_EXTERNAL_ALLOC freed 109K, 38% free 4816K/7751K, external 1265K/1777K, paused 244ms

D/szipinf ( 1766): Initializing inflate state

D/szipinf ( 1766): Initializing zlib to inflate

D/szipinf ( 1838): Initializing inflate state

I/ActivityThread( 1808): Pub call_log: com.android.providers.contacts.CallLogProvider

E/loc_api_rpc_glue( 1638): loc_api_sync_ioctl: loc_api_wait_callback failed, returned 8 (select id 1)

D/libloc ( 1638): loc_eng_ioctl result: client = 0, ioctl_type = RPC_LOC_IOCTL_SET_UMTS_SLP_SERVER_ADDR, RPC_LOC_API_TIMEOUT

E/libloc ( 1638): loc_eng_set_server failed

D/PowerManagerService( 1638): bootCompleted

I/SurfaceFlinger( 1638): Boot is finished (13196 ms)

D/Tethering( 1638): sendTetherStateChangedBroadcast 1, 0, 0

D/Tethering( 1638): interfaceAdded :usb0

D/VoldCmdListener( 1511): volume mount /mnt/sdcard

I/Vold ( 1511): /dev/block/vold/179:1 being considered for volume sdcard

D/Vold ( 1511): Volume sdcard state changing 1 (Idle-Unmounted) -> 3 (Checking)

W/Vold ( 1511): Skipping fs checks

I/StorageNotification( 1714): Media {/mnt/sdcard} state changed from {unmounted} -> {checking}

I/Vold ( 1511): Device /dev/block/vold/179:1, target /mnt/sdcard mounted @ /mnt/secure/staging

I/PackageManager( 1638): Updating external media status from unmounted to mounted

D/Vold ( 1511): Volume sdcard state changing 3 (Checking) -> 4 (Mounted)

I/StorageNotification( 1714): Media {/mnt/sdcard} state changed from {checking} -> {mounted}

D/dalvikvm( 1766): GC_CONCURRENT freed 166K, 45% free 3225K/5831K, external 716K/1038K, paused 5ms+22ms

I/SearchManagerService( 1638): Building list of searchable activities

D/dalvikvm( 1766): GC_CONCURRENT freed 154K, 43% free 3586K/6215K, external 716K/1038K, paused 5ms+25ms

D/VoldCmdListener( 1511): asec list

I/PackageManager( 1638): No secure containers on sdcard

D/szipinf ( 1638): Initializing inflate state

W/PackageManager( 1638): Unknown permission com.android.vending.permission.UPDATE_MARKET_FAILURE in package com.android.vending.updater

W/PackageManager( 1638): Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone

W/PackageManager( 1638): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x9be45)

D/szipinf ( 1808): Initializing inflate state

D/dalvikvm( 1808): GC_CONCURRENT freed 152K, 48% free 2942K/5575K, external 716K/1038K, paused 5ms+5ms

W/PackageManager( 1638): Not granting permission android.permission.WRITE_SECURE_SETTINGS to package com.whatsapp (protectionLevel=3 flags=0xbe44)

W/PackageManager( 1638): Unknown permission android.permission.READ_OWNER_DATA in package com.android.setupwizard

W/PackageManager( 1638): Unknown permission android.permission.WRITE_OWNER_DATA in package com.android.setupwizard

W/PackageManager( 1638): Not granting permission com.google.android.gm.permission.READ_GMAIL to package com.google.android.apps.uploader (protectionLevel=2 flags=0xbe45)

W/PackageManager( 1638): Unknown permission com.google.android.voicesearch.SHORTCUTS_ACCESS in package com.google.android.googlequicksearchbox

W/PackageManager( 1638): Unknown permission android.permission.READ_EXTERNAL_STORAGE in package com.android.vending

W/PackageManager( 1638): Not granting permission android.permission.CHANGE_COMPONENT_ENABLED_STATE to package com.android.vending (protectionLevel=3 flags=0xabec5)

W/PackageManager( 1638): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.vending (protectionLevel=2 flags=0xabec5)

W/PackageManager( 1638): Not granting permission android.permission.STATUS_BAR to package com.android.vending (protectionLevel=3 flags=0xabec5)

W/PackageManager( 1638): Unknown permission com.google.android.voicesearch.AUDIO_FILE_ACCESS in package com.google.android.gm

W/PackageManager( 1638): Unknown permission android.permission.READ_OWNER_DATA in package com.android.email

W/PackageManager( 1638): Not granting permission android.permission.DEVICE_POWER to package com.android.deskclock (protectionLevel=2 flags=0x8be45)

D/szipinf ( 1808): Initializing inflate state

D/szipinf ( 1808): Initializing inflate state

D/szipinf ( 1808): Initializing inflate state

D/szipinf ( 1808): Initializing inflate state

D/szipinf ( 1808): Initializing inflate state

D/szipinf ( 1808): Initializing inflate state

D/szipinf ( 1808): Initializing inflate state

D/szipinf ( 1808): Initializing inflate state

D/szipinf ( 1808): Initializing inflate state

I/ActivityManager( 1638): Start proc com.google.android.partnersetup for broadcast com.google.android.partnersetup/.PhoneStateReceiver: pid=1856 uid=10019 gids={3003}

D/NetworkLocator( 1766): null cell state delivered

D/NetworkLocator( 1766): null cell state delivered

D/NetworkLocator( 1766): null cell state delivered

E/wpa_supplicant( 1785): Ongoing Scan action...

D/szipinf ( 1638): Initializing inflate state

I/ActivityThread( 1856): Pub com.google.android.partnersetup.rlzprovider: com.google.android.partnersetup.RlzProvider

D/szipinf ( 1751): Initializing inflate state

D/dalvikvm( 1751): GC_CONCURRENT freed 101K, 47% free 2971K/5511K, external 1889K/2005K, paused 4ms+5ms

I/ActivityThread( 1856): Pub com.google.android.partnersetup.rlzappprovider: com.google.android.partnersetup.RlzAppProvider

I/Database( 1808): sqlite returned: error code = 0, msg = Recovered 4 frames from WAL file /data/data/com.android.providers.userdictionary/databases/user_dict.db-wal

D/szipinf ( 1751): Initializing inflate state

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

D/androidNlpServiceThread( 1766): updateState: shouldBeEnabled true shouldBeRunning true

I/System.out( 1766): [INFO:5316]: LogSource: Running flush

I/System.out( 1766): [INFO:5339]: LogSource: Sending payload [bytes=293]

D/androidNlpServiceThread( 1766): updateState: shouldBeEnabled true shouldBeRunning true

D/androidNlpServiceThread( 1766): updateState: shouldBeEnabled true shouldBeRunning true

V/SipBroadcastReceiver( 1746): start auto registration

I/ActivityManager( 1638): Start proc android.process.media for broadcast com.android.providers.downloads/.DownloadReceiver: pid=1869 uid=10011 gids={1015, 2001, 3003}

I/System.out( 1766): [SEVERE:5421]: LogSource: AsyncHttpRequestImpl.run(): exception thrown : www.google.com: java.net.UnknownHostException

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

E/GlsClient-query( 1766): requestFailed

E/GlsClient-query( 1766): java.net.UnknownHostException: www.google.com

E/GlsClient-query( 1766): at java.net.InetAddress.lookupHostByName(InetAddress.java:506)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByNameImpl(InetAddress.java:294)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByName(InetAddress.java:256)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:136)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)

E/GlsClient-query( 1766): at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:359)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.executeWithoutRewriting(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponse(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponseCode(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory$AsyncHttpRequestImpl.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.executeNextRequest(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.lang.BaseThreadFactory$ThreadImpl.run(Unknown Source)

D/szipinf ( 1869): Initializing inflate state

D/androidNlpServiceThread( 1766): adding listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8 with period 2147483647

D/androidNetworkLocationListeners( 1766): Still have listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8

D/androidNlpServiceThread( 1766): adding listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8 with period 86400

D/androidNetworkLocationListeners( 1766): Still have listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8

D/androidNlpServiceThread( 1766): adding listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8 with period 86400

D/androidNetworkLocationListeners( 1766): Still have listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8

D/dalvikvm( 1515): GC_EXPLICIT freed 10K, 50% free 2704K/5379K, external 716K/1038K, paused 136ms

I/ActivityThread( 1869): Pub media: com.android.providers.media.MediaProvider

D/NetworkLocator( 1766): null cell state delivered

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

D/NetworkLocator( 1766): null cell state delivered

I/System.out( 1766): [INFO:5579]: LogSource: Running flush

I/System.out( 1766): [INFO:5582]: LogSource: Sending payload [bytes=293]

I/System.out( 1766): [SEVERE:5584]: LogSource: AsyncHttpRequestImpl.run(): exception thrown : www.google.com: java.net.UnknownHostException

D/NetworkLocator( 1766): null cell state delivered

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

E/GlsClient-query( 1766): requestFailed

E/GlsClient-query( 1766): java.net.UnknownHostException: www.google.com

E/GlsClient-query( 1766): at java.net.InetAddress.lookupHostByName(InetAddress.java:497)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByNameImpl(InetAddress.java:294)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByName(InetAddress.java:256)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:136)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)

E/GlsClient-query( 1766): at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:359)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.executeWithoutRewriting(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponse(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponseCode(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory$AsyncHttpRequestImpl.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.executeNextRequest(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.lang.BaseThreadFactory$ThreadImpl.run(Unknown Source)

V/MediaProvider( 1869): Attached volume: internal

V/MediaProvider( 1869): /mnt/sdcard volume ID: 1141482768

D/dalvikvm( 1515): GC_EXPLICIT freed <1K, 50% free 2704K/5379K, external 716K/1038K, paused 124ms

D/dalvikvm( 1515): GC_EXPLICIT freed <1K, 50% free 2704K/5379K, external 716K/1038K, paused 45ms

V/MediaProvider( 1869): Attached volume: external

I/ActivityThread( 1869): Pub downloads: com.android.providers.downloads.DownloadProvider

I/ActivityThread( 1869): Pub drm: com.android.providers.drm.DrmProvider

I/ActivityManager( 1638): Start proc com.google.android.apps.uploader for broadcast com.google.android.apps.uploader/.ConnectivityBroadcastReceiver: pid=1879 uid=10027 gids={3003}

I/ActivityThread( 1879): Pub com.google.android.apps.uploader: com.google.android.apps.uploader.UploadsContentProvider

I/ActivityThread( 1879): Pub com.google.photos.provider.Album: com.google.android.apps.uploader.clients.picasa.AlbumProvider

D/MediaUploader( 1879): UploaderApplication.onCreate

D/dalvikvm( 1766): GC_CONCURRENT freed 796K, 51% free 3260K/6535K, external 716K/1038K, paused 4ms+5ms

D/MediaUploader( 1879): nonWifiLimit=20971520, default=20971520

I/MediaUploader( 1879): No need to wake up

I/ActivityManager( 1638): Start proc com.facebook.katana for broadcast com.facebook.katana/.binding.UploadManagerConnectivity: pid=1890 uid=10043 gids={3003, 1015}

D/szipinf ( 1751): Initializing inflate state

D/GTalkService( 1766): [RawStanzaProvidersMgr] ##### searchProvidersFromIntent

D/szipinf ( 1638): Initializing inflate state

D/GTalkService( 1766): [RawStanzaProvidersMgr] no intent receivers found

D/GTalkService( 1766): ##### Network broadcast (connected=false) type=WIFI, state=DISCONNECTED

I/ActivityThread( 1890): Pub com.facebook.katana.provider.LoggingProvider: com.facebook.katana.provider.LoggingProvider

I/ActivityThread( 1890): Pub com.facebook.katana.provider.NotificationsProvider: com.facebook.katana.provider.NotificationsProvider

I/ActivityThread( 1890): Pub com.facebook.katana.provider.KeyValueProvider: com.facebook.katana.provider.KeyValueProvider

I/ActivityThread( 1890): Pub com.facebook.katana.provider.ChatHistoryProvider: com.facebook.katana.provider.ChatHistoryProvider

I/ActivityThread( 1890): Pub com.facebook.katana.provider.CacheProvider: com.facebook.katana.provider.CacheProvider

I/ActivityThread( 1890): Pub com.facebook.katana.provider.UserValuesProvider: com.facebook.katana.provider.UserValuesProvider

I/ActivityThread( 1890): Pub com.facebook.katana.provider.PagesProvider: com.facebook.katana.provider.PagesProvider

I/ActivityThread( 1890): Pub com.facebook.katana.provider.MailboxProvider: com.facebook.katana.provider.MailboxProvider

I/ActivityThread( 1890): Pub com.facebook.katana.provider.UserStatusesProvider: com.facebook.katana.provider.UserStatusesProvider

I/ActivityThread( 1890): Pub com.facebook.katana.provider.PhotosProvider: com.facebook.katana.provider.PhotosProvider

I/ActivityThread( 1890): Pub com.facebook.katana.provider.EventsProvider: com.facebook.katana.provider.EventsProvider

I/ActivityThread( 1890): Pub com.facebook.katana.provider.ConnectionsProvider: com.facebook.katana.provider.ConnectionsProvider

D/ACRA ( 1890): Retrieve application default SharedPreferences.

D/ACRA ( 1890): Set OnSharedPreferenceChangeListener.

D/ACRA ( 1890): ACRA is enabled for com.facebook.katana, intializing...

D/GTalkService( 1766): [GTalkConnection.27] init: initialized presence to UNAVAILABLE

D/GTalkService( 1766): [GTalkConnection.26] init: initialized presence to UNAVAILABLE

D/dalvikvm( 1890): GC_CONCURRENT freed 241K, 46% free 3160K/5831K, external 716K/1038K, paused 5ms+13ms

D/ACRA ( 1890): Looking for error files in /data/data/com.facebook.katana/app_acra-reports

D/GTalkService( 1766): createConnection(check #2): connection exists, drop newly created connection

D/szipinf ( 1751): Initializing inflate state

D/szipinf ( 1751): Initializing inflate state

D/szipinf ( 1638): Initializing inflate state

I/ActivityManager( 1638): Start proc com.google.android.gm for broadcast com.google.android.gm/.downloadprovider.DownloadReceiver: pid=1903 uid=10016 gids={3003, 1015}

I/ActivityThread( 1903): Pub gmail-ls: com.google.android.gm.provider.MailProvider

D/szipinf ( 1751): Initializing inflate state

D/szipinf ( 1751): Initializing inflate state

D/szipinf ( 1751): Initializing inflate state

D/szipinf ( 1751): Initializing inflate state

I/ActivityThread( 1903): Pub com.google.android.gm.attachmentspreviews: com.google.android.gm.AttachmentPreviewProvider

I/ActivityThread( 1903): Pub com.google.android.gmail.SuggestionProvider: com.google.android.gm.SuggestionsProvider

I/ActivityThread( 1903): Pub gmail-downloads: com.google.android.gm.downloadprovider.DownloadProvider

I/ActivityThread( 1903): Pub com.google.android.gm: com.google.android.gm.provider.PublicContentProvider

D/szipinf ( 1751): Initializing inflate state

D/OtaStartupReceiver( 1746): Not a CDMA phone, no need to process OTA

I/ActivityManager( 1638): Start proc com.android.bluetooth for broadcast com.android.bluetooth/.opp.BluetoothOppReceiver: pid=1913 uid=10001 gids={3003, 3002, 3001, 1015}

I/RecoverySystem( 1638): No recovery log file

D/szipinf ( 1913): Initializing inflate state

I/ActivityThread( 1913): Pub com.android.bluetooth.opp: com.android.bluetooth.opp.BluetoothOppProvider

I/ActivityManager( 1638): Start proc com.android.providers.calendar for broadcast com.android.providers.calendar/.CalendarReceiver: pid=1921 uid=10006 gids={3003}

I/ActivityThread( 1921): Pub com.android.calendar: com.android.providers.calendar.CalendarProvider2

I/Database( 1913): sqlite returned: error code = 0, msg = Recovered 5 frames from WAL file /data/data/com.android.bluetooth/databases/btopp.db-wal

I/Database( 1921): sqlite returned: error code = 0, msg = Recovered 74 frames from WAL file /data/data/com.android.providers.calendar/databases/calendar.db-wal

I/Database( 1869): sqlite returned: error code = 0, msg = Recovered 8 frames from WAL file /data/data/com.android.providers.downloads/databases/downloads.db-wal

I/ActivityManager( 1638): Start proc com.android.deskclock for broadcast com.android.deskclock/.AlarmInitReceiver: pid=1934 uid=10010 gids={}

D/szipinf ( 1934): Initializing inflate state

I/ActivityThread( 1934): Pub com.android.deskclock: com.android.deskclock.AlarmProvider

I/dalvikvm( 1638): Jit: resizing JitTable from 512 to 1024

I/Database( 1934): sqlite returned: error code = 0, msg = Recovered 4 frames from WAL file /data/data/com.android.deskclock/databases/alarms.db-wal

I/ActivityManager( 1638): Start proc com.android.email for broadcast com.android.email/.service.EmailBroadcastReceiver: pid=1943 uid=10012 gids={3003, 1015}

D/dalvikvm( 1638): GC_EXPLICIT freed 642K, 39% free 5002K/8135K, external 1865K/3065K, paused 103ms

D/szipinf ( 1943): Initializing inflate state

D/Calendar( 1921): missed alarms found: 0

I/ActivityThread( 1943): Pub com.android.email.provider: com.android.email.provider.EmailProvider

I/ActivityThread( 1943): Pub com.android.email.attachmentprovider: com.android.email.provider.AttachmentProvider

I/ActivityThread( 1943): Pub com.android.exchange.provider: com.android.exchange.provider.ExchangeProvider

I/Database( 1943): sqlite returned: error code = 0, msg = Recovered 28 frames from WAL file /data/data/com.android.email/databases/EmailProvider.db-wal

I/ActivityManager( 1638): Start proc com.cyanogenmod.android.fotakill for broadcast com.cyanogenmod.android.fotakill/.FOTAKillReceiver: pid=1956 uid=10013 gids={}

D/EAS SyncManager( 1943): !!! EAS SyncManager, onCreate

V/FOTAKill( 1956): Killing FOTA

I/Database( 1943): sqlite returned: error code = 0, msg = Recovered 6 frames from WAL file /data/data/com.android.email/databases/EmailProviderBody.db-wal

D/EAS SyncManager( 1943): !!! EAS SyncManager, onStartCommand

D/androidNlpServiceThread( 1766): updateState: shouldBeEnabled true shouldBeRunning true

D/EAS SyncManager( 1943): !!! EAS SyncManager, stopping self

D/androidNlpServiceThread( 1766): updateState: shouldBeEnabled true shouldBeRunning true

D/androidNlpServiceThread( 1766): updateState: shouldBeEnabled true shouldBeRunning true

D/dalvikvm( 1751): GC_EXTERNAL_ALLOC freed 44K, 46% free 3020K/5511K, external 2005K/2005K, paused 233ms

D/Eas Debug( 1943): Logging:

D/EAS SyncManager( 1943): !!! EAS SyncManager, onDestroy

I/RlzPingService( 1856): Setting next ping for 1334899699996

V/update.Download( 1766): deleting all update downloads

I/ActivityManager( 1638): Starting: Intent { flg=0x10000000 cmp=com.google.android.gsf/.update.SystemUpdateInstallDialog } from pid 1766

D/GTalkService( 1766): [ServiceAutoStarter] Talk setting: alwaysSignIn=false, clear last login state

I/ActivityManager( 1638): Start proc com.android.mms for broadcast com.android.mms/.transaction.MmsSystemEventReceiver: pid=1974 uid=10028 gids={3003, 1015}

D/szipinf ( 1974): Initializing inflate state

D/dalvikvm( 1766): GC_CONCURRENT freed 268K, 48% free 3461K/6535K, external 716K/1038K, paused 4ms+19ms

I/ActivityManager( 1638): Displayed com.android.launcher/com.android.launcher2.Launcher: +13s73ms

I/ActivityThread( 1974): Pub com.android.mms.SuggestionsProvider: com.android.mms.SuggestionsProvider

D/MediaScannerService( 1869): start scanning volume internal

I/Database( 1746): sqlite returned: error code = 0, msg = Recovered 37 frames from WAL file /data/data/com.android.providers.telephony/databases/mmssms.db-wal

D/Email ( 1943): BOOT_COMPLETED

I/ActivityManager( 1638): Start proc com.google.android.talk for broadcast com.google.android.talk/.videochat.BootCompleteReceiver: pid=1995 uid=10036 gids={3003, 1015, 1006}

D/EAS SyncManager( 1943): !!! EAS SyncManager, onCreate

D/EAS SyncManager( 1943): !!! EAS SyncManager, onStartCommand

D/EAS SyncManager( 1943): !!! EAS SyncManager, stopping self

D/EAS SyncManager( 1943): !!! EAS SyncManager, onStartCommand

D/EAS SyncManager( 1943): !!! EAS SyncManager, stopping self

D/EAS SyncManager( 1943): !!! EAS SyncManager, onDestroy

I/ActivityThread( 1995): Pub com.google.android.talk.SuggestionProvider: com.google.android.talk.SuggestionsProvider

D/szipinf ( 1751): Initializing inflate state

I/ActivityManager( 1638): Start proc com.google.android.youtube for broadcast com.google.android.youtube/.core.transfer.DownloadService$BootReceiver: pid=2009 uid=10046 gids={3003, 1015}

D/dalvikvm( 1515): GC_EXPLICIT freed 11K, 50% free 2704K/5379K, external 716K/1038K, paused 188ms

D/dalvikvm( 1515): GC_EXPLICIT freed <1K, 50% free 2704K/5379K, external 716K/1038K, paused 81ms

I/ActivityThread( 2009): Pub com.google.android.youtube.SuggestionProvider: com.google.android.youtube.core.suggest.SuggestionProvider

D/dalvikvm( 1515): GC_EXPLICIT freed <1K, 50% free 2704K/5379K, external 716K/1038K, paused 53ms

D/dalvikvm( 2009): GC_CONCURRENT freed 345K, 48% free 3048K/5831K, external 716K/1038K, paused 5ms+5ms

I/ActivityManager( 1638): Start proc com.whatsapp for broadcast com.whatsapp/.BootReceiver: pid=2040 uid=10042 gids={1015, 3003}

I/Database( 2009): sqlite returned: error code = 0, msg = Recovered 5 frames from WAL file /data/data/com.google.android.youtube/databases/downloads.db-wal

I/talk ( 1995): Refresh the supporeted camera state

D/QualcommCameraHardware( 1516): createInstance: E

I/Database( 1869): sqlite returned: error code = 0, msg = Recovered 52 frames from WAL file /data/data/com.android.providers.media/databases/internal.db-wal

D/szipinf ( 1751): Initializing inflate state

I/QualcommCameraHardware( 1516): startCamera: camsensor name isx005, flash 0

D/dalvikvm( 2040): GC_CONCURRENT freed 269K, 47% free 3131K/5831K, external 716K/1038K, paused 4ms+9ms

I/dalvikvm( 2040): Could not find method android.media.MediaMetadataRetriever.captureFrame, referenced from method com.whatsapp.gab.a

W/dalvikvm( 2040): VFY: unable to resolve virtual method 507: Landroid/media/MediaMetadataRetriever;.captureFrame ()Landroid/graphics/Bitmap;

D/dalvikvm( 2040): VFY: replacing opcode 0x6e at 0x011f

D/dalvikvm( 2040): VFY: dead code 0x0122-0128 in Lcom/whatsapp/gab;.a (Landroid/app/Activity;Lcom/whatsapp/xp;Ljava/lang/String;Ljava/io/File;BLjava/lang/String;)Z

D/dalvikvm( 2040): GC_CONCURRENT freed 213K, 44% free 3428K/6087K, external 716K/1038K, paused 5ms+12ms

D/szipinf ( 1751): Initializing inflate state

I/ActivityManager( 1638): Start proc com.noshufou.android.su for broadcast com.noshufou.android.su/.UpdatePermissionsReceiver: pid=2059 uid=10035 gids={3003, 1015}

I/ActivityThread( 2059): Pub com.noshufou.android.su.provider: com.noshufou.android.su.provider.PermissionsProvider

D/Su.Util ( 2059): Start PermissionsDbService

I/ActivityManager( 1638): Start proc com.buak.Link2SD for broadcast com.buak.Link2SD/.BootReceiver: pid=2069 uid=10039 gids={1015}

D/Su.PermissionsDbService( 2059): onHandleIntent()

I/ActivityManager( 1638): Start proc com.google.android.apps.genie.geniewidget for broadcast com.google.android.apps.genie.geniewidget/.miniwidget.MiniWidgetProvider: pid=2078 uid=10015 gids={3003, 1015}

I/ActivityThread( 2078): Pub com.google.android.apps.genie.geniewidget.weather: com.google.android.apps.genie.geniewidget.providers.WeatherProvider

W/MessageQueue( 1903): Handler{40559800} sending message to a Handler on a dead thread

W/MessageQueue( 1903): java.lang.RuntimeException: Handler{40559800} sending message to a Handler on a dead thread

W/MessageQueue( 1903): at android.os.MessageQueue.enqueueMessage(MessageQueue.java:196)

W/MessageQueue( 1903): at android.os.Handler.sendMessageAtTime(Handler.java:457)

W/MessageQueue( 1903): at android.os.Handler.sendMessageDelayed(Handler.java:430)

W/MessageQueue( 1903): at android.os.Handler.post(Handler.java:248)

W/MessageQueue( 1903): at android.accounts.AccountManager$BaseFutureTask.postRunnableToHandler(AccountManager.java:1327)

W/MessageQueue( 1903): at android.accounts.AccountManager$Future2Task.done(AccountManager.java:1375)

W/MessageQueue( 1903): at java.util.concurrent.FutureTask$Sync.innerSet(FutureTask.java:253)

W/MessageQueue( 1903): at java.util.concurrent.FutureTask.set(FutureTask.java:113)

W/MessageQueue( 1903): at android.accounts.AccountManager$BaseFutureTask.access$700(AccountManager.java:1307)

W/MessageQueue( 1903): at android.accounts.AccountManager$BaseFutureTask$Response.onResult(AccountManager.java:1345)

W/MessageQueue( 1903): at android.accounts.IAccountManagerResponse$Stub.onTransact(IAccountManagerResponse.java:59)

W/MessageQueue( 1903): at android.os.Binder.execTransact(Binder.java:320)

W/MessageQueue( 1903): at dalvik.system.NativeStart.run(Native Method)

I/ActivityThread( 2078): Pub com.google.android.apps.genie.geniewidget.newsimage: com.google.android.apps.genie.geniewidget.providers.NewsImageProvider

D/Su.PermissionsDbService( 2059): permissions.sqlite opened

D/szipinf ( 1751): Initializing inflate state

W/Genie ( 2078): Cache file not found: java.io.FileNotFoundException: /data/data/com.google.android.apps.genie.geniewidget/files/genie_iconcache (No such file or directory)

D/Su.PermissionsDbService( 2059): got cursor from su.db

D/Su.PermissionsDbService( 2059): closing permissions.sqlite

I/Database( 1903): sqlite returned: error code = 0, msg = Recovered 5 frames from WAL file /data/data/com.google.android.gm/databases/downloads.db-wal

D/MediaScanner( 1869): prescan time: 1925ms

D/MediaScanner( 1869): scan time: 1502ms

D/MediaScanner( 1869): postscan time: 11ms

D/MediaScanner( 1869): total time: 3438ms

D/MediaScannerService( 1869): done scanning volume internal

I/ActivityManager( 1638): No longer want com.android.settings (pid 1838): hidden #16

I/Genie ( 2078): refresh service retry #0, ignoreMASFCache = false

I/ActivityManager( 1638): Start proc com.android.music for broadcast com.android.music/.MediaAppWidgetProvider: pid=2092 uid=10029 gids={3003, 1015}

D/szipinf ( 2092): Initializing inflate state

D/dalvikvm( 1638): GC_EXPLICIT freed 592K, 39% free 5034K/8135K, external 1865K/3065K, paused 252ms

I/ActivityManager( 1638): Start proc com.google.android.googlequicksearchbox for broadcast com.google.android.googlequicksearchbox/.SearchWidgetProvider: pid=2101 uid=10020 gids={3003}

I/ActivityManager( 1638): No longer want com.google.android.apps.uploader (pid 1879): hidden #16

D/androidNlpServiceThread( 1766): adding listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8 with period 45

D/androidNetworkLocationListeners( 1766): Still have listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8

D/NetworkLocator( 1766): null cell state delivered

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

D/androidNlpServiceThread( 1766): adding listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8 with period 45

D/androidNetworkLocationListeners( 1766): Still have listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8

D/NetworkLocator( 1766): null cell state delivered

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

I/System.out( 1766): [INFO:14561]: LogSource: Running flush

I/System.out( 1766): [INFO:14564]: LogSource: Sending payload [bytes=293]

I/System.out( 1766): [SEVERE:14568]: LogSource: AsyncHttpRequestImpl.run(): exception thrown : www.google.com: java.net.UnknownHostException

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

E/GlsClient-query( 1766): requestFailed

E/GlsClient-query( 1766): java.net.UnknownHostException: www.google.com

E/GlsClient-query( 1766): at java.net.InetAddress.lookupHostByName(InetAddress.java:497)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByNameImpl(InetAddress.java:294)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByName(InetAddress.java:256)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:136)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)

E/GlsClient-query( 1766): at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:359)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.executeWithoutRewriting(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponse(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponseCode(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory$AsyncHttpRequestImpl.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.executeNextRequest(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.lang.BaseThreadFactory$ThreadImpl.run(Unknown Source)

I/System.out( 1766): [INFO:14591]: LogSource: Running flush

I/ActivityManager( 1638): No longer want com.facebook.katana (pid 1890): hidden #16

I/System.out( 1766): [INFO:14596]: LogSource: Sending payload [bytes=293]

I/System.out( 1766): [SEVERE:14599]: LogSource: AsyncHttpRequestImpl.run(): exception thrown : www.google.com: java.net.UnknownHostException

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

E/GlsClient-query( 1766): requestFailed

E/GlsClient-query( 1766): java.net.UnknownHostException: www.google.com

E/GlsClient-query( 1766): at java.net.InetAddress.lookupHostByName(InetAddress.java:497)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByNameImpl(InetAddress.java:294)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByName(InetAddress.java:256)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:136)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)

E/GlsClient-query( 1766): at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:359)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.executeWithoutRewriting(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponse(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponseCode(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory$AsyncHttpRequestImpl.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.executeNextRequest(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.lang.BaseThreadFactory$ThreadImpl.run(Unknown Source)

I/ActivityThread( 2101): Pub com.google.android.googlequicksearchbox.shortcuts: com.google.android.googlequicksearchbox.WebHistoryProvider

I/ActivityThread( 2101): Pub com.google.android.googlequicksearchbox.google: com.google.android.googlequicksearchbox.google.GoogleSuggestionProvider

D/szipinf ( 1751): Initializing inflate state

I/QualcommCameraHardware( 1516): Parameter Rolloff is not supported for this sensor

I/QualcommCameraHardware( 1516): Parameter Rolloff is not supported for this sensor

D/QualcommCameraHardware( 1516): createInstance: X created hardware=0xfd98

I/StagefrightPlayer( 1516): setDataSource('/system/media/audio/ui/camera_click.ogg')

I/ActivityManager( 1638): Start proc com.android.vending for broadcast com.android.vending/.MarketWidgetProvider: pid=2118 uid=10038 gids={3003, 1015}

I/ActivityManager( 1638): No longer want android.process.acore (pid 1808): hidden #16

I/StagefrightPlayer( 1516): setDataSource('/system/media/audio/ui/VideoRecord.ogg')

D/QualcommCameraHardware( 1516): release E

E/mm-camera( 1516): config_proc_CAMERA_STOP_SNAPSHOT: state is not correct ctrl->state = 0

E/mm-camera( 1516): config_proc_CAMERA_STOP_SNAPSHOT:1517 vfeStopFn failed!

I/ActivityManager( 1638): No longer want com.android.bluetooth (pid 1913): hidden #16

D/QualcommCameraHardware( 1516): release X

D/QualcommCameraHardware( 1516): ~QualcommCameraHardware E

D/QualcommCameraHardware( 1516): ~QualcommCameraHardware X

I/talk ( 1995): supported front camera id: -1

I/talk ( 1995): supported back camera id: 0

I/ActivityThread( 2118): Pub com.google.android.finsky.RecentSuggestionsProvider: com.google.android.finsky.providers.RecentSuggestionsProvider

D/dalvikvm( 2118): GC_CONCURRENT freed 352K, 48% free 3050K/5831K, external 716K/1038K, paused 4ms+5ms

D/Finsky ( 2118): [1] SanityChecker.run: # LocalAssets corrected : 0

D/Finsky ( 2118): Sanity check took : 185 ms

D/dalvikvm( 2118): DexOpt: couldn't find field Landroid/content/res/Configuration;.smallestScreenWidthDp

W/dalvikvm( 2118): VFY: unable to resolve instance field 78

D/dalvikvm( 2118): VFY: replacing opcode 0x52 at 0x001e

D/dalvikvm( 2118): VFY: dead code 0x0020-0021 in Lcom/google/android/finsky/api/DfeApiContext;.getSmallestScreenWidthDp (Landroid/content/Context;)Ljava/lang/String;

D/Finsky ( 2118): [1] DfeApiContext.getSmallestScreenWidthDp: smallestScreenWidthDp does not exist, using pre-ics hack.

I/ActivityManager( 1638): Start proc com.cooliris.media for broadcast com.cooliris.media/com.cooliris.cache.BootReceiver: pid=2145 uid=10014 gids={1015, 3003}

I/ActivityManager( 1638): No longer want com.android.providers.calendar (pid 1921): hidden #16

D/szipinf ( 2145): Initializing inflate state

I/ActivityThread( 2145): Pub com.cooliris.picasa.contentprovider: com.cooliris.picasa.PicasaContentProvider

D/dalvikvm( 1751): GC_EXPLICIT freed 253K, 47% free 3125K/5831K, external 2407K/2467K, paused 108ms

I/Database( 2145): sqlite returned: error code = 0, msg = Recovered 10 frames from WAL file /data/data/com.cooliris.media/databases/picasa.db-wal

I/BootReceiver( 2145): Got intent with action android.intent.action.MEDIA_MOUNTED

I/ActivityManager( 1638): Start proc com.google.android.apps.uploader for broadcast com.google.android.apps.uploader/.ConnectivityBroadcastReceiver: pid=2157 uid=10027 gids={3003}

I/ActivityThread( 2157): Pub com.google.android.apps.uploader: com.google.android.apps.uploader.UploadsContentProvider

I/ActivityThread( 2157): Pub com.google.photos.provider.Album: com.google.android.apps.uploader.clients.picasa.AlbumProvider

D/MediaUploader( 2157): UploaderApplication.onCreate

D/MediaUploader( 2157): nonWifiLimit=20971520, default=20971520

I/MediaUploader( 2157): No need to wake up

I/ActivityManager( 1638): Start proc com.android.settings for broadcast com.android.settings/.CPUReceiver: pid=2167 uid=1000 gids={3002, 3001, 3003}

I/ActivityManager( 1638): No longer want com.android.deskclock (pid 1934): hidden #16

D/szipinf ( 2167): Initializing inflate state

D/MediaScannerService( 1869): start scanning volume external

D/CPUSettings( 2167): CPU settings restored.

D/dalvikvm( 2118): GC_CONCURRENT freed 335K, 47% free 3182K/5959K, external 716K/1038K, paused 4ms+26ms

I/GservicesProvider( 1766): override update completed

I/BootReceiver( 2145): Got intent with action android.intent.action.MEDIA_SCANNER_FINISHED

D/androidNlpServiceThread( 1766): updateState: shouldBeEnabled true shouldBeRunning true

D/androidNlpServiceThread( 1766): updateState: shouldBeEnabled true shouldBeRunning true

D/Finsky ( 2118): [23] DownloadRecords.initializeAndPrune: Pruned 0 old downloads from the cursor.

D/androidNlpServiceThread( 1766): updateState: shouldBeEnabled true shouldBeRunning true

V/update.Download( 1766): deleting all update downloads

I/ActivityManager( 1638): Starting: Intent { flg=0x10000000 cmp=com.google.android.gsf/.update.SystemUpdateInstallDialog } from pid 1766

D/dalvikvm( 1766): GC_CONCURRENT freed 404K, 47% free 3482K/6535K, external 718K/1038K, paused 7ms+11ms

D/dalvikvm( 1869): GC_CONCURRENT freed 193K, 48% free 2902K/5575K, external 716K/1038K, paused 3ms+5ms

D/dalvikvm( 1869): GC_CONCURRENT freed 54K, 44% free 3297K/5831K, external 716K/1038K, paused 20ms+4ms

D/dalvikvm( 1869): GC_CONCURRENT freed 35K, 41% free 3692K/6215K, external 716K/1038K, paused 3ms+4ms

D/dalvikvm( 1869): GC_CONCURRENT freed 467K, 45% free 3694K/6663K, external 716K/1038K, paused 3ms+3ms

D/androidNlpServiceThread( 1766): adding listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8 with period 86400

D/androidNetworkLocationListeners( 1766): Still have listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8

D/NetworkLocator( 1766): null cell state delivered

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

I/System.out( 1766): [INFO:24581]: LogSource: Running flush

I/System.out( 1766): [INFO:24583]: LogSource: Sending payload [bytes=293]

I/System.out( 1766): [SEVERE:24586]: LogSource: AsyncHttpRequestImpl.run(): exception thrown : www.google.com: java.net.UnknownHostException

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

E/GlsClient-query( 1766): requestFailed

E/GlsClient-query( 1766): java.net.UnknownHostException: www.google.com

E/GlsClient-query( 1766): at java.net.InetAddress.lookupHostByName(InetAddress.java:506)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByNameImpl(InetAddress.java:294)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByName(InetAddress.java:256)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:136)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)

E/GlsClient-query( 1766): at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:359)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.executeWithoutRewriting(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponse(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponseCode(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory$AsyncHttpRequestImpl.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.executeNextRequest(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.lang.BaseThreadFactory$ThreadImpl.run(Unknown Source)

D/androidNlpServiceThread( 1766): adding listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8 with period 45

D/androidNetworkLocationListeners( 1766): Still have listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8

D/NetworkLocator( 1766): null cell state delivered

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

D/androidNlpServiceThread( 1766): adding listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8 with period 45

D/androidNetworkLocationListeners( 1766): Still have listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8

D/NetworkLocator( 1766): null cell state delivered

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

I/System.out( 1766): [INFO:24625]: LogSource: Running flush

I/System.out( 1766): [INFO:24628]: LogSource: Sending payload [bytes=293]

I/System.out( 1766): [SEVERE:24630]: LogSource: AsyncHttpRequestImpl.run(): exception thrown : www.google.com: java.net.UnknownHostException

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

E/GlsClient-query( 1766): requestFailed

E/GlsClient-query( 1766): java.net.UnknownHostException: www.google.com

E/GlsClient-query( 1766): at java.net.InetAddress.lookupHostByName(InetAddress.java:497)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByNameImpl(InetAddress.java:294)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByName(InetAddress.java:256)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:136)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)

E/GlsClient-query( 1766): at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:359)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.executeWithoutRewriting(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponse(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponseCode(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory$AsyncHttpRequestImpl.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.executeNextRequest(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.lang.BaseThreadFactory$ThreadImpl.run(Unknown Source)

I/System.out( 1766): [INFO:24650]: LogSource: Running flush

I/System.out( 1766): [INFO:24652]: LogSource: Sending payload [bytes=293]

I/System.out( 1766): [SEVERE:24653]: LogSource: AsyncHttpRequestImpl.run(): exception thrown : www.google.com: java.net.UnknownHostException

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

E/GlsClient-query( 1766): requestFailed

E/GlsClient-query( 1766): java.net.UnknownHostException: www.google.com

E/GlsClient-query( 1766): at java.net.InetAddress.lookupHostByName(InetAddress.java:497)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByNameImpl(InetAddress.java:294)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByName(InetAddress.java:256)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:136)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)

E/GlsClient-query( 1766): at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:359)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.executeWithoutRewriting(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponse(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponseCode(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory$AsyncHttpRequestImpl.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.executeNextRequest(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.lang.BaseThreadFactory$ThreadImpl.run(Unknown Source)

D/Genie ( 2078): Request failed at, 2:28 13 de abril next auto-refresh time =3600000

D/dalvikvm( 2078): GC_CONCURRENT freed 335K, 48% free 3066K/5831K, external 716K/1038K, paused 3ms+5ms

I/ActivityManager( 1638): No longer want com.android.mms (pid 1974): hidden #16

D/androidNlpServiceThread( 1766): adding listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8 with period 86400

D/androidNetworkLocationListeners( 1766): Still have listener com.google.android.location.internal.client.NetworkLocationClient$1@4055a7e8

D/NetworkLocator( 1766): null cell state delivered

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

I/System.out( 1766): [INFO:24875]: LogSource: Running flush

I/System.out( 1766): [INFO:24878]: LogSource: Sending payload [bytes=293]

I/System.out( 1766): [SEVERE:24879]: LogSource: AsyncHttpRequestImpl.run(): exception thrown : www.google.com: java.net.UnknownHostException

D/WifiLocator( 1766): Too many cache misses. Need server request. hasLocation=0 noLocation=0 cacheMiss=2

E/GlsClient-query( 1766): requestFailed

E/GlsClient-query( 1766): java.net.UnknownHostException: www.google.com

E/GlsClient-query( 1766): at java.net.InetAddress.lookupHostByName(InetAddress.java:497)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByNameImpl(InetAddress.java:294)

E/GlsClient-query( 1766): at java.net.InetAddress.getAllByName(InetAddress.java:256)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.DefaultClientConnectionOperator.openConnection(DefaultClientConnectionOperator.java:136)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPoolEntry.open(AbstractPoolEntry.java:164)

E/GlsClient-query( 1766): at org.apache.http.impl.conn.AbstractPooledConnAdapter.open(AbstractPooledConnAdapter.java:119)

E/GlsClient-query( 1766): at org.apache.http.impl.client.DefaultRequestDirector.execute(DefaultRequestDirector.java:359)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:555)

E/GlsClient-query( 1766): at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:487)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.executeWithoutRewriting(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.GoogleHttpClient.execute(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponse(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.io.android.AndroidHttpConnectionFactory$AndroidGoogleHttpConnection.getResponseCode(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory$AsyncHttpRequestImpl.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.executeNextRequest(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.async.AsyncHttpRequestFactory.run(Unknown Source)

E/GlsClient-query( 1766): at com.google.common.lang.BaseThreadFactory$ThreadImpl.run(Unknown Source)

D/MediaScanner( 1869): found .nomedia, skipping directory

D/MediaScanner( 1869): prescan time: 2230ms

D/MediaScanner( 1869): scan time: 6733ms

D/MediaScanner( 1869): postscan time: 20ms

D/MediaScanner( 1869): total time: 8983ms

I/BootReceiver( 2145): Got intent with action android.intent.action.MEDIA_SCANNER_FINISHED

D/MediaScannerService( 1869): done scanning volume external

I/ActivityManager( 1638): No longer want com.android.email (pid 1943): hidden #16

D/GTalkService( 1766): [GTalkConnection.1] connect: network unavailable, set state=PENDING, err=NO_NETWORK

I/ActivityManager( 1638): Start proc android.process.acore for content provider com.android.providers.contacts/.ContactsProvider2: pid=2207 uid=10000 gids={3003, 1015}

I/ActivityThread( 2207): Pub user_dictionary: com.android.providers.userdictionary.UserDictionaryProvider

D/dalvikvm( 1515): GC_EXPLICIT freed 11K, 50% free 2704K/5379K, external 716K/1038K, paused 88ms

I/ActivityThread( 2207): Pub com.android.social: com.android.providers.contacts.SocialProvider

I/ActivityThread( 2207): Pub applications: com.android.providers.applications.ApplicationsProvider

D/dalvikvm( 1515): GC_EXPLICIT freed <1K, 50% free 2704K/5379K, external 716K/1038K, paused 78ms

I/ActivityThread( 2207): Pub contacts;com.android.contacts: com.android.providers.contacts.ContactsProvider2

D/dalvikvm( 1515): GC_EXPLICIT freed <1K, 50% free 2704K/5379K, external 716K/1038K, paused 77ms

I/Database( 2207): sqlite returned: error code = 0, msg = Recovered 415 frames from WAL file /data/data/com.android.providers.contacts/databases/contacts2.db-wal

I/ActivityThread( 2207): Pub call_log: com.android.providers.contacts.CallLogProvider

I/ActivityManager( 1638): No longer want com.google.android.talk (pid 1995): hidden #16

D/szipinf ( 2207): Initializing inflate state

D/szipinf ( 2207): Initializing inflate state

D/szipinf ( 2207): Initializing inflate state

D/szipinf ( 2207): Initializing inflate state

D/szipinf ( 2207): Initializing inflate state

D/szipinf ( 2207): Initializing inflate state

D/szipinf ( 2207): Initializing inflate state

D/szipinf ( 2207): Initializing inflate state

D/szipinf ( 2207): Initializing inflate state

D/szipinf ( 2207): Initializing inflate state

W/ActivityManager( 1638): finishReceiver called but active receiver is different

I/InputReader( 1638): Device reconfigured: id=0x10002, name=touch_mcs6000, display size is now 320x480

I/InputManager-Callbacks( 1638): No virtual keys found for device touch_mcs6000.

Powered by Google Project Hosting