My favorites
▼
|
Sign in
oxygen-for-p500
Port of Oxygen ROM for LGE Optimus One
Project Home
Downloads
Wiki
Issues
Source
READ-ONLY: This project has been
archived
. For more information see
this post
.
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
88
attachment: alogcat.2012-08-15-20-53-18+0530.txt
(57.4 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/AURA ( 4983): EGL_LOCK_SURFACE_BIT_KHR
D/AURA ( 4983): |
D/AURA ( 4983): EGL_OPTIMAL_FORMAT_BIT_KHR
D/AURA ( 4983): Config: sorted (index:27, original index:19, config:0x13)
D/AURA ( 4983): EGL_BUFFER_SIZE: 32
D/AURA ( 4983): EGL_RED_SIZE: 8
D/AURA ( 4983): EGL_GREEN_SIZE: 8
D/AURA ( 4983): EGL_BLUE_SIZE: 8
D/AURA ( 4983): EGL_ALPHA_SIZE: 8
D/AURA ( 4983): EGL_CONFIG_CAVEAT: 12369
D/AURA ( 4983): EGL_CONFIG_ID: 18
D/AURA ( 4983): EGL_DEPTH_SIZE: 24
D/AURA ( 4983): EGL_NATIVE_RENDERABLE: 0
D/AURA ( 4983): EGL_SAMPLE_BUFFERS: 1
D/AURA ( 4983): EGL_SAMPLES: 2
D/AURA ( 4983): EGL_STENCIL_SIZE: 8
D/AURA ( 4983): EGL_SURFACE_TYPE: 0x5e5 =
D/AURA ( 4983): EGL_PBUFFER_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_WINDOW_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_LOCK_SURFACE_BIT_KHR
D/AURA ( 4983): |
D/AURA ( 4983): EGL_OPTIMAL_FORMAT_BIT_KHR
D/AURA ( 4983): Config: sorted (index:28, original index:3, config:0x3)
D/AURA ( 4983): EGL_BUFFER_SIZE: 16
D/AURA ( 4983): EGL_RED_SIZE: 5
D/AURA ( 4983): EGL_GREEN_SIZE: 6
D/AURA ( 4983): EGL_BLUE_SIZE: 5
D/AURA ( 4983): EGL_ALPHA_SIZE: 0
D/AURA ( 4983): EGL_CONFIG_CAVEAT: 12369
D/AURA ( 4983): EGL_CONFIG_ID: 13
D/AURA ( 4983): EGL_DEPTH_SIZE: 0
D/AURA ( 4983): EGL_NATIVE_RENDERABLE: 0
D/AURA ( 4983): EGL_SAMPLE_BUFFERS: 1
D/AURA ( 4983): EGL_SAMPLES: 2
D/AURA ( 4983): EGL_STENCIL_SIZE: 0
D/AURA ( 4983): EGL_SURFACE_TYPE: 0x5a5 =
D/AURA ( 4983): EGL_PBUFFER_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_WINDOW_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_LOCK_SURFACE_BIT_KHR
D/AURA ( 4983): |
D/AURA ( 4983): EGL_OPTIMAL_FORMAT_BIT_KHR
D/AURA ( 4983): Config: sorted (index:29, original index:27, config:0x1b)
D/AURA ( 4983): EGL_BUFFER_SIZE: 16
D/AURA ( 4983): EGL_RED_SIZE: 5
D/AURA ( 4983): EGL_GREEN_SIZE: 6
D/AURA ( 4983): EGL_BLUE_SIZE: 5
D/AURA ( 4983): EGL_ALPHA_SIZE: 0
D/AURA ( 4983): EGL_CONFIG_CAVEAT: 12368
D/AURA ( 4983): EGL_CONFIG_ID: 37
D/AURA ( 4983): EGL_DEPTH_SIZE: 0
D/AURA ( 4983): EGL_NATIVE_RENDERABLE: 1
D/AURA ( 4983): EGL_SAMPLE_BUFFERS: 0
D/AURA ( 4983): EGL_SAMPLES: 0
D/AURA ( 4983): EGL_STENCIL_SIZE: 0
D/AURA ( 4983): EGL_SURFACE_TYPE: 0x7 =
D/AURA ( 4983): EGL_PBUFFER_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_PIXMAP_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_WINDOW_BIT
D/AURA ( 4983): Config: sorted (index:30, original index:16, config:0x10)
D/AURA ( 4983): EGL_BUFFER_SIZE: 32
D/AURA ( 4983): EGL_RED_SIZE: 8
D/AURA ( 4983): EGL_GREEN_SIZE: 8
D/AURA ( 4983): EGL_BLUE_SIZE: 8
D/AURA ( 4983): EGL_ALPHA_SIZE: 0
D/AURA ( 4983): EGL_CONFIG_CAVEAT: 12369
D/AURA ( 4983): EGL_CONFIG_ID: 19
D/AURA ( 4983): EGL_DEPTH_SIZE: 0
D/AURA ( 4983): EGL_NATIVE_RENDERABLE: 0
D/AURA ( 4983): EGL_SAMPLE_BUFFERS: 1
D/AURA ( 4983): EGL_SAMPLES: 2
D/AURA ( 4983): EGL_STENCIL_SIZE: 0
D/AURA ( 4983): EGL_SURFACE_TYPE: 0x585 =
D/AURA ( 4983): EGL_PBUFFER_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_WINDOW_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_LOCK_SURFACE_BIT_KHR
D/AURA ( 4983): |
D/AURA ( 4983): EGL_OPTIMAL_FORMAT_BIT_KHR
D/AURA ( 4983): Config: sorted (index:31, original index:29, config:0x1d)
D/AURA ( 4983): EGL_BUFFER_SIZE: 32
D/AURA ( 4983): EGL_RED_SIZE: 8
D/AURA ( 4983): EGL_GREEN_SIZE: 8
D/AURA ( 4983): EGL_BLUE_SIZE: 8
D/AURA ( 4983): EGL_ALPHA_SIZE: 0
D/AURA ( 4983): EGL_CONFIG_CAVEAT: 12368
D/AURA ( 4983): EGL_CONFIG_ID: 39
D/AURA ( 4983): EGL_DEPTH_SIZE: 0
D/AURA ( 4983): EGL_NATIVE_RENDERABLE: 1
D/AURA ( 4983): EGL_SAMPLE_BUFFERS: 0
D/AURA ( 4983): EGL_SAMPLES: 0
D/AURA ( 4983): EGL_STENCIL_SIZE: 0
D/AURA ( 4983): EGL_SURFACE_TYPE: 0x7 =
D/AURA ( 4983): EGL_PBUFFER_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_PIXMAP_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_WINDOW_BIT
D/AURA ( 4983): Config: sorted (index:32, original index:15, config:0xf)
D/AURA ( 4983): EGL_BUFFER_SIZE: 32
D/AURA ( 4983): EGL_RED_SIZE: 8
D/AURA ( 4983): EGL_GREEN_SIZE: 8
D/AURA ( 4983): EGL_BLUE_SIZE: 8
D/AURA ( 4983): EGL_ALPHA_SIZE: 8
D/AURA ( 4983): EGL_CONFIG_CAVEAT: 12369
D/AURA ( 4983): EGL_CONFIG_ID: 16
D/AURA ( 4983): EGL_DEPTH_SIZE: 0
D/AURA ( 4983): EGL_NATIVE_RENDERABLE: 0
D/AURA ( 4983): EGL_SAMPLE_BUFFERS: 1
D/AURA ( 4983): EGL_SAMPLES: 2
D/AURA ( 4983): EGL_STENCIL_SIZE: 0
D/AURA ( 4983): EGL_SURFACE_TYPE: 0x5e5 =
D/AURA ( 4983): EGL_PBUFFER_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_WINDOW_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_LOCK_SURFACE_BIT_KHR
D/AURA ( 4983): |
D/AURA ( 4983): EGL_OPTIMAL_FORMAT_BIT_KHR
D/AURA ( 4983): Config: sorted (index:33, original index:31, config:0x1f)
D/AURA ( 4983): EGL_BUFFER_SIZE: 32
D/AURA ( 4983): EGL_RED_SIZE: 8
D/AURA ( 4983): EGL_GREEN_SIZE: 8
D/AURA ( 4983): EGL_BLUE_SIZE: 8
D/AURA ( 4983): EGL_ALPHA_SIZE: 8
D/AURA ( 4983): EGL_CONFIG_CAVEAT: 12368
D/AURA ( 4983): EGL_CONFIG_ID: 41
D/AURA ( 4983): EGL_DEPTH_SIZE: 0
D/AURA ( 4983): EGL_NATIVE_RENDERABLE: 1
D/AURA ( 4983): EGL_SAMPLE_BUFFERS: 0
D/AURA ( 4983): EGL_SAMPLES: 0
D/AURA ( 4983): EGL_STENCIL_SIZE: 0
D/AURA ( 4983): EGL_SURFACE_TYPE: 0x7 =
D/AURA ( 4983): EGL_PBUFFER_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_PIXMAP_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_WINDOW_BIT
D/AURA ( 4983): Config: sorted (index:34, original index:33, config:0x21)
D/AURA ( 4983): EGL_BUFFER_SIZE: 8
D/AURA ( 4983): EGL_RED_SIZE: 0
D/AURA ( 4983): EGL_GREEN_SIZE: 0
D/AURA ( 4983): EGL_BLUE_SIZE: 0
D/AURA ( 4983): EGL_ALPHA_SIZE: 8
D/AURA ( 4983): EGL_CONFIG_CAVEAT: 12368
D/AURA ( 4983): EGL_CONFIG_ID: 43
D/AURA ( 4983): EGL_DEPTH_SIZE: 0
D/AURA ( 4983): EGL_NATIVE_RENDERABLE: 1
D/AURA ( 4983): EGL_SAMPLE_BUFFERS: 0
D/AURA ( 4983): EGL_SAMPLES: 0
D/AURA ( 4983): EGL_STENCIL_SIZE: 0
D/AURA ( 4983): EGL_SURFACE_TYPE: 0x7 =
D/AURA ( 4983): EGL_PBUFFER_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_PIXMAP_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_WINDOW_BIT
D/AURA ( 4983): Config: the one (index:0, original index:7, config:0x7)
D/AURA ( 4983): EGL_BUFFER_SIZE: 16
D/AURA ( 4983): EGL_RED_SIZE: 5
D/AURA ( 4983): EGL_GREEN_SIZE: 6
D/AURA ( 4983): EGL_BLUE_SIZE: 5
D/AURA ( 4983): EGL_ALPHA_SIZE: 0
D/AURA ( 4983): EGL_CONFIG_CAVEAT: 12344
D/AURA ( 4983): EGL_CONFIG_ID: 26
D/AURA ( 4983): EGL_DEPTH_SIZE: 16
D/AURA ( 4983): EGL_NATIVE_RENDERABLE: 0
D/AURA ( 4983): EGL_SAMPLE_BUFFERS: 1
D/AURA ( 4983): EGL_SAMPLES: 4
D/AURA ( 4983): EGL_STENCIL_SIZE: 0
D/AURA ( 4983): EGL_SURFACE_TYPE: 0x5a5 =
D/AURA ( 4983): EGL_PBUFFER_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_WINDOW_BIT
D/AURA ( 4983): |
D/AURA ( 4983): EGL_LOCK_SURFACE_BIT_KHR
D/AURA ( 4983): |
D/AURA ( 4983): EGL_OPTIMAL_FORMAT_BIT_KHR
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22419, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22419)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22420, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22420)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22421, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22421)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22422, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22422)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 187): sv count: 1
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 2
D/libloc ( 187): loc_eng_process_loc_event: 2
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22423, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22423)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22424, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22424)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22425, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22425)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22426, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22426)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22427, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22427)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22428, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22428)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22429, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22429)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22430, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22430)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22431, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22431)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22432, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22432)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22433, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22433)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 187): sv count: 0
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 2
D/libloc ( 187): loc_eng_process_loc_event: 2
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22434, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22434)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22435, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22435)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22436, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22436)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 187): Session status: RPC_LOC_SESS_STATUS_IN_PROGESS Valid mask: 0x6065
D/libloc ( 187): Latitude: 0.0000376 (intermediate)
D/libloc ( 187): Longitude: 2805.7600057
D/libloc ( 187): Accuracy: 0.0000000
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 1
D/libloc ( 187): loc_eng_process_loc_event: 1
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22441, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22441)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22442, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22442)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22443, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22443)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 187): sv count: 0
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 2
D/libloc ( 187): loc_eng_process_loc_event: 2
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22444, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22444)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22445, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22445)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22446, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22446)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22447, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22447)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22448, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22448)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22449, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22449)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22450, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22450)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 187): Session status: RPC_LOC_SESS_STATUS_IN_PROGESS Valid mask: 0x606D
D/libloc ( 187): Latitude: 21.9199991 (intermediate)
D/libloc ( 187): Longitude: 82.7799976
D/libloc ( 187): Accuracy: 0.0000000
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 1
D/libloc ( 187): loc_eng_process_loc_event: 1
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22454, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22454)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22455, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22455)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22456, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22456)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22457, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22457)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22458, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22458)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 187): sv count: 0
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 2
D/libloc ( 187): loc_eng_process_loc_event: 2
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22459, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22459)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22460, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22460)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22461, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22461)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22462, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22462)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22463, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22463)
D/dalvikvm( 4983): GC_CONCURRENT freed 2082K, 29% free 9703K/13511K, paused 8ms+8ms
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 187): Session status: RPC_LOC_SESS_STATUS_IN_PROGESS Valid mask: 0x606D
D/libloc ( 187): Latitude: 21.9199991 (intermediate)
D/libloc ( 187): Longitude: 82.7799976
D/libloc ( 187): Accuracy: 0.0000000
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 1
D/libloc ( 187): loc_eng_process_loc_event: 1
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22466, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22466)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22467, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22467)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22468, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22468)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22469, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22469)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22470, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22470)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 187): sv count: 0
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 2
D/libloc ( 187): loc_eng_process_loc_event: 2
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22471, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22471)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22472, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22472)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22473, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22473)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22474, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22474)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22475, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22475)
D/libloc ( 187): loc_eng_set_position mode, client = 0, interval = 0, mode = 1
D/libloc ( 187): loc_eng_ioctl called: client = 0, ioctl_type = RPC_LOC_IOCTL_SET_FIX_CRITERIA
D/libloc ( 187): loc_eng_ioctl result: client = 0, ioctl_type = RPC_LOC_IOCTL_SET_FIX_CRITERIA, RPC_LOC_API_SUCCESS
D/RPC ( 187): 3000008c:00050000 sending call (XID 205).
D/RPC ( 187): 3000008c:00050000 received REPLY (XID 205), grabbing mutex to wake up client.
D/RPC ( 187): 3000008c:00050000 call success.
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22477, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/AndroidRuntime( 4983): Shutting down VM
W/dalvikvm( 4983): threadid=1: thread exiting with uncaught exception (group=0x40a461f8)
W/System.err( 4983): java.lang.IllegalArgumentException: provider=network
W/System.err( 4983): at android.os.Parcel.readException(Parcel.java:1331)
W/System.err( 4983): at android.os.Parcel.readException(Parcel.java:1281)
W/System.err( 4983): at android.location.ILocationManager$Stub$Proxy.requestLocationUpdates(ILocationManager.java:655)
W/System.err( 4983): at android.location.LocationManager._requestLocationUpdates(LocationManager.java:602)
W/System.err( 4983): at android.location.LocationManager.requestLocationUpdates(LocationManager.java:466)
W/System.err( 4983): at com.sygic.aura.LocationServices_2x.startLocationManager(LocationServices.java:165)
W/System.err( 4983): at com.sygic.aura.LocationServices.startLocationManager(LocationServices.java:69)
W/System.err( 4983): at com.sygic.aura.SygicNaviActivity$1.handleMessage(SygicNaviActivity.java:177)
W/System.err( 4983): at android.os.Handler.dispatchMessage(Handler.java:99)
W/System.err( 4983): at android.os.Looper.loop(Looper.java:137)
W/System.err( 4983): at android.app.ActivityThread.main(ActivityThread.java:4424)
W/System.err( 4983): at java.lang.reflect.Method.invokeNative(Native Method)
W/System.err( 4983): at java.lang.reflect.Method.invoke(Method.java:511)
W/System.err( 4983): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
W/System.err( 4983): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
W/System.err( 4983): at dalvik.system.NativeStart.main(Native Method)
D/FlurryAgent( 4983): Ending session
D/libloc ( 187): loc_eng_set_position mode, client = 0, interval = 0, mode = 1
D/libloc ( 187): loc_eng_ioctl called: client = 0, ioctl_type = RPC_LOC_IOCTL_SET_FIX_CRITERIA
D/libloc ( 187): loc_eng_ioctl result: client = 0, ioctl_type = RPC_LOC_IOCTL_SET_FIX_CRITERIA, RPC_LOC_API_SUCCESS
D/RPC ( 187): 3000008c:00050000 sending call (XID 206).
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22477)
D/RPC ( 187): 3000008c:00050000 received REPLY (XID 206), grabbing mutex to wake up client.
D/RPC ( 187): 3000008c:00050000 call success.
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22478, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22478)
E/AndroidRuntime( 4983): FATAL EXCEPTION: main
E/AndroidRuntime( 4983): java.lang.IllegalArgumentException: provider=network
E/AndroidRuntime( 4983): at android.os.Parcel.readException(Parcel.java:1331)
E/AndroidRuntime( 4983): at android.os.Parcel.readException(Parcel.java:1281)
E/AndroidRuntime( 4983): at android.location.ILocationManager$Stub$Proxy.requestLocationUpdates(ILocationManager.java:655)
E/AndroidRuntime( 4983): at android.location.LocationManager._requestLocationUpdates(LocationManager.java:602)
E/AndroidRuntime( 4983): at android.location.LocationManager.requestLocationUpdates(LocationManager.java:466)
E/AndroidRuntime( 4983): at com.sygic.aura.LocationServices_2x.startLocationManager(LocationServices.java:165)
E/AndroidRuntime( 4983): at com.sygic.aura.LocationServices.startLocationManager(LocationServices.java:69)
E/AndroidRuntime( 4983): at com.sygic.aura.SygicNaviActivity$1.handleMessage(SygicNaviActivity.java:177)
E/AndroidRuntime( 4983): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime( 4983): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime( 4983): at android.app.ActivityThread.main(ActivityThread.java:4424)
E/AndroidRuntime( 4983): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 4983): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime( 4983): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
E/AndroidRuntime( 4983): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
E/AndroidRuntime( 4983): at dalvik.system.NativeStart.main(Native Method)
W/ActivityManager( 187): Force finishing activity com.sygic.aura/.SygicNaviActivity
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 187): Session status: RPC_LOC_SESS_STATUS_IN_PROGESS Valid mask: 0x606D
D/libloc ( 187): Latitude: 21.9199991 (intermediate)
D/libloc ( 187): Longitude: 82.7799976
D/libloc ( 187): Accuracy: 0.0000000
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 1
D/libloc ( 187): loc_eng_process_loc_event: 1
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22479, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22479)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22480, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22480)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22481, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22481)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22482, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22482)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22483, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22483)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 187): sv count: 1
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22484, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 2
D/libloc ( 187): loc_eng_process_loc_event: 2
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22484)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22485, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22485)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22486, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22486)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22487, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22487)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22488, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22488)
W/ActivityManager( 187): Activity pause timeout for ActivityRecord{411bae18 com.sygic.aura/.SygicNaviActivity}
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 187): Session status: RPC_LOC_SESS_STATUS_IN_PROGESS Valid mask: 0x606D
D/libloc ( 187): Latitude: 21.9199991 (intermediate)
D/libloc ( 187): Longitude: 82.7799976
D/libloc ( 187): Accuracy: 0.0000000
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22493, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 1
D/libloc ( 187): loc_eng_process_loc_event: 1
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22493)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22494, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22494)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22495, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22495)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22496, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22496)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22497, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22497)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 187): sv count: 1
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22498, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 2
D/libloc ( 187): loc_eng_process_loc_event: 2
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22498)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22499, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22499)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22500, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22500)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22501, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22501)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_NMEA_1HZ_REPORT (client 0)
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 4
D/libloc ( 187): loc_eng_process_loc_event: 4
D/libloc ( 187): loc_eng_report_nmea: $
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22502, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22502)
I/Process ( 4983): Sending signal. PID: 4983 SIG: 9
W/GpsLocationProvider( 187): Unneeded remove listener for uid 1000
D/libloc ( 187): loc_eng_stop called
I/WindowManager( 187): WIN DEATH: Window{41236328 SurfaceView paused=false}
I/ActivityManager( 187): Process com.sygic.aura (pid 4983) has died.
D/RPC ( 187): 3000008c:00050000 sending call (XID 207).
I/WindowManager( 187): WIN DEATH: Window{41688ca0 com.sygic.aura/com.sygic.aura.DownloaderActivity paused=false}
W/InputDispatcher( 187): channel '4124f5d8 Please wait. (server)' ~ Consumer closed input channel or an error occurred. events=0x8
E/InputDispatcher( 187): channel '4124f5d8 Please wait. (server)' ~ Channel is unrecoverably broken and will be disposed!
W/InputDispatcher( 187): Attempted to unregister already unregistered input channel '4124f5d8 Please wait. (server)'
I/WindowManager( 187): WIN DEATH: Window{41202e28 com.sygic.aura/com.sygic.aura.SygicNaviActivity paused=false}
I/WindowManager( 187): WIN DEATH: Window{4124f5d8 Please wait. paused=false}
I/WindowManager( 187): WINDOW DIED Window{4124f5d8 Please wait. paused=false}
W/ActivityManager( 187): Force removing ActivityRecord{415fccf0 com.sygic.aura/.DownloaderActivity}: app died, no saved state
D/RPC ( 187): 3000008c:00050000 received REPLY (XID 207), grabbing mutex to wake up client.
D/libloc ( 187): loc_inform_gps_status, status: GPS_STATUS_SESSION_END
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 187): Session status: RPC_LOC_SESS_STATUS_USER_END Valid mask: 0x1
D/libloc ( 187): Latitude: 0.0000000 (intermediate)
D/libloc ( 187): Longitude: 0.0000000
D/libloc ( 187): Accuracy: 0.0000000
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 1
D/libloc ( 187): loc_eng_process_loc_event: 1
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/RPC ( 187): 3000008c:00050000 waiting for XDR input buffer to be consumed.
D/RPC ( 187): 3000008c:00050000 call success.
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22503, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22503)
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_STATUS_REPORT (client 0)
D/libloc ( 187): Fix session state: RPC_LOC_FIX_SESSION_STATE_END
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 256
D/libloc ( 187): loc_eng_process_loc_event: 100
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
D/libloc ( 187):
D/libloc ( 187): Event RPC_LOC_EVENT_STATUS_REPORT (client 0)
D/libloc ( 187): Engine state: RPC_LOC_ENGINE_STATE_OFF
D/libloc ( 187): loc_eng_deferred_action_thread signalled
D/libloc ( 187): loc_eng_deferred_action_thread event 256
D/libloc ( 187): loc_eng_process_loc_event: 100
D/libloc ( 187): loc_inform_gps_status, status: GPS_STATUS_ENGINE_OFF
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22504, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22504)
D/RPC ( 187): 3000008c:00050000 received CALL.
D/RPC ( 187): 3000008c:00050000 dispatching RPC call (XID 22505, xdr 0x4c9d10) for callback client 3100008c:00050001.
D/RPC ( 187): 3100008c:327681 sending RPC reply (XID 22505)
D/libloc ( 187): loc_eng_deferred_action_thread. waiting for events
W/Adreno200-EGLSUB( 381): SetSwapInterval() interval: 0 not set
W/InputManagerService( 187): Got RemoteException sending setActive(false) notification to pid 4983 uid 10065
D/dalvikvm( 381): GC_CONCURRENT freed 2986K, 40% free 8598K/14215K, paused 5ms+11ms
D/dalvikvm( 381): GC_FOR_ALLOC freed 908K, 41% free 8439K/14215K, paused 44ms
D/dalvikvm( 381): GC_FOR_ALLOC freed 1279K, 41% free 8510K/14215K, paused 44ms
I/ActivityManager( 187): START {act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10200000 cmp=com.android.launcher/com.android.launcher2.Launcher} from pid 187
E/wpa_supplicant( 2705): wpa_driver_wext_scan: Start
I/ActivityManager( 187): START {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=org.jtb.alogcat/.LogActivity} from pid 381
D/OpenGLRenderer( 381): Flushing caches (mode 1)
W/InputManagerService( 187): Starting input on non-focused client com.android.internal.view.IInputMethodClient$Stub$Proxy@41450028 (uid=10023 pid=381)
D/OpenGLRenderer( 381): Flushing caches (mode 0)
Powered by
Google Project Hosting