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 121 attachment: DarkGradientFlicker.txt (67.9 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/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 57195, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57195)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57196, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57196)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57197, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57197)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57198, 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: 0
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/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 57198)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57199, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57199)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57200, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57200)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57201, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57201)
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 57202, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57202)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57203, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57203)
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: 0x606D
D/libloc ( 206): Latitude: 31.4099979 (intermediate)
D/libloc ( 206): Longitude: 35.0700009
D/libloc ( 206): Accuracy: 0.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 57204, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57204)
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 57205, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57205)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57206, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57206)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57207, 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: 0
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 57207)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57208, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57208)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57209, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57209)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57210, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57210)
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 57211, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57211)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57212, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57212)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57213, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57213)
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: 0x606D
D/libloc ( 206): Latitude: 31.4099979 (intermediate)
D/libloc ( 206): Longitude: 35.0700009
D/libloc ( 206): Accuracy: 0.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 57216, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57216)
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 57218, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57218)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57219, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57219)
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 57220, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57220)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57221, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57221)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 206): sv count: 0
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/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 57222, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57222)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57223, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57223)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57224, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57224)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57225, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57225)
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 57226, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57226)
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: 0x606D
D/libloc ( 206): Latitude: 31.4099979 (intermediate)
D/libloc ( 206): Longitude: 35.0700009
D/libloc ( 206): Accuracy: 0.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 57227, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57227)
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 57228, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57228)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57229, 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/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 57229)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57230, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57230)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57231, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57231)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 206): sv count: 0
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): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57232, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57232)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57233, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57233)
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 57234, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57234)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57235, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57235)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57236, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57236)
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: 0x606D
D/libloc ( 206): Latitude: 31.4099979 (intermediate)
D/libloc ( 206): Longitude: 35.0700009
D/libloc ( 206): Accuracy: 0.0000000
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 57239, xdr 0x353e70) for callback client 3100008c:00050001.
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 57239)
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 57241, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57241)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57242, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57242)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57243, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57243)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57244, 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: 0
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/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 57244)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57245, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57245)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57246, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57246)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57247, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57247)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57248, 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/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57248)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57249, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57249)
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: 0x606D
D/libloc ( 206): Latitude: 31.4099979 (intermediate)
D/libloc ( 206): Longitude: 35.0700009
D/libloc ( 206): Accuracy: 0.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 57250, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57250)
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 57251, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57251)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57252, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57252)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57253, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57253)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57254, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57254)
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_SATELLITE_REPORT (client 0)
D/libloc ( 206): sv count: 0
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/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 57255, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57255)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57256, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57256)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57257, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57257)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57258, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57258)
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 57259, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57259)
D/dalvikvm( 206): GC_CONCURRENT freed 1486K, 31% free 12773K/18311K, paused 7ms+23ms
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: 0x606D
D/libloc ( 206): Latitude: 31.4099979 (intermediate)
D/libloc ( 206): Longitude: 35.0700009
D/libloc ( 206): Accuracy: 0.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 57262, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57262)
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
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 57264, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57264)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57265, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57265)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57266, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57266)
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: 0
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): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57267, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57267)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57268, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57268)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57269, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57269)
D/RPC ( 206): 3000008c:00050000 received CALL.
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 dispatching RPC call (XID 57270, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57270)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57271, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57271)
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57272, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57272)
D/libloc ( 206): loc_eng_stop called
D/RPC ( 206): 3000008c:00050000 sending call (XID 93).
D/RPC ( 206): 3000008c:00050000 received REPLY (XID 93), grabbing mutex to wake up client.
D/libloc ( 206): loc_inform_gps_status, status: GPS_STATUS_SESSION_END
D/libloc ( 206):
D/libloc ( 206): Event RPC_LOC_EVENT_PARSED_POSITION_REPORT (client 0)
D/libloc ( 206): Session status: RPC_LOC_SESS_STATUS_USER_END Valid mask: 0x1
D/RPC ( 206): 3000008c:00050000 waiting for XDR input buffer to be consumed.
D/RPC ( 206): 3000008c:00050000 call success.
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57273, xdr 0x353e70) for callback client 3100008c:00050001.
D/libloc ( 206): Latitude: 0.0000000 (intermediate)
D/libloc ( 206): Longitude: 0.0000000
D/libloc ( 206): Accuracy: 0.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 57273)
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 57274, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57274)
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/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
D/RPC ( 206): 3000008c:00050000 received CALL.
D/RPC ( 206): 3000008c:00050000 dispatching RPC call (XID 57275, xdr 0x353e70) for callback client 3100008c:00050001.
D/RPC ( 206): 3100008c:327681 sending RPC reply (XID 57275)
I/power ( 206): *** set_screen_state 1
I/InputDispatcher( 206): Dropped event because input dispatch is disabled.
I/AudioHardwareMSM72XX( 126): Routing audio to Handset
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 >
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@4142e3d8
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@41147050
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
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
D/OpenGLRenderer( 9965): Flushing caches (mode 0)
D/OpenGLRenderer( 9965): Flushing caches (mode 1)
V/ImageProvider( 9965): onTrimMemory() with level=20
W/InputManagerService( 206): Starting input on non-focused client com.android.internal.view.IInputMethodClient$Stub$Proxy@417fe9b8 (uid=10049 pid=9965)
I/ActivityManager( 206): No longer want com.android.settings (pid 9386): hidden #16
I/ActivityManager( 206): No longer want com.unicell.pangoandroid (pid 9354): hidden #17
I/WindowManager( 206): WIN DEATH: Window{417bcb90 com.android.settings/com.android.settings.Settings paused=false}
I/WindowManager( 206): WIN DEATH: Window{41888ba0 com.android.settings/com.android.settings.SubSettings paused=false}
W/ActivityManager( 206): Scheduling restart of crashed service com.unicell.pangoandroid/com.urbanairship.push.PushService in 5000ms
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 Handset
V/TransportControlView( 206): Create TCV com.android.internal.widget.TransportControlView@4121cbf0
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.
D/PhoneStatusBar( 416): disable: < EXPAND icons alerts TICKER system_info BACK* HOME* RECENT CLOCK* >
D/dalvikvm( 206): GC_EXPLICIT freed 876K, 31% free 12750K/18311K, paused 7ms+21ms
W/Smack/Packet( 2161): notify conn break (IOEx), close connection
W/ActivityManager( 206): finishReceiver called but no pending broadcasts
D/dalvikvm( 416): GC_CONCURRENT freed 1817K, 60% free 7128K/17607K, paused 4ms+7ms
I/GTalkService/c( 2161): [AndroidEndpoint@1091881088] connect: acct=1000000, state=CONNECTING
I/GTalkService/c( 2161): [GTalkConnection@1091961016] connect: acct=1, state=CONNECTING
I/ActivityManager( 206): Start proc com.unicell.pangoandroid for service com.unicell.pangoandroid/com.urbanairship.push.PushService: pid=10166 uid=10050 gids={3003, 1015}
I/Pango (10166): Application started
D/ConnectivityService( 206): handleInetConditionHoldEnd: net=1, condition=0, published condition=100
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
I/Pango (10166): My Application onCreate - App APID: 421b0549-cdde-47ad-aee2-a12f529bc1ef
D/ConnectivityService( 206): handleInetConditionHoldEnd: net=1, condition=100, published condition=0
D/dalvikvm( 7482): GC_CONCURRENT freed 1702K, 33% free 7897K/11715K, paused 5ms+20ms
D/dalvikvm( 2161): GC_EXPLICIT freed 980K, 35% free 7731K/11715K, paused 81ms+13ms
W/ActivityManager( 206): finishReceiver called but no pending broadcasts
I/power ( 206): *** set_screen_state 1
I/WindowManager( 206): Lock screen displayed!
I/AudioHardwareMSM72XX( 126): Routing audio to Handset
D/SurfaceFlinger( 123): Screen about to return, flinger = 0xf918
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
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 >
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@4185ae20
D/PhoneStatusBar( 416): disable: < expand icons alerts ticker system_info back* home* recent clock* >
D/dalvikvm( 206): GC_EXPLICIT freed 787K, 32% free 12474K/18311K, paused 6ms+18ms
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@4145de68
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
D/HardwareRenderer( 1392): Disabling v-sync
W/Adreno200-EGLSUB( 1392): SetSwapInterval() interval: 0 not set
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
I/power ( 206): *** set_screen_state 0
D/SurfaceFlinger( 123): About to give-up screen, flinger = 0xf918
D/dalvikvm( 9445): GC_CONCURRENT freed 1827K, 33% free 7856K/11715K, paused 8ms+7ms
I/AudioHardwareMSM72XX( 126): Routing audio to Handset
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@41883f08
D/UnlockScreen( 206): portrait mode
V/TransportControlView( 206): Create TCV com.android.internal.widget.TransportControlView@4123af78
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.
D/PhoneStatusBar( 416): disable: < EXPAND icons alerts TICKER system_info BACK* HOME* RECENT CLOCK* >
I/EventLogService( 2161): Aggregate from 1350402698430 (log), 1350402698430 (data)
I/power ( 206): *** set_screen_state 1
I/WindowManager( 206): Lock screen displayed!
I/AudioHardwareMSM72XX( 126): Routing audio to Handset
I/ActivityManager( 206): Start proc com.android.vending for broadcast com.android.vending/com.google.android.finsky.receivers.ServerNotificationReceiver: pid=10202 uid=10004 gids={3003, 1015}
D/SurfaceFlinger( 123): Screen about to return, flinger = 0xf918
I/ActivityThread(10202): Pub com.google.android.finsky.QSBSuggestionsProvider2: com.google.android.finsky.providers.QSBSuggestionsProvider
I/ActivityThread(10202): Pub com.google.android.finsky.AppIconProvider: com.google.android.finsky.providers.AppIconProvider
I/ActivityThread(10202): Pub com.google.android.finsky.RecentSuggestionsProvider: com.google.android.finsky.providers.RecentSuggestionsProvider
D/dalvikvm(10202): DexOpt: couldn't find field Landroid/app/Notification;.priority
W/dalvikvm(10202): VFY: unable to resolve instance field 53
D/dalvikvm(10202): VFY: replacing opcode 0x59 at 0x004a
D/Finsky (10202): [1] DailyHygiene.goMakeHygieneIfDirty: No need to run daily hygiene.
D/Finsky (10202): [1] ServerNotificationReceiver.onReceive: Handling notificationId=[Cc7nSpzjtobu]
D/Finsky (10202): [1] DfeNotificationManagerImpl.handleNotification: Handling notification type=[1], id=[Cc7nSpzjtobu]
D/Finsky (10202): [1] DfeNotificationManagerImpl.handleNotification: Processing notification library update.
D/Finsky (10202): [1] InstallerImpl.requestInstall: Request install of org.jtb.alogcat v=43 for tickle
D/Finsky (10202): [1] InstallerImpl.kick: Installer kick org.jtb.alogcat - no action, not running yet
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
D/Finsky (10202): [1] InstallerImpl.kick: Installer kick null - starting org.jtb.alogcat
D/Finsky (10202): [1] DownloadImpl.setState: org.jtb.alogcat from null to UNQUEUED.
D/Finsky (10202): [1] DownloadQueueImpl.add: Download org.jtb.alogcat added to DownloadQueue
D/Finsky (10202): [1] DownloadImpl.setState: org.jtb.alogcat from UNQUEUED to QUEUED.
E/dalvikvm(10202): Could not find class 'android.content.pm.ContainerEncryptionParams', referenced from method com.google.android.finsky.utils.PackageManagerUtils.callInstallEncrypted
W/dalvikvm(10202): VFY: unable to resolve check-cast 78 (Landroid/content/pm/ContainerEncryptionParams;) in Lcom/google/android/finsky/utils/PackageManagerUtils;
D/dalvikvm(10202): VFY: replacing opcode 0x1f at 0x000a
E/dalvikvm(10202): Could not find class 'android.content.pm.ContainerEncryptionParams', referenced from method com.google.android.finsky.utils.PackageManagerUtils.generateEncryptionParams
W/dalvikvm(10202): VFY: unable to resolve new-instance 78 (Landroid/content/pm/ContainerEncryptionParams;) in Lcom/google/android/finsky/utils/PackageManagerUtils;
D/dalvikvm(10202): VFY: replacing opcode 0x22 at 0x01eb
D/dalvikvm(10202): DexOpt: unable to opt direct call 0x015e at 0x1ed in Lcom/google/android/finsky/utils/PackageManagerUtils;.generateEncryptionParams
I/installd( 128): free_cache(148064) avail 109400064
D/Finsky (10202): [1] DownloadQueueImpl.startDownload: Download org.jtb.alogcat starting
D/Finsky (10202): [1] 2.run: Loaded library for account: [Q2oZolTn3LTI8csMCW2BT6JiOGw]
D/Finsky (10202): [1] 2.run: Finished loading 1 libraries.
D/Finsky (10202): [1] 4.run: Applying library update: account=[Q2oZolTn3LTI8csMCW2BT6JiOGw], corpus=3, numMutations=1
D/Finsky (10202): [720] 7.run: Enqueued org.jtb.alogcat as content://downloads/my_downloads/15
D/Finsky (10202): [1] DownloadImpl.setState: org.jtb.alogcat from QUEUED to DOWNLOADING.
D/Finsky (10202): [1] DownloadQueueImpl.onStart: org.jtb.alogcat: onStart
D/Finsky (10202): [1] DownloadQueueImpl.notifyProgress: org.jtb.alogcat: onProgress 0/-1 Status: 190.
D/dalvikvm( 206): GC_CONCURRENT freed 1625K, 32% free 12565K/18311K, paused 33ms+55ms
D/Finsky (10202): [1] DownloadQueueImpl.notifyProgress: org.jtb.alogcat: onProgress 0/-1 Status: 192.
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@4186adb0
I/DownloadManager( 8720): Initiating request for download 15
D/Finsky (10202): [1] 2.onResponse: Notification [Cc7nSpzjtobu] successfully ack'd.
D/Finsky (10202): [1] 3.onMutationsApplied: App library has changed, requesting content sync.
I/DownloadManager( 8720): Initiating request for download 15
I/qtaguid ( 8720): Failed write_ctrl(u 57) res=-1 errno=22
I/qtaguid ( 8720): Untagging socket 57 failed errno=-22
W/NetworkManagementSocketTagger( 8720): untagSocket(57) failed with errno -22
D/Finsky (10202): [1] DownloadQueueImpl.notifyProgress: org.jtb.alogcat: onProgress 148064/148064 Status: 200.
D/Finsky (10202): [1] DownloadBroadcastReceiver.onReceive: Intent received at DownloadBroadcastReceiver
D/Finsky (10202): [1] DownloadImpl.setState: org.jtb.alogcat from DOWNLOADING to SUCCESS.
D/Finsky (10202): [1] DownloadQueueImpl.onComplete: org.jtb.alogcat: onComplete
D/Finsky (10202): [1] DownloadQueueImpl.remove: Download org.jtb.alogcat removed from DownloadQueue
I/installd( 128): free_cache(0) avail 109248512
I/ActivityManager( 206): Start proc com.android.defcontainer for service com.android.defcontainer/.DefaultContainerService: pid=10246 uid=10038 gids={1015, 2001}
W/ActivityManager( 206): No content provider found for permission revoke: file:///data/data/com.android.providers.downloads/cache/downloadfile.apk
D/dalvikvm( 416): GC_CONCURRENT freed 1611K, 59% free 7296K/17607K, paused 5ms+8ms
W/ActivityManager( 206): No content provider found for permission revoke: file:///data/data/com.android.providers.downloads/cache/downloadfile.apk
I/PackageManager( 206): Running dexopt on: org.jtb.alogcat
D/dalvikvm(10259): DexOpt: load 122ms, verify+opt 397ms
I/ActivityManager( 206): Force stopping package org.jtb.alogcat uid=10055
D/PackageManager( 206): New package installed in /data/app/org.jtb.alogcat-1.apk
I/ActivityManager( 206): Start proc com.android.voicedialer for broadcast com.android.voicedialer/.VoiceDialerReceiver: pid=10260 uid=10002 gids={3002}
D/AccountTypeManager( 9787): Registering external account type=com.whatsapp, packageName=com.whatsapp
W/ResourceType( 9787): getEntry failing because entryIndex 1000 is beyond type entryCount 195
W/ResourceType( 9787): Failure getting entry for 0x7f0203e8 (t=1 e=1000) in package 0 (error -2147483647)
D/AccountTypeManager( 9787): Registering 1 extension packages
I/AccountTypeManager( 9787): Loaded meta-data for 3 account types, 2 accounts in 182ms(wall) 18ms(cpu)
D/PackageManager( 206): generateServicesMap(android.accounts.AccountAuthenticator): 4 services unchanged
I/ActivityManager( 206): Start proc com.android.musicfx for broadcast com.android.musicfx/.Compatibility$Receiver: pid=10272 uid=10015 gids={3003, 3002}
I/ActivityManager( 206): No longer want com.doubleTwist.alarmClock (pid 9428): hidden #16
W/ActivityManager( 206): Scheduling restart of crashed service com.doubleTwist.alarmClock/.RingtonePlayerService in 5000ms
I/ActivityManager( 206): Start proc com.google.android.partnersetup for broadcast com.google.android.partnersetup/.RlzPingBroadcastReceiver: pid=10286 uid=10029 gids={3003}
I/ActivityManager( 206): No longer want com.google.android.apps.maps:FriendService (pid 9465): hidden #16
D/PackageManager( 206): generateServicesMap(android.content.SyncAdapter): 13 services unchanged
I/ActivityThread(10286): Pub com.google.android.partnersetup.rlzprovider: com.google.android.partnersetup.RlzProvider
D/BackupManagerService( 206): Received broadcast Intent { act=android.intent.action.PACKAGE_ADDED dat=package:org.jtb.alogcat flg=0x10000010 (has extras) }
I/ActivityThread(10286): Pub com.google.android.partnersetup.rlzappprovider: com.google.android.partnersetup.RlzAppProvider
I/ActivityManager( 206): Start proc com.noshufou.android.su for broadcast com.noshufou.android.su/.InstallReceiver: pid=10298 uid=10007 gids={3003, 1015}
I/ActivityManager( 206): No longer want com.google.android.apps.maps (pid 5084): hidden #16
V/BackupManagerService( 206): addPackageParticipantsLocked: #1
I/dalvikvm(10298): Turning on JNI app bug workarounds for target SDK version 11...
I/ActivityThread(10298): Pub com.noshufou.android.su.provider: com.noshufou.android.su.provider.PermissionsProvider
I/ActivityManager( 206): Start proc com.google.android.apps.maps for broadcast com.google.android.apps.maps/com.google.android.location.internal.NlpPackageUpdateReceiver: pid=10310 uid=10054 gids={3003, 1015}
I/ActivityManager( 206): No longer want com.android.contacts (pid 9787): hidden #16
I/ActivityThread(10310): Pub com.google.android.maps.LayerInfoProvider: com.google.googlenav.layer.LayerInfoProvider
I/ActivityThread(10310): Pub com.google.android.maps.OfflineIndexProvider: com.google.googlenav.provider.OfflineIndexProvider
I/ActivityThread(10310): Pub com.google.android.maps.TrafficAppWidgetProvider: com.google.googlenav.appwidget.traffic.TrafficAppWidgetProvider
I/ActivityThread(10310): Pub com.google.android.maps.LocalActivePlacesProvider: com.google.googlenav.provider.LocalActivePlacesProvider
I/ActivityThread(10310): Pub com.google.android.maps.StarredItemProvider: com.google.googlenav.provider.StarredItemProvider
D/dalvikvm( 206): GC_EXPLICIT freed 1278K, 32% free 12630K/18311K, paused 26ms+85ms
D/Finsky (10202): [706] 1.packageInstalled: Package install status for "org.jtb.alogcat" is 1
D/dalvikvm( 206): GC_EXPLICIT freed 399K, 34% free 12261K/18311K, paused 7ms+47ms
I/WindowManager( 206): WIN DEATH: Window{41ae43e0 com.android.contacts/com.android.contacts.activities.DialtactsActivity paused=false}
I/ActivityThread(10310): Pub com.google.android.maps.LocalSuggestionProvider: com.google.googlenav.provider.LocalSuggestionProvider
I/ActivityThread(10310): Pub com.google.android.maps.SearchHistoryProvider: com.google.googlenav.provider.SearchHistoryProvider
I/ActivityThread(10310): Pub com.google.android.maps.NavigationAvailabilityProvider: com.google.googlenav.provider.NavigationAvailabilityProvider
I/ActivityThread(10310): Pub com.google.android.maps.SuggestionProvider: com.google.googlenav.suggest.android.SuggestContentProvider
I/ActivityManager( 206): Start proc com.google.android.googlequicksearchbox for broadcast com.google.android.googlequicksearchbox/.SourceUpdateReceiver: pid=10324 uid=10028 gids={3003}
I/ActivityManager( 206): No longer want ch.teamtasks.tasks.paid (pid 9863): hidden #16
I/ActivityThread(10324): Pub com.google.android.googlequicksearchbox.shortcuts: com.google.android.googlequicksearchbox.WebHistoryProvider
I/ActivityManager( 206): Start proc com.doubleTwist.alarmClock for service com.doubleTwist.alarmClock/.RingtonePlayerService: pid=10336 uid=10047 gids={3003, 1015}
I/ActivityThread(10324): Pub com.google.android.googlequicksearchbox.google: com.google.android.googlequicksearchbox.google.GoogleSuggestionProvider
I/AlarmClockApplication(10336): Creating application
I/AlarmClockApplication(10336): - created application
I/ActivityManager( 206): No longer want com.android.providers.calendar (pid 6832): hidden #16
D/dalvikvm( 1392): GC_EXPLICIT freed 2154K, 52% free 8275K/16967K, paused 256ms+27ms
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@41606ae0
I/ActivityManager( 206): Start proc ch.teamtasks.tasks.paid for service ch.teamtasks.tasks.paid/ch.teamtasks.tasks.widget.WidgetService: pid=10356 uid=10053 gids={3003}
D/dalvikvm( 124): GC_EXPLICIT freed 38K, 45% free 6502K/11715K, paused 16ms+6ms
D/dalvikvm( 124): GC_EXPLICIT freed <1K, 45% free 6502K/11715K, paused 4ms+15ms
D/dalvikvm( 124): GC_EXPLICIT freed <1K, 45% free 6502K/11715K, paused 14ms+27ms
I/ActivityThread(10356): Pub ch.teamtasks.tasks.paid: ch.teamtasks.tasks.db.DummyTaskProvider
E/wpa_supplicant( 4525): wpa_driver_wext_scan: Start
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@4117d918
D/dalvikvm( 472): GC_CONCURRENT freed 1711K, 27% free 8603K/11715K, paused 29ms+43ms
D/dalvikvm( 7482): GC_CONCURRENT freed 1860K, 33% free 7879K/11715K, paused 4ms+9ms
E/SQLiteDatabase( 7482): close() was never explicitly called on database '/data/data/com.google.android.apps.maps/databases/google_latitude_history.db'
E/SQLiteDatabase( 7482): android.database.sqlite.DatabaseObjectNotClosedException: Application did not close the cursor or database object that was opened here
E/SQLiteDatabase( 7482): at android.database.sqlite.SQLiteDatabase.<init>(SQLiteDatabase.java:1943)
E/SQLiteDatabase( 7482): at android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:1007)
E/SQLiteDatabase( 7482): at android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:986)
E/SQLiteDatabase( 7482): at android.database.sqlite.SQLiteDatabase.openOrCreateDatabase(SQLiteDatabase.java:1051)
E/SQLiteDatabase( 7482): at android.app.ContextImpl.openOrCreateDatabase(ContextImpl.java:770)
E/SQLiteDatabase( 7482): at android.content.ContextWrapper.openOrCreateDatabase(ContextWrapper.java:221)
E/SQLiteDatabase( 7482): at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:157)
E/SQLiteDatabase( 7482): at com.google.googlenav.friend.history.v.a(SourceFile:61)
E/SQLiteDatabase( 7482): at com.google.googlenav.friend.reporting.LocationPrivacyService.a(SourceFile:147)
E/SQLiteDatabase( 7482): at com.google.googlenav.friend.reporting.LocationPrivacyService.onHandleIntent(SourceFile:121)
E/SQLiteDatabase( 7482): at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:65)
E/SQLiteDatabase( 7482): at android.os.Handler.dispatchMessage(Handler.java:99)
E/SQLiteDatabase( 7482): at android.os.Looper.loop(Looper.java:137)
E/SQLiteDatabase( 7482): at android.os.HandlerThread.run(HandlerThread.java:60)
E/System ( 7482): Uncaught exception thrown by finalizer
E/System ( 7482): java.lang.IllegalStateException: Don't have database lock!
E/System ( 7482): at android.database.sqlite.SQLiteDatabase.verifyLockOwner(SQLiteDatabase.java:2090)
E/System ( 7482): at android.database.sqlite.SQLiteDatabase$1.entryRemoved(SQLiteDatabase.java:2182)
E/System ( 7482): at android.database.sqlite.SQLiteDatabase$1.entryRemoved(SQLiteDatabase.java:2178)
E/System ( 7482): at android.util.LruCache.trimToSize(LruCache.java:197)
E/System ( 7482): at android.util.LruCache.evictAll(LruCache.java:285)
E/System ( 7482): at android.database.sqlite.SQLiteDatabase.deallocCachedSqlStatements(SQLiteDatabase.java:2143)
E/System ( 7482): at android.database.sqlite.SQLiteDatabase.closeClosable(SQLiteDatabase.java:1126)
E/System ( 7482): at android.database.sqlite.SQLiteDatabase.finalize(SQLiteDatabase.java:1914)
E/System ( 7482): at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:182)
E/System ( 7482): at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:168)
E/System ( 7482): at java.lang.Thread.run(Thread.java:856)
I/ActivityManager( 206): No longer want com.google.android.apps.uploader (pid 10010): hidden #16
D/OpenGLRenderer( 7608): Flushing caches (mode 1)
I/ActivityManager( 206): No longer want com.google.android.talk (pid 10072): hidden #16
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@413183f8
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@413f3418
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@41606eb8
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
D/Finsky (10202): [1] 5.onFinished: Installation state replication succeeded.
D/OpenGLRenderer( 2210): Flushing caches (mode 1)
D/dalvikvm( 1392): GC_FOR_ALLOC freed 1161K, 49% free 8747K/16967K, paused 79ms
D/dalvikvm( 1392): GC_FOR_ALLOC freed 1446K, 50% free 8537K/16967K, paused 60ms
D/dalvikvm( 1392): GC_FOR_ALLOC freed 4K, 43% free 9831K/16967K, paused 61ms
D/dalvikvm( 1392): GC_FOR_ALLOC freed 1880K, 49% free 8675K/16967K, paused 52ms
D/dalvikvm( 1392): GC_FOR_ALLOC freed <1K, 42% free 9971K/16967K, paused 53ms
D/dalvikvm( 1392): GC_FOR_ALLOC freed 1875K, 43% free 9703K/16967K, paused 53ms
D/dalvikvm( 1392): GC_CONCURRENT freed 1407K, 41% free 10063K/16967K, paused 4ms+23ms
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=10380 uid=10055 gids={1007, 1015}
I/dalvikvm(10380): 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)
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: +842ms
W/InputManagerService( 206): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@41513af0
Powered by Google Project Hosting