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 122 attachment: OtaUpdaterCrash.txt (65.3 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
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60643, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60643)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 206): Session status: RPC_LOC_SESS_STATUS_IN_PROGESS Valid mask: 0x9F1ED
D/libloc ( 206): Latitude: 32.1186322 (intermediate)
D/libloc ( 206): Longitude: 34.8024184
D/libloc ( 206): Accuracy: 1405.0000000
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 1
D/libloc ( 206): loc_eng_process_loc_event: 1
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60644, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60644)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60645, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60645)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60646, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60646)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60647, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60647)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60648, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 206): sv count: 1
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 2
D/libloc ( 206): loc_eng_process_loc_event: 2
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60648)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60649, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60649)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60650, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60650)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60651, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60651)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60652, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60652)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60653, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60653)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 206): Session status: RPC_LOC_SESS_STATUS_IN_PROGESS Valid mask: 0x9F1ED
D/libloc ( 206): Latitude: 32.1186322 (intermediate)
D/libloc ( 206): Longitude: 34.8024184
D/libloc ( 206): Accuracy: 1442.0000000
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 1
D/libloc ( 206): loc_eng_process_loc_event: 1
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60656, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60656)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60658, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60658)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60659, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60659)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60660, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60660)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60661, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 206): sv count: 2
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 2
D/libloc ( 206): loc_eng_process_loc_event: 2
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60661)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60662, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60662)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60663, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60663)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60664, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60664)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60665, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60665)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60666, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60666)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 206): Session status: RPC_LOC_SESS_STATUS_IN_PROGESS Valid mask: 0x9F1ED
D/libloc ( 206): Latitude: 32.1186322 (intermediate)
D/libloc ( 206): Longitude: 34.8024184
D/libloc ( 206): Accuracy: 1478.0000000
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 1
D/libloc ( 206): loc_eng_process_loc_event: 1
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60667, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60667)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60668, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60668)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60669, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60669)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60670, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60670)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60671, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 206): sv count: 4
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 2
D/libloc ( 206): loc_eng_process_loc_event: 2
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60671)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60672, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60672)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60673, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60673)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60674, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 206): Session status: RPC_LOC_SESS_STATUS_IN_PROGESS Valid mask: 0xBFFED
D/libloc ( 206): Latitude: 32.1183264 (intermediate)
D/libloc ( 206): Longitude: 34.8018229
D/libloc ( 206): Accuracy: 1081.0000000
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 1
D/libloc ( 206): loc_eng_process_loc_event: 1
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60674)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60675, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60675)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60676, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60676)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60677, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60677)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60681, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60681)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60682, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60682)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60683, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60683)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 206): sv count: 7
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 2
D/libloc ( 206): loc_eng_process_loc_event: 2
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60684, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60684)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60685, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60685)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60686, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60686)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60687, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60687)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60688, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60688)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 206): Session status: RPC_LOC_SESS_STATUS_IN_PROGESS Valid mask: 0xBFFED
D/libloc ( 206): Latitude: 32.1189219 (intermediate)
D/libloc ( 206): Longitude: 34.8024559
D/libloc ( 206): Accuracy: 37.0000000
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 1
D/libloc ( 206): loc_eng_process_loc_event: 1
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60689, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60689)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60690, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60690)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60691, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60691)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60692, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60692)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60693, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 206): sv count: 8
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 2
D/libloc ( 206): loc_eng_process_loc_event: 2
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60693)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60694, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60694)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60695, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60695)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60696, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60696)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60697, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60697)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 206): Session status: RPC_LOC_SESS_STATUS_IN_PROGESS Valid mask: 0xBF7ED
D/libloc ( 206): Latitude: 32.1186912 (intermediate)
D/libloc ( 206): Longitude: 34.8024881
D/libloc ( 206): Accuracy: 22.0000000
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 1
D/libloc ( 206): loc_eng_process_loc_event: 1
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60698, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60698)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60699, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60699)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60700, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60700)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60704, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60704)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60705, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 206): sv count: 8
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 2
D/libloc ( 206): loc_eng_process_loc_event: 2
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60705)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60706, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60706)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60707, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60707)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60708, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60708)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60709, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60709)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 4
D/libloc ( 206): loc_eng_process_loc_event: 4
D/libloc ( 206): loc_eng_report_nmea: $
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 206): sv count: 8
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 2
D/libloc ( 206): loc_eng_process_loc_event: 2
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60710, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60710)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60711, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60711)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60712, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60712)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60713, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 206): Session status: RPC_LOC_SESS_STATUS_SUCCESS Valid mask: 0x69FFEF
D/libloc ( 206): Latitude: 32.1187031 (final)
D/libloc ( 206): Longitude: 34.8024163
D/libloc ( 206): Accuracy: 26.0000000
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 1
D/libloc ( 206): loc_eng_process_loc_event: 1
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60713)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60714, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60714)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_STATUS_REPORT (client 0)
D/libloc ( 206): Fix session state: RPC_LOC_FIX_SESSION_STATE_END
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 256
D/libloc ( 206): loc_eng_process_loc_event: 100
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60715, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60715)
D/libloc ( 206): loc_eng_stop called
D/RPC ( 206): 3000008c:00050000 sending call (XID 105).
D/RPC ( 206): 3000008c:00050000 received REPLY (XID 105), grabbing mutex to wake up client.
D/libloc ( 206): loc_inform_gps_status, status: GPS_STATUS_SESSION_END
D/RPC ( 206): 3000008c:00050000 call success.
W/ActivityManager( 206): finishReceiver called but no pending broadcasts
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
V/BackupManagerService( 206): Running a backup pass
V/BackupManagerService( 206): clearing pending backups
V/PerformBackupTask( 206): Beginning backup of 1 targets
D/dalvikvm( 206): GC_CONCURRENT freed 1427K, 30% free 12998K/18311K, paused 8ms+25ms
D/PerformBackupTask( 206): processOneBackup doBackup() on @pm@
V/BackupServiceBinder( 206): doBackup() invoked
D/SettingsBackupAgent( 206): onCreate() invoked
I/PerformBackupTask( 206): no backup data written; not calling transport
D/PerformBackupTask( 206): starting agent for backup of BackupRequest{pkg=com.android.providers.settings}
V/ActivityThread( 206): handleCreateBackupAgent: CreateBackupAgentData{appInfo=ApplicationInfo{414c66f0 com.android.providers.settings} backupAgent=com.android.providers.settings.SettingsBackupAgent mode=0}
V/ActivityThread( 206): Initializing agent class com.android.providers.settings.SettingsBackupAgent
V/BackupServiceBinder( 206): doBackup() invoked
D/BackupManagerService( 206): awaiting agent for ApplicationInfo{414c66f0 com.android.providers.settings}
D/BackupManagerService( 206): agentConnected pkg=com.android.providers.settings agent=android.app.backup.BackupAgent$BackupServiceBinder@4146b778
D/PerformBackupTask( 206): processOneBackup doBackup() on com.android.providers.settings
V/ActivityThread( 206): handleDestroyBackupAgent: CreateBackupAgentData{appInfo=ApplicationInfo{414c66f0 com.android.providers.settings} backupAgent=com.android.providers.settings.SettingsBackupAgent mode=0}
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
I/PerformBackupTask( 206): Backup pass finished.
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_STATUS_REPORT (client 0)
D/libloc ( 206): Engine state: RPC_LOC_ENGINE_STATE_OFF
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 60729, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 60729)
D/libloc ( 206): loc_eng_deferred_action_thread signalled
D/libloc ( 206): loc_eng_deferred_action_thread event 256
D/libloc ( 206): loc_eng_process_loc_event: 100
D/libloc ( 206): loc_inform_gps_status, status: GPS_STATUS_ENGINE_OFF
D/libloc ( 206): loc_eng_deferred_action_thread. waiting for events
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
W/ActivityManager( 206): finishReceiver called but no pending broadcasts
W/Smack/Packet( 2161): notify conn break (IOEx), close connection
I/GTalkService/c( 2161): [AndroidEndpoint@1091881088] connect: acct=1000000, state=CONNECTING
I/GTalkService/c( 2161): [GTalkConnection@1091961016] connect: acct=1, state=CONNECTING
D/dalvikvm( 206): GC_EXPLICIT freed 1065K, 30% free 12821K/18311K, paused 7ms+19ms
D/ConnectivityService( 206): handleInetConditionHoldEnd: net=1, condition=100, published condition=100
I/Gmail (10399): MainSyncRequestProto: lowestBkwdConvoId: 0, highestHandledServerOp: 689663, normalSync: true
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
D/dalvikvm(10399): GC_EXPLICIT freed 1759K, 31% free 8446K/12231K, paused 12ms+9ms
I/Gmail (10399): MainSyncRequestProto: lowestBkwdConvoId: 0, highestHandledServerOp: 689712, normalSync: true
I/Gmail (10399): lowestBackward conversation id 0
D/dalvikvm(10399): GC_EXPLICIT freed 33K, 32% free 8426K/12231K, paused 5ms+8ms
W/Gmail (10399): Scheduling index for 300000 ms from now
W/ActivityManager( 206): finishReceiver called but no pending broadcasts
I/power ( 206): *** set_screen_state 1
I/AudioHardwareMSM72XX( 126): Routing audio to Speakerphone
I/WindowManager( 206): Lock screen displayed!
D/SurfaceFlinger( 123): Screen about to return, flinger = 0xf918
I/keystore( 129): uid: 1000 action: p -> 1 state: 1 -> 1 retry: 4
D/PhoneStatusBar( 416): disable: < expand* icons alerts ticker* system_info BACK HOME recent* CLOCK >
D/PhoneStatusBar( 416): disable: < expand icons alerts ticker system_info back* home* recent clock* >
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@410fedd8
I/ActivityManager( 206): START {act=android.intent.action.VIEW dat=content://media/external/images/media/188 typ=image/png flg=0x10000000 cmp=com.google.android.gallery3d/com.android.gallery3d.app.Gallery bnds=[64,113][320,177]} from pid -1
W/KeyguardViewMediator( 206): verifyUnlock called when not externally disabled
D/OpenGLRenderer( 1392): Flushing caches (mode 1)
V/StateManager(10026): startState class com.android.gallery3d.app.PhotoPage
D/HardwareRenderer(10026): Disabling v-sync
W/Adreno200-EGLSUB(10026): SetSwapInterval() interval: 0 not set
I/GalleryEGLConfigChooser(10026): Config chosen: R5 G6 B5 A0 D24 S8 ID3 CAVEAT12344
D/dalvikvm(10026): GC_CONCURRENT freed 1454K, 37% free 10470K/16519K, paused 18ms+25ms
I/ActivityManager( 206): Displayed com.google.android.gallery3d/com.android.gallery3d.app.Gallery: +541ms
D/OpenGLRenderer( 1392): Flushing caches (mode 0)
I/GLRootView(10026): onSurfaceChanged: 320x480, gl10: com.google.android.gles_jni.GLImpl@415318a0
I/GLRootView(10026): layout content pane 320x480
I/GLRootView(10026): layout content pane 320x480
D/dalvikvm(10026): GC_FOR_ALLOC freed 1969K, 39% free 10083K/16519K, paused 49ms
D/dalvikvm(10026): GC_FOR_ALLOC freed 1363K, 40% free 10053K/16519K, paused 57ms
D/dalvikvm(10026): GC_FOR_ALLOC freed 677K, 34% free 10973K/16519K, paused 48ms
I/ActivityManager( 206): START {flg=0x10000000 cmp=com.google.android.gallery3d/com.android.gallery3d.app.Gallery} from pid 10026
V/StateManager(10026): startState class com.android.gallery3d.app.AlbumSetPage
V/GalleryActionBar(10026): showClusterMenu: runner=com.android.gallery3d.app.AlbumSetPage@41435880
D/Gallery.MultiSetSync(10026): onSyncDone: *********** #pending=2
D/Gallery.MultiSetSync(10026): request sync: ***********
D/Gallery.MultiSetSync(10026): onSyncDone: ************ #pending=1
D/Gallery.MultiSetSync(10026): request sync: ************
V/MtpDeviceSet(10026): loadDevices: [], size=0
D/ImmediateSync(10026): sync album list:1 account(s)
D/Gallery.MultiSetSync(10026): request sync: *************
D/HardwareRenderer(10026): Disabling v-sync
D/dalvikvm(10486): GC_EXPLICIT freed 264K, 43% free 6735K/11715K, paused 4ms+13ms
W/Adreno200-EGLSUB(10026): SetSwapInterval() interval: 0 not set
D/ImmediateSync(10026): sync albums for *****************
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
I/GalleryEGLConfigChooser(10026): Config chosen: R5 G6 B5 A0 D24 S8 ID3 CAVEAT12344
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
I/ActivityManager( 206): Displayed com.google.android.gallery3d/com.android.gallery3d.app.Gallery: +383ms
D/PicasaAPI(10026): getAlbums for *****************, etag = W/"DkENRng_fyp7ImA9WhJaGUw."
I/GLRootView(10026): onSurfaceChanged: 320x480, gl10: com.google.android.gles_jni.GLImpl@41403be8
I/GLRootView(10026): layout content pane 320x480
V/MtpDeviceSet(10026): loadDevices: [], size=0
D/OpenGLRenderer(10026): Flushing caches (mode 0)
V/StateManager(10026): saveState
V/StateManager(10026): saveState class com.android.gallery3d.app.PhotoPage
D/MetricsUtils(10026): [QUERY content://com.google.android.gallery3d.GooglePhotoProvider/photos?limit=0%2C1 query-result:1 time:114]
D/dalvikvm(10026): GC_CONCURRENT freed 1210K, 30% free 11606K/16519K, paused 6ms+13ms
D/MetricsUtils(10026): [OPEN content://com.google.android.gallery3d.GooglePhotoProvider/albumcovers/5774415939913284705 time:179]
D/MetricsUtils(10026): [OPEN content://com.google.android.gallery3d.GooglePhotoProvider/albumcovers/5767272680889609185 time:189]
D/MetricsUtils(10026): [OPEN content://com.google.android.gallery3d.GooglePhotoProvider/albumcovers/5747478090763949185 time:173]
V/ActionModeHandler(10026): Disable sharing until intent is ready
V/ActionModeHandler(10026): Sharing intent is ready: action = android.intent.action.SEND
D/dalvikvm(10026): GC_CONCURRENT freed 1369K, 28% free 11966K/16519K, paused 4ms+9ms
D/dalvikvm(10026): GC_CONCURRENT freed 402K, 19% free 13406K/16519K, paused 5ms+9ms
V/PicasaAPI(10026): done
D/MetricsUtils(10026): [PicasaApi.getAlbums in:361 out:627 time:4006]
D/MetricsUtils(10026): [PicasaSyncHelper.syncAlbums ***************** time:4081]
D/PicasaAlbumSet(10026): sync result: all: 0
D/Gallery.MultiSetSync(10026): onSyncDone: ************* #pending=0
D/HardwareRenderer(10026): Disabling v-sync
W/Adreno200-EGLSUB(10026): SetSwapInterval() interval: 0 not set
D/HardwareRenderer(10026): Disabling v-sync
W/Adreno200-EGLSUB(10026): SetSwapInterval() interval: 0 not set
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
D/HardwareRenderer(10026): Disabling v-sync
V/MenuExecutor(10026): Execute cmd: 2131427394 for /local/all/581591350
D/MediaProvider(10486): object removed 188
W/Adreno200-EGLSUB(10026): SetSwapInterval() interval: 0 not set
D/dalvikvm( 7482): GC_CONCURRENT freed 1824K, 33% free 7898K/11715K, paused 4ms+27ms
V/MenuExecutor(10026): It takes 369 ms to execute cmd for /local/all/581591350
V/GalleryActionBar(10026): showClusterMenu: runner=com.android.gallery3d.app.AlbumSetPage@41435880
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@41522398
D/dalvikvm( 206): GC_EXPLICIT freed 875K, 31% free 12790K/18311K, paused 6ms+35ms
I/ActivityManager( 206): START {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.android.launcher/com.android.launcher2.Launcher} from pid 206
D/MetricsUtils(10026): [OPEN content://com.google.android.gallery3d.GooglePhotoProvider/albumcovers/5753003144421390673 time:161]
D/ImmediateSync(10026): cancel sync all
D/OpenGLRenderer(10026): Flushing caches (mode 1)
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
D/OpenGLRenderer(10026): Flushing caches (mode 0)
I/power ( 206): *** set_screen_state 0
D/SurfaceFlinger( 123): About to give-up screen, flinger = 0xf918
I/power ( 206): *** set_screen_state 1
D/UnlockScreen( 206): portrait mode
V/StateManager(10026): saveState
V/StateManager(10026): saveState class com.android.gallery3d.app.AlbumSetPage
I/AudioHardwareMSM72XX( 126): Routing audio to Speakerphone
V/TransportControlView( 206): Create TCV com.android.internal.widget.TransportControlView@41698c68
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
D/PhoneStatusBar( 416): disable: < EXPAND* icons alerts TICKER* system_info back home RECENT* clock >
D/android.widget.GridLayout( 206): vertical constraints: y1 - y0 > 89, y2 - y1 > 19, y3 - y2 > 19, y4 - y3 > 0, y5 - y4 > 308, y6 - y5 > 19, y7 - y6 > 48, y7 - y0 < 455 are inconsistent; permanently removing: y7 - y0 < 455.
I/AudioHardwareMSM72XX( 126): Routing audio to Speakerphone
D/PhoneStatusBar( 416): disable: < EXPAND icons alerts TICKER system_info BACK* HOME* RECENT CLOCK* >
D/SurfaceFlinger( 123): Screen about to return, flinger = 0xf918
I/WindowManager( 206): Lock screen displayed!
D/dalvikvm( 9880): GC_CONCURRENT freed 3519K, 33% free 7964K/11715K, paused 31ms+13ms
I/power ( 206): *** set_screen_state 0
D/SurfaceFlinger( 123): About to give-up screen, flinger = 0xf918
D/UnlockScreen( 206): portrait mode
I/AudioHardwareMSM72XX( 126): Routing audio to Speakerphone
V/TransportControlView( 206): Create TCV com.android.internal.widget.TransportControlView@41888ad8
D/android.widget.GridLayout( 206): vertical constraints: y1 - y0 > 89, y2 - y1 > 19, y3 - y2 > 19, y4 - y3 > 0, y5 - y4 > 308, y6 - y5 > 19, y7 - y6 > 48, y7 - y0 < 455 are inconsistent; permanently removing: y7 - y0 < 455.
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
W/ActivityManager( 206): finishReceiver called but no pending broadcasts
D/dalvikvm( 9445): GC_CONCURRENT freed 1806K, 33% free 7936K/11715K, paused 4ms+9ms
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
W/ActivityManager( 206): finishReceiver called but no pending broadcasts
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
I/dalvikvm( 9445): Jit: resizing JitTable from 2048 to 4096
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
D/dalvikvm( 7482): GC_CONCURRENT freed 1861K, 33% free 7877K/11715K, paused 4ms+9ms
I/Gmail (10399): MainSyncRequestProto: lowestBkwdConvoId: 0, highestHandledServerOp: 689712, normalSync: true
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
D/dalvikvm(10399): GC_EXPLICIT freed 420K, 31% free 8461K/12231K, paused 6ms+8ms
I/Gmail (10399): MainSyncRequestProto: lowestBkwdConvoId: 0, highestHandledServerOp: 689742, normalSync: true
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
D/dalvikvm(10399): GC_EXPLICIT freed 94K, 31% free 8461K/12231K, paused 9ms+8ms
I/Gmail (10399): MainSyncRequestProto: lowestBkwdConvoId: 0, highestHandledServerOp: 689742, normalSync: true
I/Gmail (10399): lowestBackward conversation id 0
W/Gmail (10399): Scheduling index for 300000 ms from now
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
D/dalvikvm( 206): GC_CONCURRENT freed 1669K, 30% free 12856K/18311K, paused 6ms+17ms
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
W/ActivityManager( 206): finishReceiver called but no pending broadcasts
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
D/dalvikvm( 9445): GC_CONCURRENT freed 1871K, 33% free 7907K/11715K, paused 4ms+7ms
D/dalvikvm( 206): GC_EXPLICIT freed 489K, 31% free 12776K/18311K, paused 7ms+17ms
I/Gmail (10399): MainSyncRequestProto: lowestBkwdConvoId: 0, highestHandledServerOp: 689742, normalSync: true
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
D/dalvikvm(10399): GC_EXPLICIT freed 628K, 31% free 8475K/12231K, paused 11ms+9ms
I/Gmail (10399): MainSyncRequestProto: lowestBkwdConvoId: 0, highestHandledServerOp: 690024, normalSync: true
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
D/dalvikvm(10399): GC_EXPLICIT freed 156K, 31% free 8469K/12231K, paused 7ms+8ms
I/Gmail (10399): MainSyncRequestProto: lowestBkwdConvoId: 0, highestHandledServerOp: 690024, normalSync: true
I/Gmail (10399): lowestBackward conversation id 0
W/Gmail (10399): Scheduling index for 300000 ms from now
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
I/DownloadManager(10486): Initiating request for download 16
D/dalvikvm( 2161): GC_EXPLICIT freed 775K, 35% free 7729K/11715K, paused 5ms+11ms
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
I/DownloadManager(10486): deleting /data/data/com.android.providers.downloads/cache/downloadfile.jpeg
I/DownloadManager(10486): Initiating request for download 17
I/DownloadManager(10486): deleting /data/data/com.android.providers.downloads/cache/downloadfile.jpeg
D/dalvikvm( 9445): GC_EXPLICIT freed 330K, 33% free 7889K/11715K, paused 5ms+7ms
W/ActivityManager( 206): finishReceiver called but no pending broadcasts
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
D/dalvikvm( 7482): GC_CONCURRENT freed 1850K, 33% free 7869K/11715K, paused 4ms+10ms
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
W/ActivityManager( 206): finishReceiver called but no pending broadcasts
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
D/dalvikvm( 7482): GC_EXPLICIT freed 613K, 34% free 7767K/11715K, paused 6ms+8ms
D/dalvikvm( 206): GC_EXPLICIT freed 897K, 30% free 12838K/18311K, paused 7ms+19ms
I/EventLogService( 2161): Aggregate from 1350406298603 (log), 1350406298603 (data)
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
I/power ( 206): *** set_screen_state 1
I/AudioHardwareMSM72XX( 126): Routing audio to Speakerphone
I/WindowManager( 206): Lock screen displayed!
D/SurfaceFlinger( 123): Screen about to return, flinger = 0xf918
I/keystore( 129): uid: 1000 action: p -> 1 state: 1 -> 1 retry: 4
D/PhoneStatusBar( 416): disable: < expand* icons alerts ticker* system_info BACK HOME recent* CLOCK >
D/PhoneStatusBar( 416): disable: < expand icons alerts ticker system_info back* home* recent clock* >
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@410efe58
D/HardwareRenderer( 1392): Disabling v-sync
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@4131f3b0
D/HardwareRenderer( 1392): Disabling v-sync
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@41528758
D/HardwareRenderer( 1392): Disabling v-sync
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@41664ea8
D/dalvikvm( 1392): GC_CONCURRENT freed 1666K, 50% free 8510K/16967K, paused 4ms+23ms
D/HardwareRenderer( 1392): Disabling v-sync
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@414fdc08
D/HardwareRenderer( 1392): Disabling v-sync
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@41844d58
D/HardwareRenderer( 1392): Disabling v-sync
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@4117f780
D/HardwareRenderer( 1392): Disabling v-sync
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@411b8990
D/HardwareRenderer( 1392): Disabling v-sync
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@4161c1d0
D/HardwareRenderer( 1392): Disabling v-sync
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@415d6978
D/dalvikvm( 1392): GC_CONCURRENT freed 1488K, 49% free 8800K/16967K, paused 4ms+12ms
D/dalvikvm( 1392): GC_FOR_ALLOC freed 597K, 42% free 9897K/16967K, paused 61ms
I/ActivityManager( 206): START {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.android.launcher/com.android.launcher2.Launcher} from pid 206
D/dalvikvm( 1392): GC_CONCURRENT freed 1966K, 43% free 9773K/16967K, paused 4ms+10ms
D/dalvikvm( 1392): GC_FOR_ALLOC freed 1165K, 41% free 10031K/16967K, paused 62ms
D/HardwareRenderer( 1392): Disabling v-sync
D/dalvikvm( 1392): GC_CONCURRENT freed 1890K, 42% free 9867K/16967K, paused 4ms+19ms
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
D/dalvikvm( 1392): GC_CONCURRENT freed 1023K, 38% free 10660K/16967K, paused 4ms+30ms
I/ActivityManager( 206): START {act=android.settings.SETTINGS flg=0x10200000 cmp=com.android.settings/.Settings} from pid 1392
I/ActivityManager( 206): Start proc com.android.settings for activity com.android.settings/.Settings: pid=10980 uid=1000 gids={1015, 3002, 3001, 3003, 3007}
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@41479508
D/OpenGLRenderer( 1392): Flushing caches (mode 1)
D/OpenGLRenderer( 1392): Flushing caches (mode 0)
D/LocalBluetoothProfileManager(10980): LocalBluetoothProfileManager construction complete
D/HardwareRenderer(10980): Disabling v-sync
D/libEGL (10980): loaded /system/lib/egl/libGLES_android.so
D/libEGL (10980): loaded /system/lib/egl/libEGL_adreno200.so
D/libEGL (10980): loaded /system/lib/egl/libGLESv1_CM_adreno200.so
D/libEGL (10980): loaded /system/lib/egl/libGLESv2_adreno200.so
D/HardwareRenderer(10980): EGL configuration com.google.android.gles_jni.EGLConfigImpl@4113d780:
D/HardwareRenderer(10980): RED_SIZE = 8
D/HardwareRenderer(10980): GREEN_SIZE = 8
D/HardwareRenderer(10980): BLUE_SIZE = 8
D/HardwareRenderer(10980): ALPHA_SIZE = 8
D/HardwareRenderer(10980): DEPTH_SIZE = 0
D/HardwareRenderer(10980): STENCIL_SIZE = 0
D/HardwareRenderer(10980): SURFACE_TYPE = 0x5e5
D/OpenGLRenderer(10980): Enabling debug mode 0
W/Adreno200-EGLSUB(10980): SetSwapInterval() interval: 0 not set
I/ActivityManager( 206): Displayed com.android.settings/.Settings: +1s540ms
D/AndroidRuntime(10980): Shutting down VM
W/dalvikvm(10980): threadid=1: thread exiting with uncaught exception (group=0x40a661f8)
I/ActivityManager( 206): START {act=android.intent.action.MAIN cmp=com.otaupdater/.OTAUpdaterActivity} from pid 10980
E/AndroidRuntime(10980): FATAL EXCEPTION: main
E/AndroidRuntime(10980): android.content.ActivityNotFoundException: Unable to find explicit activity class {com.otaupdater/com.otaupdater.OTAUpdaterActivity}; have you declared this activity in your AndroidManifest.xml?
E/AndroidRuntime(10980): at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1508)
E/AndroidRuntime(10980): at android.app.Instrumentation.execStartActivity(Instrumentation.java:1384)
E/AndroidRuntime(10980): at android.app.Activity.startActivityForResult(Activity.java:3190)
E/AndroidRuntime(10980): at android.app.Activity.startActivity(Activity.java:3297)
E/AndroidRuntime(10980): at android.preference.PreferenceActivity.onHeaderClick(PreferenceActivity.java:985)
E/AndroidRuntime(10980): at android.preference.PreferenceActivity.onListItemClick(PreferenceActivity.java:957)
E/AndroidRuntime(10980): at android.app.ListActivity$2.onItemClick(ListActivity.java:319)
E/AndroidRuntime(10980): at android.widget.AdapterView.performItemClick(AdapterView.java:292)
E/AndroidRuntime(10980): at android.widget.AbsListView.performItemClick(AbsListView.java:1058)
E/AndroidRuntime(10980): at android.widget.AbsListView$PerformClick.run(AbsListView.java:2514)
E/AndroidRuntime(10980): at android.widget.AbsListView$1.run(AbsListView.java:3168)
E/AndroidRuntime(10980): at android.os.Handler.handleCallback(Handler.java:605)
E/AndroidRuntime(10980): at android.os.Handler.dispatchMessage(Handler.java:92)
E/AndroidRuntime(10980): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime(10980): at android.app.ActivityThread.main(ActivityThread.java:4424)
E/AndroidRuntime(10980): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(10980): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime(10980): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
E/AndroidRuntime(10980): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
E/AndroidRuntime(10980): at dalvik.system.NativeStart.main(Native Method)
W/ActivityManager( 206): Force finishing activity com.android.settings/.Settings
W/ActivityManager( 206): Activity pause timeout for ActivityRecord{41143978 com.android.settings/.Settings}
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
I/ActivityManager( 206): No longer want org.jtb.alogcat (pid 10380): hidden #16
I/Process (10980): Sending signal. PID: 10980 SIG: 9
W/InputDispatcher( 206): channel '4129b200 com.android.settings/com.android.settings.Settings (server)' ~ Consumer closed input channel or an error occurred. events=0x8
E/InputDispatcher( 206): channel '4129b200 com.android.settings/com.android.settings.Settings (server)' ~ Channel is unrecoverably broken and will be disposed!
W/InputDispatcher( 206): Attempted to unregister already unregistered input channel '4129b200 com.android.settings/com.android.settings.Settings (server)'
I/WindowManager( 206): WINDOW DIED Window{4129b200 com.android.settings/com.android.settings.Settings paused=false}
E/JavaBinder( 206): !!! FAILED BINDER TRANSACTION !!!
I/ActivityManager( 206): Process com.android.settings (pid 10980) has died.
W/InputManagerService( 206): Got RemoteException sending setActive(false) notification to pid 10980 uid 1000
D/dalvikvm( 1392): GC_FOR_ALLOC freed 3425K, 50% free 8522K/16967K, paused 64ms
D/dalvikvm( 1392): GC_FOR_ALLOC freed 994K, 50% free 8495K/16967K, paused 60ms
I/ActivityManager( 206): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=org.jtb.alogcat/.LogActivity} from pid 1392
I/ActivityManager( 206): Start proc org.jtb.alogcat for activity org.jtb.alogcat/.LogActivity: pid=10996 uid=10055 gids={1007, 1015}
I/dalvikvm(10996): Turning on JNI app bug workarounds for target SDK version 11...
D/OpenGLRenderer( 1392): Flushing caches (mode 1)
D/OpenGLRenderer( 1392): Flushing caches (mode 0)
D/dalvikvm( 1392): GC_CONCURRENT freed 398K, 43% free 9831K/16967K, paused 19ms+41ms
W/InputManagerService( 206): Starting input on non-focused client com.android.internal.view.IInputMethodClient$Stub$Proxy@41496b10 (uid=10023 pid=1392)
I/ActivityManager( 206): Displayed org.jtb.alogcat/.LogActivity: +850ms
D/dalvikvm( 416): GC_CONCURRENT freed 1966K, 60% free 7082K/17607K, paused 4ms+8ms
W/ActivityManager( 206): Activity destroy timeout for ActivityRecord{41143978 com.android.settings/.Settings}
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
D/dalvikvm( 9445): GC_CONCURRENT freed 1806K, 33% free 7912K/11715K, paused 4ms+27ms
I/dalvikvm(10996): Jit: resizing JitTable from 512 to 1024
I/SyncAdapter(10356): Start sync for: evg.tso@gmail.com
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
I/tasks (10356): Got 1 task lists.
I/tasks (10356): Sync 0 moves/insertions/deletions.
I/SyncAdapter(10356): Sync for: evg.tso@gmail.com ended.
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@411ef140
D/dalvikvm(10996): GC_CONCURRENT freed 3400K, 31% free 8128K/11715K, paused 5ms+21ms
V/PhoneStatusBar( 416): setLightsOn(true)
D/dalvikvm( 206): GC_CONCURRENT freed 1609K, 30% free 12988K/18311K, paused 6ms+65ms
D/dalvikvm( 6280): GC_EXPLICIT freed 971K, 37% free 7427K/11715K, paused 4ms+13ms
D/OpenGLRenderer( 461): Flushing caches (mode 1)
I/dalvikvm(10996): Jit: resizing JitTable from 1024 to 2048
D/dalvikvm(10996): GC_CONCURRENT freed 3039K, 41% free 6932K/11715K, paused 4ms+7ms
V/PhoneStatusBar( 416): setLightsOn(true)
Powered by Google Project Hosting