-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdump.txt
More file actions
6736 lines (3360 loc) · 236 KB
/
dump.txt
File metadata and controls
6736 lines (3360 loc) · 236 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
adb server is out of date. killing...
* daemon started successfully *
Current Alarm Manager state:
Settings:
min_futurity=+5s0ms
min_interval=+60s0ms
allow_while_idle_short_time=+5s0ms
allow_while_idle_long_time=+15m0s0ms
allow_while_idle_whitelist_duration=+10s0ms
nowRTC=1501892328059=2017-08-04 20:18:48 nowELAPSED=+15d2h27m8s119ms
mLastTimeChangeClockTime=1501888772045=2017-08-04 19:19:32
mLastTimeChangeRealtime=+15d1h27m52s81ms
Next non-wakeup alarm: +11s940ms = 2017-08-04 20:18:59
Next wakeup: +53s203ms = 2017-08-04 20:19:41
Num time change events: 136
Next alarm clock information:
user:0 pendingSend:false time:1502153700000 = 2017-08-07 20:55:00 = +3d0h36m11s941ms
Pending alarm batches: 55
Batch{2107da9 num=1 start=1304840059 end=1304840059 flgs=0x1}:
ELAPSED #0: Alarm{1052f2e tag *alarm*:android.intent.action.TIME_TICK type 3 when 1304840059 android}
tag=*alarm*:android.intent.action.TIME_TICK
type=3 whenElapsed=+11s940ms when=+11s940ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{fd42016: PendingIntentRecord{61c8d97 android broadcastIntent}}
Batch{f294acf num=1 start=1304881322 end=1304881322 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{47a1c5c tag *walarm*:start_collect type 2 when 1304881322 com.fivemobile.thescore}
tag=*walarm*:start_collect
type=2 whenElapsed=+53s203ms when=+53s203ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{7ca4b65: PendingIntentRecord{cc52eab com.fivemobile.thescore broadcastIntent}}
Batch{939103a num=3 start=1304900059 end=1304961114}:
RTC #2: Alarm{719c4eb tag *alarm*:com.google.android.location.internal.action.ULR_BAROMETER_READ_ALARM type 1 when 1501892400000 com.google.android.gms}
tag=*alarm*:com.google.android.location.internal.action.ULR_BAROMETER_READ_ALARM
type=1 whenElapsed=+1m11s940ms when=2017-08-04 20:20:00
window=+1m30s0ms repeatInterval=120000 count=0 flags=0x0
operation=PendingIntent{cb99ddd: PendingIntentRecord{f0fbd52 com.google.android.gms startService}}
ELAPSED_WAKEUP #1: Alarm{8baa248 tag *walarm*:com.google.android.gms.gcm.ACTION_CHECK_QUEUE type 2 when 1304889105 com.google.android.gms}
tag=*walarm*:com.google.android.gms.gcm.ACTION_CHECK_QUEUE
type=2 whenElapsed=+60s986ms when=+60s986ms
window=+1m12s9ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{9938e1: PendingIntentRecord{ea250ef com.google.android.gms broadcastIntent}}
ELAPSED_WAKEUP #0: Alarm{f97f606 tag *walarm*:com.google.android.location.internal.action.ULR_BLE_SCAN_ALARM type 2 when 1304809927 com.google.android.gms}
tag=*walarm*:com.google.android.location.internal.action.ULR_BLE_SCAN_ALARM
type=2 whenElapsed=-18s192ms when=-18s192ms
window=+7m30s0ms repeatInterval=600000 count=0 flags=0x0
operation=PendingIntent{23af2cf: PendingIntentRecord{d373ad9 com.google.android.gms startService}}
Batch{f4dc4c7 num=1 start=1305020881 end=1305020881 flgs=0x9}:
ELAPSED_WAKEUP #0: Alarm{efb9af4 tag *walarm*:com.android.bluetooth.btservice.action.ALARM_WAKEUP type 2 when 1305020881 com.android.bluetooth}
tag=*walarm*:com.android.bluetooth.btservice.action.ALARM_WAKEUP
type=2 whenElapsed=+3m12s762ms when=+3m12s762ms
window=0 repeatInterval=0 count=0 flags=0x9
operation=PendingIntent{70f821d: PendingIntentRecord{aad6c92 com.android.bluetooth broadcastIntent}}
Batch{dd7e663 num=1 start=1305074858 end=1305074858 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{b17260 tag *walarm*:X.2Hz.ACTION_ALARM.com.facebook.katana.Mqtt_Wakeup type 2 when 1305074858 com.facebook.katana}
tag=*walarm*:X.2Hz.ACTION_ALARM.com.facebook.katana.Mqtt_Wakeup
type=2 whenElapsed=+4m6s739ms when=+4m6s739ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{2a72319: PendingIntentRecord{c31bfde com.facebook.katana broadcastIntent}}
Batch{d5885bf num=10 start=1305179650 end=1305319178 flgs=0x8}:
ELAPSED_WAKEUP #9: Alarm{82b548c tag *walarm*:com.facebook.rti.mqtt.f.e.ACTION_INEXACT_ALARM.Mqtt Simple Client.com.instagram.android type 2 when 1305179650 com.instagram.android}
tag=*walarm*:com.facebook.rti.mqtt.f.e.ACTION_INEXACT_ALARM.Mqtt Simple Client.com.instagram.android
type=2 whenElapsed=+5m51s531ms when=+5m51s531ms
window=+11m15s0ms repeatInterval=900000 count=0 flags=0x0
operation=PendingIntent{e7dd7d5: PendingIntentRecord{446773a com.instagram.android broadcastIntent}}
ELAPSED_WAKEUP #8: Alarm{715fbea tag *walarm*:action_batch_upload type 2 when 1305094180 com.instagram.android}
tag=*walarm*:action_batch_upload
type=2 whenElapsed=+4m26s61ms when=+4m26s61ms
window=+3m44s998ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{819bedb: PendingIntentRecord{37f2d78 com.instagram.android broadcastIntent}}
ELAPSED_WAKEUP #7: Alarm{fd11c51 tag *walarm*:X.07A.ACTION_INEXACT_ALARM.MqttLite.com.facebook.orca type 2 when 1305077779 com.facebook.orca}
tag=*walarm*:X.07A.ACTION_INEXACT_ALARM.MqttLite.com.facebook.orca
type=2 whenElapsed=+4m9s660ms when=+4m9s660ms
window=+11m15s0ms repeatInterval=900000 count=0 flags=0x0
operation=PendingIntent{a4fecb6: PendingIntentRecord{436f490 com.facebook.orca broadcastIntent}}
ELAPSED_WAKEUP #6: Alarm{8eb6db7 tag *walarm*:android.appwidget.action.APPWIDGET_UPDATE type 2 when 1305048009 android}
tag=*walarm*:android.appwidget.action.APPWIDGET_UPDATE
type=2 whenElapsed=+3m39s890ms when=+3m39s890ms
window=+22m30s0ms repeatInterval=1800000 count=0 flags=0x8
operation=PendingIntent{8ed7555: PendingIntentRecord{b990b6a android broadcastIntent}}
ELAPSED_WAKEUP #5: Alarm{a35a924 tag *walarm*:com.facebook.rti.mqtt.f.e.ACTION_INEXACT_ALARM.FBNS.com.instagram.android type 2 when 1305033109 com.instagram.android}
tag=*walarm*:com.facebook.rti.mqtt.f.e.ACTION_INEXACT_ALARM.FBNS.com.instagram.android
type=2 whenElapsed=+3m24s990ms when=+3m24s990ms
window=+11m15s0ms repeatInterval=900000 count=0 flags=0x0
operation=PendingIntent{83a2c8d: PendingIntentRecord{aecf37c com.instagram.android broadcastIntent}}
ELAPSED_WAKEUP #4: Alarm{c661e42 tag *walarm*:X.090.ACTION_INEXACT_ALARM.FBNS.com.facebook.katana type 2 when 1305030734 com.facebook.katana}
tag=*walarm*:X.090.ACTION_INEXACT_ALARM.FBNS.com.facebook.katana
type=2 whenElapsed=+3m22s615ms when=+3m22s615ms
window=+11m15s0ms repeatInterval=900000 count=0 flags=0x0
operation=PendingIntent{4f200c4: PendingIntentRecord{1b9ba22 com.facebook.katana broadcastIntent}}
ELAPSED_WAKEUP #3: Alarm{dbf2e53 tag *walarm*:X.08n.ACTION_INEXACT_ALARM.FBNS.com.facebook.katana type 2 when 1305029921 com.facebook.katana}
tag=*walarm*:X.08n.ACTION_INEXACT_ALARM.FBNS.com.facebook.katana
type=2 whenElapsed=+3m21s802ms when=+3m21s802ms
window=+11m15s0ms repeatInterval=900000 count=0 flags=0x0
operation=PendingIntent{1b63390: PendingIntentRecord{441898d com.facebook.katana broadcastIntent}}
ELAPSED_WAKEUP #2: Alarm{faa0489 tag *walarm*:X.06v.ACTION_INEXACT_ALARM.MqttLite.com.facebook.orca type 2 when 1305027709 com.facebook.orca}
tag=*walarm*:X.06v.ACTION_INEXACT_ALARM.MqttLite.com.facebook.orca
type=2 whenElapsed=+3m19s590ms when=+3m19s590ms
window=+11m15s0ms repeatInterval=900000 count=0 flags=0x0
operation=PendingIntent{34c196c: PendingIntentRecord{6e75e8b com.facebook.orca broadcastIntent}}
ELAPSED_WAKEUP #1: Alarm{3bbdc8e tag *walarm*:X.07J.ACTION_INEXACT_ALARM.FBNS.com.facebook.katana type 2 when 1305009363 com.facebook.katana}
tag=*walarm*:X.07J.ACTION_INEXACT_ALARM.FBNS.com.facebook.katana
type=2 whenElapsed=+3m1s244ms when=+3m1s244ms
window=+11m15s0ms repeatInterval=900000 count=0 flags=0x0
operation=PendingIntent{3b57bca: PendingIntentRecord{d4f8c49 com.facebook.katana broadcastIntent}}
ELAPSED #0: Alarm{8045caf tag *alarm*:android.content.jobscheduler.JOB_DELAY_EXPIRED type 3 when 1305008029 android}
tag=*alarm*:android.content.jobscheduler.JOB_DELAY_EXPIRED
type=3 whenElapsed=+2m59s910ms when=+2m59s910ms
window=+13m19s665ms repeatInterval=0 count=0 flags=0x8
operation=PendingIntent{e72dd04: PendingIntentRecord{b5782ed android broadcastIntent}}
Batch{c72f8bc num=1 start=1305217197 end=1305217197 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{2256045 tag *walarm*:X.08n.ACTION_BACKUP_ALARM.FBNS.com.facebook.katana type 2 when 1305217197 com.facebook.katana}
tag=*walarm*:X.08n.ACTION_BACKUP_ALARM.FBNS.com.facebook.katana
type=2 whenElapsed=+6m29s78ms when=+6m29s78ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{79d339a: PendingIntentRecord{544bf06 com.facebook.katana broadcastIntent}}
Batch{6c414cb num=1 start=1305217255 end=1305217255 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{fd4e4a8 tag *walarm*:com.facebook.rti.mqtt.f.e.ACTION_BACKUP_ALARM.FBNS.com.instagram.android type 2 when 1305217255 com.instagram.android}
tag=*walarm*:com.facebook.rti.mqtt.f.e.ACTION_BACKUP_ALARM.FBNS.com.instagram.android
type=2 whenElapsed=+6m29s136ms when=+6m29s136ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{d40bbc1: PendingIntentRecord{fd1007b com.instagram.android broadcastIntent}}
Batch{60aef66 num=1 start=1305217540 end=1305217540 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{67d32a7 tag *walarm*:X.07A.ACTION_BACKUP_ALARM.MqttLite.com.facebook.orca type 2 when 1305217540 com.facebook.orca}
tag=*walarm*:X.07A.ACTION_BACKUP_ALARM.MqttLite.com.facebook.orca
type=2 whenElapsed=+6m29s421ms when=+6m29s421ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{ce7a354: PendingIntentRecord{46fec9a com.facebook.orca broadcastIntent}}
Batch{95c52fd num=1 start=1305501388 end=1305501388 flgs=0x9}:
RTC #0: Alarm{a469bf2 tag *alarm*:com.android.deskclock.ON_QUARTER_HOUR type 1 when 1501893001329 com.lge.clock}
tag=*alarm*:com.android.deskclock.ON_QUARTER_HOUR
type=1 whenElapsed=+11m13s269ms when=2017-08-04 20:30:01
window=0 repeatInterval=0 count=0 flags=0x9
operation=PendingIntent{2c05243: PendingIntentRecord{7c5a0c0 com.lge.clock broadcastIntent}}
Batch{aa021f9 num=1 start=1305517948 end=1305517948 flgs=0xd}:
ELAPSED_WAKEUP #0: Alarm{1e853e tag *walarm*:com.lge.exchange/.service.EasManagerService type 2 when 1305517948 com.lge.exchange}
tag=*walarm*:com.lge.exchange/.service.EasManagerService
type=2 whenElapsed=+11m29s829ms when=+11m29s829ms
window=0 repeatInterval=0 count=0 flags=0xd
operation=PendingIntent{58bcf9f: PendingIntentRecord{9c408ec com.lge.exchange startService}}
Batch{5b7e4b5 num=1 start=1305714060 end=1305714060 flgs=0x9}:
ELAPSED_WAKEUP #0: Alarm{ff9b74a tag *walarm*:android.content.syncmanager.SYNC_ALARM type 2 when 1305714060 android}
tag=*walarm*:android.content.syncmanager.SYNC_ALARM
type=2 whenElapsed=+14m45s941ms when=+14m45s941ms
window=0 repeatInterval=0 count=0 flags=0x9
operation=PendingIntent{15d11d1: PendingIntentRecord{8b47436 android broadcastIntent}}
Batch{67c6bb num=1 start=1305988191 end=1305988191 flgs=0x5}:
ELAPSED_WAKEUP #0: Alarm{a5ec7d8 tag *walarm*:com.google.android.gms.gcm.HEARTBEAT_ALARM type 2 when 1305988191 com.google.android.gms}
tag=*walarm*:com.google.android.gms.gcm.HEARTBEAT_ALARM
type=2 whenElapsed=+19m20s72ms when=+19m20s72ms
window=0 repeatInterval=0 count=0 flags=0x5
operation=PendingIntent{44f1731: PendingIntentRecord{c242dbf com.google.android.gms broadcastIntent}}
Batch{fa3fe16 num=3 start=1306088123 end=1306098514}:
RTC_WAKEUP #2: Alarm{b421397 tag *walarm*:com.google.android.apps.photos.scheduler.ACTION_ALARM type 0 when 1501893588064 com.google.android.apps.photos}
tag=*walarm*:com.google.android.apps.photos.scheduler.ACTION_ALARM
type=0 whenElapsed=+21m0s4ms when=2017-08-04 20:39:48
window=+22m29s988ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{ae48984: PendingIntentRecord{54cf56d com.google.android.apps.photos broadcastIntent}}
ELAPSED_WAKEUP #1: Alarm{3d9e5a2 tag *walarm*:com.google.android.location.reporting.ACTION_UPDATE_WORLD type 2 when 1305943884 com.google.android.gms}
tag=*walarm*:com.google.android.location.reporting.ACTION_UPDATE_WORLD
type=2 whenElapsed=+18m35s765ms when=+18m35s765ms
window=+45m0s0ms repeatInterval=3600000 count=0 flags=0x0
operation=PendingIntent{50a5233: PendingIntentRecord{f796c6c com.google.android.gms startService}}
ELAPSED_WAKEUP #0: Alarm{e2b9f0 tag *walarm*:X.076.ACTION_INEXACT_ALARM.MqttLite.com.facebook.orca type 2 when 1305423514 com.facebook.orca}
tag=*walarm*:X.076.ACTION_INEXACT_ALARM.MqttLite.com.facebook.orca
type=2 whenElapsed=+9m55s395ms when=+9m55s395ms
window=+11m15s0ms repeatInterval=900000 count=0 flags=0x0
operation=PendingIntent{473c3ea: PendingIntentRecord{bf7e6db com.facebook.orca broadcastIntent}}
Batch{4d07b69 num=1 start=1306364956 end=1306364956 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{e94b9ee tag *walarm*:request_configuration type 2 when 1306364956 com.fivemobile.thescore}
tag=*walarm*:request_configuration
type=2 whenElapsed=+25m36s837ms when=+25m36s837ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{20dde8f: PendingIntentRecord{9e3a753 com.fivemobile.thescore broadcastIntent}}
Batch{b51851c num=1 start=1306993416 end=1306993416 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{7ec6525 tag *walarm*:X.2Hz.ACTION_ALARM.com.facebook.katana type 2 when 1306993416 com.facebook.katana}
tag=*walarm*:X.2Hz.ACTION_ALARM.com.facebook.katana
type=2 whenElapsed=+36m5s297ms when=+36m5s297ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{61686fa: PendingIntentRecord{874effd com.facebook.katana broadcastIntent}}
Batch{413d4ab num=1 start=1307000059 end=1307000059 flgs=0x9}:
RTC_WAKEUP #0: Alarm{e7fd708 tag *walarm*:android.intent.action.EVENT_REMINDER type 0 when 1501894500000 com.android.providers.calendar}
tag=*walarm*:android.intent.action.EVENT_REMINDER
type=0 whenElapsed=+36m11s940ms when=2017-08-04 20:55:00
window=0 repeatInterval=0 count=0 flags=0x9
operation=PendingIntent{8232ea1: PendingIntentRecord{b618c6 com.android.providers.calendar broadcastIntent}}
Batch{8391087 num=3 start=1307026596 end=1307457973 flgs=0x8}:
RTC_WAKEUP #2: Alarm{2bf5bb4 tag *walarm*:com.google.android.googlequicksearchbox/com.google.android.apps.gsa.tasks.VelvetBackgroundTasksIntentService type 0 when 1501894526537 com.google.android.googlequicksearchbox}
tag=*walarm*:com.google.android.googlequicksearchbox/com.google.android.apps.gsa.tasks.VelvetBackgroundTasksIntentService
type=0 whenElapsed=+36m38s477ms when=2017-08-04 20:55:26
window=+1h35m47s353ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{aa313dd: PendingIntentRecord{23244f1 com.google.android.googlequicksearchbox startService}}
ELAPSED_WAKEUP #1: Alarm{16afb52 tag *walarm*:android.appwidget.action.APPWIDGET_UPDATE type 2 when 1306441006 android}
tag=*walarm*:android.appwidget.action.APPWIDGET_UPDATE
type=2 whenElapsed=+26m52s887ms when=+26m52s887ms
window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x8
operation=PendingIntent{5e0fedc: PendingIntentRecord{89bbbe5 android broadcastIntent}}
RTC_WAKEUP #0: Alarm{68c2e23 tag *walarm*:com.google.android.gms/.checkin.EventLogServiceReceiver type 0 when 1501893607914 com.google.android.gms}
tag=*walarm*:com.google.android.gms/.checkin.EventLogServiceReceiver
type=0 whenElapsed=+21m19s854ms when=2017-08-04 20:40:07
window=+22m30s0ms repeatInterval=1800000 count=0 flags=0x0
operation=PendingIntent{1d07f20: PendingIntentRecord{abf4ebd com.google.android.gms broadcastIntent}}
Batch{f4210d9 num=1 start=1307159783 end=1307159783 flgs=0x1}:
RTC_WAKEUP #0: Alarm{1197a9e tag *walarm*:com.lge.email.service.updateDate type 0 when 1501894659724 com.lge.email}
tag=*walarm*:com.lge.email.service.updateDate
type=0 whenElapsed=+38m51s664ms when=2017-08-04 20:57:39
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{f69897f: PendingIntentRecord{f0e6d4c com.lge.email startService}}
Batch{339e195 num=1 start=1307474428 end=1307474428 flgs=0x9}:
RTC #0: Alarm{9ea2aa tag *alarm*:com.android.server.action.UPDATE_TWILIGHT_STATE type 1 when 1501894974369 android}
tag=*alarm*:com.android.server.action.UPDATE_TWILIGHT_STATE
type=1 whenElapsed=+44m6s309ms when=2017-08-04 21:02:54
window=0 repeatInterval=0 count=0 flags=0x9
operation=PendingIntent{2973e9b: PendingIntentRecord{d82b84d android broadcastIntent}}
Batch{65b1238 num=1 start=1307626379 end=1307626379 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{3a40211 tag *walarm*:X.0uU.ACTION_ALARM.com.facebook.orca type 2 when 1307626379 com.facebook.orca}
tag=*walarm*:X.0uU.ACTION_ALARM.com.facebook.orca
type=2 whenElapsed=+46m38s260ms when=+46m38s260ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{f9c3f76: PendingIntentRecord{f8ea8de com.facebook.orca broadcastIntent}}
Batch{c212977 num=1 start=1307836277 end=1307836277 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{dcb19e4 tag *walarm*:CONTEXT_MANAGER_ALARM_WAKEUP_1004206318 type 2 when 1307836277 com.google.android.gms}
tag=*walarm*:CONTEXT_MANAGER_ALARM_WAKEUP_1004206318
type=2 whenElapsed=+50m8s158ms when=+50m8s158ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{bb5ae4d: PendingIntentRecord{404dd02 com.google.android.gms broadcastIntent}}
Batch{2f4e613 num=1 start=1307858839 end=1307858839 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{611f050 tag *walarm*:CONTEXT_MANAGER_ALARM_WAKEUP_1004206318 type 2 when 1307858839 com.google.android.gms}
tag=*walarm*:CONTEXT_MANAGER_ALARM_WAKEUP_1004206318
type=2 whenElapsed=+50m30s720ms when=+50m30s720ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{abbe249: PendingIntentRecord{e67c74e com.google.android.gms broadcastIntent}}
Batch{53dd06f num=1 start=1307858918 end=1307858918 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{5adc17c tag *walarm*:start_collect type 2 when 1307858918 com.fivemobile.thescore}
tag=*walarm*:start_collect
type=2 whenElapsed=+50m30s799ms when=+50m30s799ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{dd75a05: PendingIntentRecord{d4b9dc2 com.fivemobile.thescore broadcastIntent}}
Batch{6fd0a5a num=1 start=1307900059 end=1307900059 flgs=0x1}:
RTC #0: Alarm{e81048b tag *alarm*:com.google.android.calendar.EVENT_REMINDER_APP type 1 when 1501895400000 com.google.android.calendar}
tag=*alarm*:com.google.android.calendar.EVENT_REMINDER_APP
type=1 whenElapsed=+51m11s940ms when=2017-08-04 21:10:00
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{ad37968: PendingIntentRecord{1deadcb com.google.android.calendar broadcastIntent}}
Batch{9789181 num=2 start=1308698360 end=1310749453 flgs=0x8}:
ELAPSED #1: Alarm{f717226 tag *alarm*:com.google.android.gms.common.download.START type 3 when 1308698360 com.google.android.gms}
tag=*alarm*:com.google.android.gms.common.download.START
type=3 whenElapsed=+1h4m30s241ms when=+1h4m30s241ms
window=+8h59m59s997ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{3795e67: PendingIntentRecord{1ac414 com.google.android.gms startService}}
RTC #0: Alarm{e9bc4bd tag *alarm*:com.lge.calendar.action.APPWIDGET_SCHEDULED_UPDATE type 1 when 1501895400000 com.android.calendar}
tag=*alarm*:com.lge.calendar.action.APPWIDGET_SCHEDULED_UPDATE
type=1 whenElapsed=+51m11s940ms when=2017-08-04 21:10:00
window=+47m29s394ms repeatInterval=0 count=0 flags=0x8
operation=PendingIntent{5728ab2: PendingIntentRecord{5be6701 com.android.calendar broadcastIntent}}
Batch{fb37a03 num=1 start=1308864519 end=1308864519 flgs=0x1}:
RTC #0: Alarm{fea0d80 tag *alarm*:com.lge.sizechangable.weather.action.autoupdate type 1 when 1501896364460 com.lge.sizechangable.weather.platform}
tag=*alarm*:com.lge.sizechangable.weather.action.autoupdate
type=1 whenElapsed=+1h7m16s400ms when=2017-08-04 21:26:04
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{7c4efb9: PendingIntentRecord{1fa9ffe com.lge.sizechangable.weather.platform broadcastIntent}}
Batch{e9b35f num=1 start=1310157716 end=1310157716 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{2a281ac tag *walarm*:start_deliver type 2 when 1310157716 com.fivemobile.thescore}
tag=*walarm*:start_deliver
type=2 whenElapsed=+1h28m49s597ms when=+1h28m49s597ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{9bbce75: PendingIntentRecord{b304421 com.fivemobile.thescore broadcastIntent}}
Batch{15cbe0a num=1 start=1310900059 end=1310900059 flgs=0x9}:
RTC_WAKEUP #0: Alarm{c20267b tag *walarm*:ScheduleConditionProvider.EVALUATE type 0 when 1501898400000 android}
tag=*walarm*:ScheduleConditionProvider.EVALUATE
type=0 whenElapsed=+1h41m11s940ms when=2017-08-04 22:00:00
window=0 repeatInterval=0 count=0 flags=0x9
operation=PendingIntent{38c0c98: PendingIntentRecord{6056e6 android broadcastIntent}}
Batch{407dcf1 num=1 start=1317700482 end=1317700482 flgs=0x5}:
ELAPSED_WAKEUP #0: Alarm{10b0d6 tag *walarm*:com.facebook.pulse.SCHEDULED_WAKEUP type 2 when 1317700482 com.facebook.katana}
tag=*walarm*:com.facebook.pulse.SCHEDULED_WAKEUP
type=2 whenElapsed=+3h34m32s363ms when=+3h34m32s363ms
window=0 repeatInterval=0 count=0 flags=0x5
operation=PendingIntent{880af57: PendingIntentRecord{8815a44 com.facebook.katana broadcastIntent}}
Batch{d2c572d num=1 start=1317710463 end=1317710463 flgs=0x5}:
ELAPSED_WAKEUP #0: Alarm{83f0462 tag *walarm*:com.facebook.pulse.SCHEDULED_WAKEUP type 2 when 1317710463 com.facebook.orca}
tag=*walarm*:com.facebook.pulse.SCHEDULED_WAKEUP
type=2 whenElapsed=+3h34m42s344ms when=+3h34m42s344ms
window=0 repeatInterval=0 count=0 flags=0x5
operation=PendingIntent{bf6e9f3: PendingIntentRecord{85bd6b0 com.facebook.orca broadcastIntent}}
Batch{6a43929 num=1 start=1318100060 end=1318100060 flgs=0x5}:
RTC_WAKEUP #0: Alarm{c0d04ae tag *walarm*:com.google.android.gms.reminders.notification.ACTION_REFRESH_TIME_REMINDERS type 0 when 1501905600000 com.google.android.gms}
tag=*walarm*:com.google.android.gms.reminders.notification.ACTION_REFRESH_TIME_REMINDERS
type=0 whenElapsed=+3h41m11s941ms when=2017-08-05 00:00:00
window=0 repeatInterval=0 count=0 flags=0x5
operation=PendingIntent{58c324f: PendingIntentRecord{ce17791 com.google.android.gms startService}}
Batch{c1faddc num=7 start=1318700215 end=1325302766 flgs=0xc}:
RTC_WAKEUP #6: Alarm{49e3ee5 tag *walarm*:com.lge.ia.task.informant.dyk.userguide.ACTION_DATE_CHANGE type 0 when 1501906200155 com.lge.ia.task.informant}
tag=*walarm*:com.lge.ia.task.informant.dyk.userguide.ACTION_DATE_CHANGE
type=0 whenElapsed=+3h51m12s96ms when=2017-08-05 00:10:00
window=+17h59m13s499ms repeatInterval=0 count=0 flags=0xc
operation=PendingIntent{8a8bdba: PendingIntentRecord{6c76967 com.lge.ia.task.informant broadcastIntent}}
RTC #5: Alarm{183a46b tag *alarm*:action.lge.datetimechange type 1 when 1501905600092 com.lge.launcher2}
tag=*alarm*:action.lge.datetimechange
type=1 whenElapsed=+3h41m12s33ms when=2017-08-05 00:00:00
window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0
operation=PendingIntent{6e7cbc8: PendingIntentRecord{4ddbbd0 com.lge.launcher2 broadcastIntent}}
RTC #4: Alarm{578e461 tag *alarm*:com.google.android.calendar.widgetmonth.MonthViewWidgetProvider.MIDNIGHT type 1 when 1501905600000 com.google.android.calendar}
tag=*alarm*:com.google.android.calendar.widgetmonth.MonthViewWidgetProvider.MIDNIGHT
type=1 whenElapsed=+3h41m11s941ms when=2017-08-05 00:00:00
window=+3h30m20s661ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{e14fb86: PendingIntentRecord{5c4b794 com.google.android.calendar broadcastIntent}}
RTC #3: Alarm{3361c47 tag *alarm*:com.google.android.calendar.widget.MIDNIGHT type 1 when 1501905600000 com.google.android.calendar}
tag=*alarm*:com.google.android.calendar.widget.MIDNIGHT
type=1 whenElapsed=+3h41m11s941ms when=2017-08-05 00:00:00
window=+3h30m20s672ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{91dc74: PendingIntentRecord{f5e79da com.google.android.calendar broadcastIntent}}
RTC #2: Alarm{4fe659d tag *alarm*:com.lge.calendar.action.SB_MIDNIGHT_UPDATE type 1 when 1501905600000 com.android.calendar}
tag=*alarm*:com.lge.calendar.action.SB_MIDNIGHT_UPDATE
type=1 whenElapsed=+3h41m11s941ms when=2017-08-05 00:00:00
window=+17h56m41s469ms repeatInterval=0 count=0 flags=0x8
operation=PendingIntent{7b54a12: PendingIntentRecord{246b1ef com.android.calendar broadcastIntent}}
ELAPSED #1: Alarm{ae35e3 tag *alarm*:android.content.jobscheduler.JOB_DEADLINE_EXPIRED type 3 when 1315907643 android}
tag=*alarm*:android.content.jobscheduler.JOB_DEADLINE_EXPIRED
type=3 whenElapsed=+3h4m39s524ms when=+3h4m39s524ms
window=+2h36m35s123ms repeatInterval=0 count=0 flags=0x8
operation=PendingIntent{13ff539: PendingIntentRecord{808f77e android broadcastIntent}}
RTC_WAKEUP #0: Alarm{f2a4be0 tag *walarm*:com.google.android.apps.gmm.ugc.ataplace.AtAPlaceService.ACTION_REREGISTER_GEOFENCES_ALARM type 0 when 1501899642216 com.google.android.apps.maps}
tag=*walarm*:com.google.android.apps.gmm.ugc.ataplace.AtAPlaceService.ACTION_REREGISTER_GEOFENCES_ALARM
type=0 whenElapsed=+2h1m54s157ms when=2017-08-04 22:20:42
window=+4h29m59s997ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{760be99: PendingIntentRecord{52ea383 com.google.android.apps.maps broadcastIntent}}
Batch{199f55e num=1 start=1325300656 end=1325300656 flgs=0x5}:
RTC_WAKEUP #0: Alarm{c044d3f tag *walarm*:com.lge.cic.eden.intent.action.ACTION_START_ANALYSIS type 0 when 1501912800596 com.lge.cic.eden.service}
tag=*walarm*:com.lge.cic.eden.intent.action.ACTION_START_ANALYSIS
type=0 whenElapsed=+5h41m12s537ms when=2017-08-05 02:00:00
window=0 repeatInterval=0 count=0 flags=0x5
operation=PendingIntent{b18460c: PendingIntentRecord{c4f2dc4 com.lge.cic.eden.service broadcastIntent}}
Batch{7f5ab55 num=1 start=1325500462 end=1325500462 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{68c096a tag *walarm*:start_collect type 2 when 1325500462 com.fivemobile.thescore}
tag=*walarm*:start_collect
type=2 whenElapsed=+5h44m32s343ms when=+5h44m32s343ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{67a7e5b: PendingIntentRecord{8074ebf com.fivemobile.thescore broadcastIntent}}
Batch{a09b6f8 num=1 start=1325500467 end=1325500467 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{7b2a7d1 tag *walarm*:start_collect type 2 when 1325500467 com.fivemobile.thescore}
tag=*walarm*:start_collect
type=2 whenElapsed=+5h44m32s348ms when=+5h44m32s348ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{2d95236: PendingIntentRecord{96c17db com.fivemobile.thescore broadcastIntent}}
Batch{958a537 num=1 start=1328900556 end=1328900556 flgs=0x5}:
RTC_WAKEUP #0: Alarm{c9f4aa4 tag *walarm*:com.lge.cic.eden.intent.action.ACTION_RESTART_ANALYSIS type 0 when 1501916400496 com.lge.cic.eden.service}
tag=*walarm*:com.lge.cic.eden.intent.action.ACTION_RESTART_ANALYSIS
type=0 whenElapsed=+6h41m12s437ms when=2017-08-05 03:00:00
window=0 repeatInterval=0 count=0 flags=0x5
operation=PendingIntent{768f00d: PendingIntentRecord{d33ddeb com.lge.cic.eden.service broadcastIntent}}
Batch{7e05bc2 num=1 start=1337256073 end=1337256073 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{885dd3 tag *walarm*:CONTEXT_MANAGER_ALARM_WAKEUP_1004206318 type 2 when 1337256073 com.google.android.gms}
tag=*walarm*:CONTEXT_MANAGER_ALARM_WAKEUP_1004206318
type=2 whenElapsed=+9h0m27s954ms when=+9h0m27s954ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{ad86d10: PendingIntentRecord{9c18009 com.google.android.gms broadcastIntent}}
Batch{c5c720e num=1 start=1346932418 end=1346932418 flgs=0x1}:
RTC_WAKEUP #0: Alarm{2f1042f tag *walarm*:com.lge.email.intent.action.MAIL_SERVICE_EAS_UPDATE_SCHEDULE type 0 when 1501934432358 com.lge.email}
tag=*walarm*:com.lge.email.intent.action.MAIL_SERVICE_EAS_UPDATE_SCHEDULE
type=0 whenElapsed=+11h41m44s299ms when=2017-08-05 08:00:32
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{b3f4a3c: PendingIntentRecord{8f913c5 com.lge.email broadcastIntent}}
Batch{571a11a num=1 start=1349810630 end=1349810630 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{493b44b tag *walarm*:CONTEXT_MANAGER_ALARM_WAKEUP_1004206318 type 2 when 1349810630 com.google.android.gms}
tag=*walarm*:CONTEXT_MANAGER_ALARM_WAKEUP_1004206318
type=2 whenElapsed=+12h29m42s511ms when=+12h29m42s511ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{d4ce28: PendingIntentRecord{c5c2741 com.google.android.gms broadcastIntent}}
Batch{478b4e6 num=1 start=1361300060 end=1361300060 flgs=0x1}:
RTC #0: Alarm{e674a27 tag *alarm*:android.intent.action.DATE_CHANGED type 1 when 1501948800000 android}
tag=*alarm*:android.intent.action.DATE_CHANGED
type=1 whenElapsed=+15h41m11s941ms when=2017-08-05 12:00:00
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{7e4d9b6: PendingIntentRecord{f8a56b7 android broadcastIntent}}
Batch{bbca4d4 num=1 start=1381012270 end=1381012270 flgs=0x1}:
ELAPSED_WAKEUP #0: Alarm{982f67d tag *walarm*:com.google.android.apps.gsa.sidekick.ENTRY_SYNC_RECOVERY_REFRESH type 2 when 1381012270 com.google.android.googlequicksearchbox}
tag=*walarm*:com.google.android.apps.gsa.sidekick.ENTRY_SYNC_RECOVERY_REFRESH
type=2 whenElapsed=+21h9m44s151ms when=+21h9m44s151ms
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{58b3972: PendingIntentRecord{7f461c3 com.google.android.googlequicksearchbox startService}}
Batch{8a93a40 num=9 start=1382477031 end=1383560332 flgs=0x8}:
ELAPSED_WAKEUP #8: Alarm{d4d7d79 tag *walarm*:com.google.android.gms/com.google.android.location.internal.AnalyticsSamplerReceiver type 2 when 1382477031 com.google.android.gms}
tag=*walarm*:com.google.android.gms/com.google.android.location.internal.AnalyticsSamplerReceiver
type=2 whenElapsed=+21h34m8s912ms when=+21h34m8s912ms
window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0
operation=PendingIntent{c116723: PendingIntentRecord{8e7c420 com.google.android.gms broadcastIntent}}
ELAPSED_WAKEUP #7: Alarm{acf7abe tag *walarm*:com.optimizely.io.action.FLUSH_TS_EVENTS type 2 when 1382400000 com.tilt.android}
tag=*walarm*:com.optimizely.io.action.FLUSH_TS_EVENTS
type=2 whenElapsed=+21h32m51s881ms when=+21h32m51s881ms
window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0
operation=PendingIntent{eb1571f: PendingIntentRecord{edd8311 com.tilt.android startService}}
ELAPSED #6: Alarm{b07ba6c tag *alarm*:com.google.android.gms/.analytics.internal.PlayLogReportingService type 3 when 1382400000 com.google.android.gms}
tag=*alarm*:com.google.android.gms/.analytics.internal.PlayLogReportingService
type=3 whenElapsed=+21h32m51s881ms when=+21h32m51s881ms
window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0
operation=PendingIntent{662426c: PendingIntentRecord{ab3bfaa com.google.android.gms startService}}
ELAPSED_WAKEUP #5: Alarm{89f7835 tag *walarm*:com.optimizely.io.action.FLUSH_EVENTS type 2 when 1382400000 com.tilt.android}
tag=*walarm*:com.optimizely.io.action.FLUSH_EVENTS
type=2 whenElapsed=+21h32m51s881ms when=+21h32m51s881ms
window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0
operation=PendingIntent{8484ca: PendingIntentRecord{52f4ee4 com.tilt.android startService}}
ELAPSED_WAKEUP #4: Alarm{71e463b tag *walarm*:com.optimizely.io.action.FLUSH_LOGS type 2 when 1382400000 com.tilt.android}
tag=*walarm*:com.optimizely.io.action.FLUSH_LOGS
type=2 whenElapsed=+21h32m51s881ms when=+21h32m51s881ms
window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x0
operation=PendingIntent{dec1158: PendingIntentRecord{4ba5f13 com.tilt.android startService}}
RTC_WAKEUP #3: Alarm{cdc62b1 tag *walarm*:com.android.vending/com.google.android.finsky.hygiene.DailyHygiene$DailyHygieneService type 0 when 1501964754375 com.android.vending}
tag=*walarm*:com.android.vending/com.google.android.finsky.hygiene.DailyHygiene$DailyHygieneService
type=0 whenElapsed=+20h7m6s316ms when=2017-08-05 16:25:54
window=+18h12m29s182ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{5ce2396: PendingIntentRecord{93ba818 com.android.vending startService}}
RTC_WAKEUP #2: Alarm{3a10b17 tag *walarm*:com.lge.ia.task.informant.tips.userguide.action.UPDATE_USERLOG type 0 when 1501946787679 com.lge.ia.task.informant}
tag=*walarm*:com.lge.ia.task.informant.tips.userguide.action.UPDATE_USERLOG
type=0 whenElapsed=+15h7m39s620ms when=2017-08-05 11:26:27
window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x8
operation=PendingIntent{190d940: PendingIntentRecord{e6eedab com.lge.ia.task.informant broadcastIntent}}
ELAPSED_WAKEUP #1: Alarm{7bceb04 tag *walarm*:com.google.android.gms.auth.authzen.CHECK_REGISTRATION type 2 when 1334317719 com.google.android.gms}
tag=*walarm*:com.google.android.gms.auth.authzen.CHECK_REGISTRATION
type=2 whenElapsed=+8h11m29s600ms when=+8h11m29s600ms
window=+13h40m42s613ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{42378ed: PendingIntentRecord{8e2544e com.google.android.gms broadcastIntent}}
RTC_WAKEUP #0: Alarm{640e322 tag *walarm*:com.lge.iftttmanager/.internal.cardrecommend.CardRecommendStarter$AlarmBroadcastReceiver type 0 when 1501916400000 com.lge.iftttmanager}
tag=*walarm*:com.lge.iftttmanager/.internal.cardrecommend.CardRecommendStarter$AlarmBroadcastReceiver
type=0 whenElapsed=+6h41m11s941ms when=2017-08-05 03:00:00
window=+18h0m0s0ms repeatInterval=86400000 count=0 flags=0x8
operation=PendingIntent{94f7373: PendingIntentRecord{9f36230 com.lge.iftttmanager broadcastIntent}}
Batch{d2141b3 num=1 start=1384485729 end=1384485729 flgs=0x1}:
RTC #0: Alarm{c9fb370 tag *alarm*:com.facebook.katana/com.facebook.delayedworker.DelayedWorkerService type 1 when 1501971985670 com.facebook.katana}
tag=*alarm*:com.facebook.katana/com.facebook.delayedworker.DelayedWorkerService
type=1 whenElapsed=+22h7m37s610ms when=2017-08-05 18:26:25
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{14bb6e9: PendingIntentRecord{b285ba7 com.facebook.katana startService}}
Batch{2e0f6e num=1 start=1390515731 end=1390515731 flgs=0x9}:
RTC_WAKEUP #0: Alarm{964460f tag *walarm*:EventConditionProvider.EVALUATE type 0 when 1501978015672 android}
tag=*walarm*:EventConditionProvider.EVALUATE
type=0 whenElapsed=+23h48m7s612ms when=2017-08-05 20:06:55
window=0 repeatInterval=0 count=0 flags=0x9
operation=PendingIntent{ba4969c: PendingIntentRecord{1750b43 android broadcastIntent}}
Batch{39fd8a5 num=7 start=1447706949 end=1448925793 flgs=0x8}:
RTC #6: Alarm{3afb47a tag *alarm*:com.lge.formmanager.action.FORM_CHECK_ALARM type 1 when 1502035206890 com.lge.formmanager}
tag=*alarm*:com.lge.formmanager.action.FORM_CHECK_ALARM
type=1 whenElapsed=+1d15h41m18s830ms when=2017-08-06 12:00:06
window=+5d5h59m59s997ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{ea728b2: PendingIntentRecord{4551dd6 com.lge.formmanager broadcastIntent}}
RTC_WAKEUP #5: Alarm{73ec003 tag *walarm*:com.lge.appbox.client/com.lge.appbox.service.PollingVoltaService type 0 when 1501985550061 com.lge.appbox.client}
tag=*walarm*:com.lge.appbox.client/com.lge.appbox.service.PollingVoltaService
type=0 whenElapsed=+1d1h53m42s1ms when=2017-08-05 22:12:30
window=+5d5h59m59s978ms repeatInterval=0 count=0 flags=0x8
operation=PendingIntent{98adb80: PendingIntentRecord{400a5b9 com.lge.appbox.client startService}}
ELAPSED #4: Alarm{b29342b tag *alarm*:com.android.server.NetworkTimeUpdateService.action.POLL type 3 when 1390696707 android}
tag=*alarm*:com.android.server.NetworkTimeUpdateService.action.POLL
type=3 whenElapsed=+23h51m8s588ms when=+23h51m8s588ms
window=+18h0m0s0ms repeatInterval=0 count=0 flags=0x8
operation=PendingIntent{66ebef0: PendingIntentRecord{8f49c69 android broadcastIntent}}
RTC #3: Alarm{2b28088 tag *alarm*:com.facebook.messaging.push.ACTION_ALARM type 1 when 1501974149190 com.facebook.katana}
tag=*alarm*:com.facebook.messaging.push.ACTION_ALARM
type=1 whenElapsed=+22h43m41s130ms when=2017-08-05 19:02:29
window=+17h59m59s999ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{a5a5a21: PendingIntentRecord{e18da1c com.facebook.katana broadcastIntent}}
ELAPSED #2: Alarm{6749e46 tag *alarm*:com.google.android.gms.common.receiver.LOG_CORE_ANALYTICS type 3 when 1385232657 com.google.android.gms}
tag=*alarm*:com.google.android.gms.common.receiver.LOG_CORE_ANALYTICS
type=3 whenElapsed=+22h20m4s538ms when=+22h20m4s538ms
window=+18h0m0s0ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{804e807: PendingIntentRecord{ebd64dd com.google.android.gms broadcastIntent}}
RTC #1: Alarm{5331d34 tag *alarm*:com.facebook.messaging.push.ACTION_ALARM type 1 when 1501971959348 com.facebook.orca}
tag=*alarm*:com.facebook.messaging.push.ACTION_ALARM
type=1 whenElapsed=+22h7m11s288ms when=2017-08-05 18:25:59
window=+17h59m59s999ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{3e1775d: PendingIntentRecord{27322a2 com.facebook.orca broadcastIntent}}
ELAPSED #0: Alarm{84c58d2 tag *alarm*:com.google.android.gms/.lockbox.LockboxAlarmReceiver type 3 when 1384125796 com.google.android.gms}
tag=*alarm*:com.google.android.gms/.lockbox.LockboxAlarmReceiver
type=3 whenElapsed=+22h1m37s677ms when=+22h1m37s677ms
window=+17h59m59s997ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{ffdfda3: PendingIntentRecord{9897c97 com.google.android.gms broadcastIntent}}
Batch{17ed8a0 num=1 start=1566200059 end=1566200059 flgs=0xb}:
RTC_WAKEUP #0: Alarm{4c32c59 tag *walarm*:indicator type 0 when 1502153700000 com.lge.clock}
tag=*walarm*:indicator
type=0 whenElapsed=+3d0h36m11s940ms when=2017-08-07 20:55:00
window=0 repeatInterval=0 count=0 flags=0xb
Alarm clock:
triggerTime=2017-08-07 20:55:00
showIntent=null
operation=PendingIntent{473301e: PendingIntentRecord{d53189f com.lge.clock broadcastIntent}}
Batch{2e8d0ff num=1 start=1566200059 end=1566200059 flgs=0x9}:
RTC_WAKEUP #0: Alarm{108decc tag *walarm*:com.lge.clock.alarmclock type 0 when 1502153700000 com.lge.clock}
tag=*walarm*:com.lge.clock.alarmclock
type=0 whenElapsed=+3d0h36m11s940ms when=2017-08-07 20:55:00
window=0 repeatInterval=0 count=0 flags=0x9
operation=PendingIntent{2713515: PendingIntentRecord{7da9fbb com.lge.clock broadcastIntent}}
Batch{b9e302a num=1 start=1911065059 end=1911065059 flgs=0x9}:
RTC_WAKEUP #0: Alarm{7c1b8f tag *walarm*:com.lge.lgdmsclient.AutoAgentExpire type 0 when 1502498565000 com.lge.lgdmsclient}
tag=*walarm*:com.lge.lgdmsclient.AutoAgentExpire
type=0 whenElapsed=+7d0h23m56s940ms when=2017-08-11 20:42:45
window=0 repeatInterval=0 count=0 flags=0x9
operation=PendingIntent{4d77e1c: PendingIntentRecord{313675a com.lge.lgdmsclient broadcastIntent}}
Batch{f837e1b num=8 start=1911941059 end=1966890058 flgs=0xc}:
RTC #7: Alarm{f4b1bb8 tag *alarm*:com.lge.springcleaning.action.UNUSED_APP_NOTI type 1 when 1502499441000 com.lge.springcleaning}
tag=*alarm*:com.lge.springcleaning.action.UNUSED_APP_NOTI
type=1 whenElapsed=+7d0h38m32s940ms when=2017-08-11 20:57:21
window=+5d21h11m40s734ms repeatInterval=0 count=0 flags=0x8
operation=PendingIntent{dbd0d91: PendingIntentRecord{c402dc com.lge.springcleaning broadcastIntent}}
RTC #6: Alarm{2c724f6 tag *alarm*:com.urbanairship.analytics.SEND type 1 when 1502414053538 com.tilt.android}
tag=*alarm*:com.urbanairship.analytics.SEND
type=1 whenElapsed=+6d0h55m25s478ms when=2017-08-10 21:14:13
window=+5d5h59m59s747ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{851e0f7: PendingIntentRecord{ae7443b com.tilt.android startService}}
RTC_WAKEUP #5: Alarm{5a37c7a tag *walarm*:com.lge.smartconfig/.service.VoltaService type 0 when 1502245138265 com.lge.smartconfig}
tag=*walarm*:com.lge.smartconfig/.service.VoltaService
type=0 whenElapsed=+4d2h0m10s205ms when=2017-08-08 22:18:58
window=+5d5h59m59s988ms repeatInterval=0 count=0 flags=0xc
operation=PendingIntent{6e55c2b: PendingIntentRecord{a2be9b9 com.lge.smartconfig startService}}
RTC_WAKEUP #4: Alarm{5ff8888 tag *walarm*:com.google.android.partnersetup/.RlzPingService type 0 when 1502213227690 com.google.android.partnersetup}
tag=*walarm*:com.google.android.partnersetup/.RlzPingService
type=0 whenElapsed=+3d17h8m19s630ms when=2017-08-08 13:27:07
window=+5d5h59m59s997ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{a96c221: PendingIntentRecord{85787b2 com.google.android.partnersetup startService}}
RTC_WAKEUP #3: Alarm{7dce646 tag *walarm*:com.google.android.gms/.checkin.CheckinServiceReceiver type 0 when 1502161131249 com.google.android.gms}
tag=*walarm*:com.google.android.gms/.checkin.CheckinServiceReceiver
type=0 whenElapsed=+3d2h40m3s189ms when=2017-08-07 22:58:51
window=+4d13h14m18s750ms repeatInterval=524345000 count=0 flags=0x0
operation=PendingIntent{75b9007: PendingIntentRecord{e7ac5c6 com.google.android.gms broadcastIntent}}
RTC_WAKEUP #2: Alarm{3723b64 tag *walarm*:com.lge.contacts.intent.action.BACKUP_DB type 0 when 1502159247546 com.android.providers.contacts}
tag=*walarm*:com.lge.contacts.intent.action.BACKUP_DB
type=0 whenElapsed=+3d2h8m39s486ms when=2017-08-07 22:27:27
window=+5d6h0m0s0ms repeatInterval=604800000 count=0 flags=0x0
operation=PendingIntent{913f1cd: PendingIntentRecord{e93ff7b com.android.providers.contacts startService}}
RTC_WAKEUP #1: Alarm{2b89a82 tag *walarm*:com.facebook.orca.media.bandwidth.ACTION_PURGE_NETWORKS_IN_SHARED_PREFS type 0 when 1502125200000 com.facebook.katana}
tag=*walarm*:com.facebook.orca.media.bandwidth.ACTION_PURGE_NETWORKS_IN_SHARED_PREFS
type=0 whenElapsed=+2d16h41m11s940ms when=2017-08-07 13:00:00
window=+5d6h0m0s0ms repeatInterval=604800000 count=0 flags=0x0
operation=PendingIntent{a399593: PendingIntentRecord{15796ac com.facebook.katana broadcastIntent}}
RTC_WAKEUP #0: Alarm{8c9a9d0 tag *walarm*:com.facebook.orca.media.bandwidth.ACTION_PURGE_NETWORKS_IN_SHARED_PREFS type 0 when 1502125200000 com.facebook.orca}
tag=*walarm*:com.facebook.orca.media.bandwidth.ACTION_PURGE_NETWORKS_IN_SHARED_PREFS
type=0 whenElapsed=+2d16h41m11s940ms when=2017-08-07 13:00:00
window=+5d6h0m0s0ms repeatInterval=604800000 count=0 flags=0x0
operation=PendingIntent{67addc9: PendingIntentRecord{677d0b9 com.facebook.orca broadcastIntent}}
Batch{459dcce num=1 start=3444016225 end=3476416225}:
ELAPSED_WAKEUP #0: Alarm{ddf7ef tag *walarm*:com.google.android.apps.plus.mandatorysync type 2 when 3444016225 com.google.android.apps.plus}
tag=*walarm*:com.google.android.apps.plus.mandatorysync
type=2 whenElapsed=+24d18h13m8s106ms when=+24d18h13m8s106ms
window=+9h0m0s0ms repeatInterval=43200000 count=0 flags=0x0
operation=PendingIntent{1e792fc: PendingIntentRecord{cbd174 com.google.android.apps.plus broadcastIntent}}
Batch{94a8d85 num=1 start=3641287029 end=3641287029 flgs=0x5}:
RTC_WAKEUP #0: Alarm{ea288f7 tag *walarm*:com.google.android.gms.reminders.notification.ACTION_REFRESH_ALIAS_LOCATION_REMINDERS type 0 when 1504228786970 com.google.android.gms}
tag=*walarm*:com.google.android.gms.reminders.notification.ACTION_REFRESH_ALIAS_LOCATION_REMINDERS
type=0 whenElapsed=+27d1h0m58s910ms when=2017-08-31 21:19:46
window=0 repeatInterval=0 count=0 flags=0x5
operation=PendingIntent{6f9c364: PendingIntentRecord{9fc70c8 com.google.android.gms startService}}
Batch{5baf7da num=1 start=4167265635 end=4167265635 flgs=0x1}:
RTC #0: Alarm{4bc240b tag *alarm*:com.facebook.orca/com.facebook.delayedworker.DelayedWorkerService type 1 when 1504754765576 com.facebook.orca}
tag=*alarm*:com.facebook.orca/com.facebook.delayedworker.DelayedWorkerService
type=1 whenElapsed=+33d3h7m17s516ms when=2017-09-06 23:26:05
window=0 repeatInterval=0 count=0 flags=0x1
operation=PendingIntent{298e2e8: PendingIntentRecord{18e90e0 com.facebook.orca startService}}
Batch{7ab7d01 num=13 start=316662115909 end=551880076584}:
ELAPSED_WAKEUP #12: Alarm{3e0b7a6 tag *walarm*:com.google.android.gms/.fitness.cache.DataUpdateListenerCacheService type 2 when 316662115909 com.google.android.gms}
tag=*walarm*:com.google.android.gms/.fitness.cache.DataUpdateListenerCacheService
type=2 whenElapsed=+3649d23h14m47s790ms when=+3649d23h14m47s790ms
window=+2737d11h59m59s999ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{f06f5e7: PendingIntentRecord{ffbdb0c com.google.android.gms startService}}
ELAPSED_WAKEUP #11: Alarm{c8d4594 tag *walarm*:com.google.android.gms/.nearby.messages.service.NearbyMessagesService type 2 when 316660345040 com.google.android.gms}
tag=*walarm*:com.google.android.gms/.nearby.messages.service.NearbyMessagesService
type=2 whenElapsed=+3649d22h45m16s921ms when=+3649d22h45m16s921ms
window=+2737d12h0m0s0ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{7d1e83d: PendingIntentRecord{dced75b com.google.android.gms startService}}
ELAPSED_WAKEUP #10: Alarm{26524ce tag *walarm*:com.google.android.gms/com.google.android.location.places.service.PlaceDetectionAsyncService type 2 when 316364210427 com.google.android.gms}
tag=*walarm*:com.google.android.gms/com.google.android.location.places.service.PlaceDetectionAsyncService
type=2 whenElapsed=+3646d12h29m42s308ms when=+3646d12h29m42s308ms
window=+2737d11h59m59s999ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{b9b9fef: PendingIntentRecord{557f210 com.google.android.gms startService}}
ELAPSED_WAKEUP #9: Alarm{dd81afc tag *walarm*:com.google.android.gms/com.google.android.contextmanager.service.ContextManagerService type 2 when 316364206645 com.google.android.gms}
tag=*walarm*:com.google.android.gms/com.google.android.contextmanager.service.ContextManagerService
type=2 whenElapsed=+3646d12h29m38s526ms when=+3646d12h29m38s526ms
window=+2737d11h59m59s998ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{8247585: PendingIntentRecord{7d83f36 com.google.android.gms startService}}
ELAPSED_WAKEUP #8: Alarm{d32bfda tag *walarm*:com.google.android.gms/.auth.proximity.firstparty.SystemMemoryCacheService type 2 when 316364204058 com.google.android.gms}
tag=*walarm*:com.google.android.gms/.auth.proximity.firstparty.SystemMemoryCacheService
type=2 whenElapsed=+3646d12h29m35s939ms when=+3646d12h29m35s939ms
window=+2737d11h59m59s999ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{1ac4c0b: PendingIntentRecord{109eae8 com.google.android.gms startService}}
ELAPSED_WAKEUP #7: Alarm{e3be501 tag *walarm*:com.google.android.gms/com.google.android.location.internal.server.GoogleLocationService type 2 when 316364202336 com.google.android.gms}
tag=*walarm*:com.google.android.gms/com.google.android.location.internal.server.GoogleLocationService
type=2 whenElapsed=+3646d12h29m34s217ms when=+3646d12h29m34s217ms
window=+2737d11h59m59s999ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{f0cffa6: PendingIntentRecord{5c60d2f com.google.android.gms startService}}
ELAPSED_WAKEUP #6: Alarm{ed19de7 tag *walarm*:com.google.android.gms/com.google.android.location.internal.server.GoogleLocationService type 2 when 316364202327 com.google.android.gms}
tag=*walarm*:com.google.android.gms/com.google.android.location.internal.server.GoogleLocationService
type=2 whenElapsed=+3646d12h29m34s208ms when=+3646d12h29m34s208ms
window=+2737d11h59m59s999ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{506cd94: PendingIntentRecord{dacfe1a com.google.android.gms startService}}
ELAPSED_WAKEUP #5: Alarm{b00d03d tag *walarm*:com.google.android.gms/com.google.android.location.internal.server.GoogleLocationService type 2 when 316364202322 com.google.android.gms}
tag=*walarm*:com.google.android.gms/com.google.android.location.internal.server.GoogleLocationService
type=2 whenElapsed=+3646d12h29m34s203ms when=+3646d12h29m34s203ms
window=+2737d12h0m0s0ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{af97032: PendingIntentRecord{fa0e841 com.google.android.gms startService}}
ELAPSED_WAKEUP #4: Alarm{5103183 tag *walarm*:com.google.android.gms/com.google.android.location.internal.server.GoogleLocationService type 2 when 316364202316 com.google.android.gms}
tag=*walarm*:com.google.android.gms/com.google.android.location.internal.server.GoogleLocationService
type=2 whenElapsed=+3646d12h29m34s197ms when=+3646d12h29m34s197ms
window=+2737d11h59m59s999ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{54d2f00: PendingIntentRecord{61519d4 com.google.android.gms startService}}
ELAPSED_WAKEUP #3: Alarm{2f3339 tag *walarm*:com.google.android.gms/com.google.android.location.internal.server.GoogleLocationService type 2 when 316364202260 com.google.android.gms}
tag=*walarm*:com.google.android.gms/com.google.android.location.internal.server.GoogleLocationService
type=2 whenElapsed=+3646d12h29m34s141ms when=+3646d12h29m34s141ms
window=+2737d11h59m59s997ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{cca5d7e: PendingIntentRecord{f6b1ac3 com.google.android.gms startService}}
ELAPSED_WAKEUP #2: Alarm{81a62df tag *walarm*:com.google.android.gms/com.google.android.location.internal.GoogleLocationManagerService type 2 when 316364201813 com.google.android.gms}
tag=*walarm*:com.google.android.gms/com.google.android.location.internal.GoogleLocationManagerService
type=2 whenElapsed=+3646d12h29m33s694ms when=+3646d12h29m33s694ms
window=+2737d11h59m59s999ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{4d63b2c: PendingIntentRecord{69c47be com.google.android.gms startService}}
ELAPSED_WAKEUP #1: Alarm{546c9f5 tag *walarm*:com.google.android.gms/com.google.android.location.internal.GoogleLocationManagerService type 2 when 316364201791 com.google.android.gms}
tag=*walarm*:com.google.android.gms/com.google.android.location.internal.GoogleLocationManagerService
type=2 whenElapsed=+3646d12h29m33s672ms when=+3646d12h29m33s672ms
window=+2737d11h59m59s999ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{92ad38a: PendingIntentRecord{ff86935 com.google.android.gms startService}}
ELAPSED_WAKEUP #0: Alarm{4198e37 tag *walarm*:com.google.android.gms/.tapandpay.security.StorageKeyCacheService type 2 when 315360076584 com.google.android.gms}
tag=*walarm*:com.google.android.gms/.tapandpay.security.StorageKeyCacheService
type=2 whenElapsed=+3634d21h34m8s465ms when=+3634d21h34m8s465ms
window=+2737d12h0m0s0ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{dc07fa4: PendingIntentRecord{eb2810d com.google.android.gms startService}}
Batch{550a832 num=1 start=1501885724110 end=2627326350129}:
ELAPSED #0: Alarm{f430983 tag *alarm*:com.google.android.apps.photos.jobqueue.EXECUTE_JOBS type 3 when 1501885724110 com.google.android.apps.photos}
tag=*alarm*:com.google.android.apps.photos.jobqueue.EXECUTE_JOBS
type=3 whenElapsed=+17367d20h1m35s991ms when=+17367d20h1m35s991ms
window=+13025d22h23m46s19ms repeatInterval=0 count=0 flags=0x0
operation=PendingIntent{ac32700: PendingIntentRecord{f5363b1 com.google.android.apps.photos broadcastIntent}}
Next wake from idle: Alarm{4c32c59 tag *walarm*:indicator type 0 when 1502153700000 com.lge.clock}
tag=*walarm*:indicator
type=0 whenElapsed=+3d0h36m11s940ms when=2017-08-07 20:55:00
window=0 repeatInterval=0 count=0 flags=0xb
Alarm clock:
triggerTime=2017-08-07 20:55:00
showIntent=null
operation=PendingIntent{473301e: PendingIntentRecord{d53189f com.lge.clock broadcastIntent}}
Past-due non-wakeup alarms: (none)
Number of delayed alarms: 6939, total delay time: +3d16h8m58s715ms
Max delay time: +10m19s967ms, max non-interactive time: +7h40m0s989ms
Broadcast ref count: 0
mAllowWhileIdleMinTime=+5s0ms
Last allow while idle dispatch times:
UID 1000: -2d22h0m5s51ms
UID 2901: -8m40s891ms
UID u0a8: -47s491ms
UID u0a9: -8m40s462ms
UID u0a73: -33m47s59ms
UID u0a124: -2h25m27s690ms
UID u0a133: -2h25m17s697ms
UID u0a153: -1h17m54s759ms
Top Alarms:
+22m39s489ms running, 0 wakeups, 8054 alarms: 1000:android
*alarm*:android.intent.action.TIME_TICK
+10m39s384ms running, 1006 wakeups, 1006 alarms: u0a9:com.google.android.gms
*walarm*:com.google.android.intent.action.GCM_RECONNECT
+9m15s100ms running, 5731 wakeups, 5731 alarms: u0a9:com.google.android.gms
*walarm*:com.google.android.location.ALARM_WAKEUP_ACTIVITY_DETECTION
+5m8s201ms running, 2909 wakeups, 2909 alarms: u0a131:com.snapchat.android
*walarm*:snapchat.intent.action.WATCHDOG
+5m3s46ms running, 4553 wakeups, 4553 alarms: u0a141:com.fivemobile.thescore
*walarm*:start_collect
+4m58s912ms running, 10017 wakeups, 10017 alarms: 1001:com.android.phone
*walarm*:com.android.internal.telephony.ACTION_CHECK_NETSTAT
+3m44s224ms running, 0 wakeups, 10436 alarms: u0a9:com.google.android.gms
*alarm*:com.google.android.location.internal.action.ULR_BAROMETER_READ_ALARM
+3m28s740ms running, 0 wakeups, 1913 alarms: 1001:com.android.phone
*alarm*:com.android.internal.telephony.data-stall
+3m26s542ms running, 0 wakeups, 1264 alarms: 1000:android
*alarm*:android.content.jobscheduler.JOB_DELAY_EXPIRED
+3m14s123ms running, 0 wakeups, 1309 alarms: u0a17:com.lge.clock
*alarm*:com.android.deskclock.ON_QUARTER_HOUR
Alarm Stats:
1000:com.lge.lgdmsclient +73ms running, 1 wakeups:
+73ms 1 wakes 1 alarms, last -6d23h36m47s213ms:
*walarm*:com.lge.lgdmsclient.AutoAgentExpire
1000:android +27m22s958ms running, 1270 wakeups:
+22m39s489ms 0 wakes 8054 alarms, last -48s60ms:
*alarm*:android.intent.action.TIME_TICK
+3m26s542ms 0 wakes 1264 alarms, last -14m46s348ms:
*alarm*:android.content.jobscheduler.JOB_DELAY_EXPIRED
+1m4s430ms 737 wakes 737 alarms, last -24m7s378ms:
*walarm*:android.appwidget.action.APPWIDGET_UPDATE
+19s212ms 0 wakes 15 alarms, last -7h57m18s919ms:
*alarm*:android.intent.action.DATE_CHANGED
+13s424ms 0 wakes 186 alarms, last -1h14m51s35ms:
*alarm*:android.content.jobscheduler.JOB_DEADLINE_EXPIRED
+7s982ms 289 wakes 289 alarms, last -45m12s386ms:
*walarm*:android.content.syncmanager.SYNC_ALARM
+6s537ms 108 wakes 108 alarms, last -3h2m17s841ms:
*walarm*:com.android.server.device_idle.STEP_IDLE_STATE
+3s467ms 60 wakes 60 alarms, last -10h18m48s63ms:
*walarm*:ScheduleConditionProvider.EVALUATE
+2s796ms 0 wakes 8 alarms, last -14d22h54m59s17ms:
*alarm*:com.android.server.action.NETWORK_STATS_POLL
+1s270ms 0 wakes 27 alarms, last -14h57m33s576ms:
*alarm*:com.android.server.action.UPDATE_TWILIGHT_STATE
+1s184ms 33 wakes 33 alarms, last -16h39m45s289ms:
*walarm*:com.android.server.task.controllers.IdleController.ACTION_TRIGGER_IDLE
+512ms 32 wakes 32 alarms, last -6h30m14s245ms:
*walarm*:android.net.wifi.DHCP_RENEW
+301ms 7 wakes 7 alarms, last -3d3h7m38s277ms:
*walarm*:com.android.server.WifiManager.action.START_SCAN
+46ms 1 wakes 1 alarms, last -10d10h50m15s694ms:
*walarm*:android.net.netmon.lingerExpired_163_955259496
+20ms 1 wakes 1 alarms, last -10d10h18m7s126ms:
*walarm*:android.net.netmon.lingerExpired_165_730083782
+13ms 1 wakes 1 alarms, last -2d2h5m13s623ms:
*walarm*:android.net.netmon.lingerExpired_300_943745199
+4ms 1 wakes 1 alarms, last -5d17h8m21s746ms:
*walarm*:android.net.netmon.lingerExpired_242_-1243295574
1000:com.lge.iftttmanager +972ms running, 15 wakeups:
+972ms 15 wakes 15 alarms, last -17h18m48s798ms:
*walarm*:com.lge.iftttmanager/.internal.cardrecommend.CardRecommendStarter$AlarmBroadcastReceiver
1000:com.lge.smartconfig +139ms running, 2 wakeups:
+139ms 2 wakes 2 alarms, last -2d22h0m5s51ms:
*walarm*:com.lge.smartconfig/.service.VoltaService
1000:com.lge.myplace +1m51s512ms running, 1 wakeups:
+1m51s512ms 1 wakes 1 alarms, last -15d2h25m52s265ms:
*walarm*:com.lge.myplace.receiver.afterbootcomplete
1000:com.lge.mlt +38s116ms running, 0 wakeups:
+37s938ms 0 wakes 212 alarms, last -3h45m53s714ms:
*alarm*:MPT.GPS_ACTION
+105ms 0 wakes 1 alarms, last -15d2h21m43s373ms:
*alarm*:MPT.ROOT_INSPECTION_EVENT
+73ms 0 wakes 1 alarms, last -15d2h20m21s280ms:
*alarm*:MPT.APP_POWER_BOOT_EVENT
1001:com.lge.ims +31ms running, 2 wakeups:
+31ms 2 wakes 2 alarms, last -2h3m25s478ms:
*walarm*:com.lge.ims.action.ALARM_NATIVE_TIMER
1001:com.android.phone +9m27s118ms running, 10683 wakeups:
+4m58s912ms 10017 wakes 10017 alarms, last -1h20m34s109ms:
*walarm*:com.android.internal.telephony.ACTION_CHECK_NETSTAT
+3m28s740ms 0 wakes 1913 alarms, last -1h11m26s773ms:
*alarm*:com.android.internal.telephony.data-stall
+1m15s568ms 526 wakes 526 alarms, last -21h56m34s361ms:
*walarm*:ims.guard_timer
+6s346ms 78 wakes 78 alarms, last -23h32m29s884ms:
*walarm*:com.android.internal.telephony.data-reconnect.ims
+514ms 39 wakes 39 alarms, last -11m18s934ms:
*walarm*:com.android.internal.telephony.data-reconnect.default
+117ms 16 wakes 16 alarms, last -2d2h44m48s570ms:
*walarm*:com.android.internal.telephony.dataconnection.DataConnection.DC-1.action_retry
+43ms 5 wakes 5 alarms, last -3d20h52m46s570ms:
*walarm*:com.android.internal.telephony.dataconnection.DataConnection.DC-2.action_retry
+12ms 2 wakes 2 alarms, last -4d22h13m24s889ms:
*walarm*:com.android.internal.telephony.dataconnection.DataConnection.DC-3.action_retry
1002:com.android.bluetooth +1m29s418ms running, 1483 wakeups:
+1m29s418ms 1483 wakes 1483 alarms, last -11m47s263ms:
*walarm*:com.android.bluetooth.btservice.action.ALARM_WAKEUP
2901:com.lge.appbox.client +100ms running, 2 wakeups:
+100ms 2 wakes 2 alarms, last -5d22h30m23s899ms:
*walarm*:com.lge.appbox.client/com.lge.appbox.service.PollingVoltaService
2901:com.lge.exchange +11s305ms running, 895 wakeups:
+11s305ms 895 wakes 895 alarms, last -8m40s891ms:
*walarm*:com.lge.exchange/.service.EasManagerService
2901:com.lge.ia.task.informant +1m15s623ms running, 55 wakeups:
+1m11s768ms 39 wakes 39 alarms, last -8h52m19s306ms:
*walarm*:com.lge.ia.task.informant.tips.userguide.action.UPDATE_USERLOG
+3s738ms 15 wakes 15 alarms, last -20h7m46s697ms:
*walarm*:com.lge.ia.task.informant.dyk.userguide.ACTION_DATE_CHANGE
+117ms 1 wakes 1 alarms, last -4d8h19m6s823ms:
*walarm*:com.lge.ia.task.smartmoment.entropy.ACTION_MONITORING_TIME.TYPE_SMARTTIPS
u0a1:com.android.providers.contacts +359ms running, 23 wakeups:
+359ms 23 wakes 23 alarms, last -21h50m22s233ms:
*walarm*:com.lge.contacts.intent.action.BACKUP_DB
u0a8:com.lge.cic.eden.service +10s321ms running, 59 wakeups:
+3s879ms 15 wakes 15 alarms, last -47s491ms:
*walarm*:com.lge.cic.eden.intent.action.ACTION_SHOW_CARD
+3s624ms 15 wakes 15 alarms, last -18h18m48s437ms:
*walarm*:com.lge.cic.eden.intent.action.ACTION_START_ANALYSIS
+2s408ms 15 wakes 15 alarms, last -17h18m48s457ms:
*walarm*:com.lge.cic.eden.intent.action.ACTION_RESTART_ANALYSIS
+275ms 1 wakes 1 alarms, last -14d11h19m56s367ms:
*walarm*:com.lge.cic.eden.intent.action.ACTION_STOP_ANALYSIS
+135ms 13 wakes 13 alarms, last -1h32m2s891ms:
*walarm*:com.lge.cic.eden.service/.EdenService
u0a9:com.google.android.gms +27m27s771ms running, 13595 wakeups:
+10m39s384ms 1006 wakes 1006 alarms, last -8m40s462ms:
*walarm*:com.google.android.intent.action.GCM_RECONNECT
+9m15s100ms 5731 wakes 5731 alarms, last -41m24s383ms:
*walarm*:com.google.android.location.ALARM_WAKEUP_ACTIVITY_DETECTION
+3m44s224ms 0 wakes 10436 alarms, last -23s487ms:
*alarm*:com.google.android.location.internal.action.ULR_BAROMETER_READ_ALARM
+2m57s135ms 564 wakes 564 alarms, last -2h55m20s473ms:
*walarm*:com.google.android.gms.gcm.ACTION_CHECK_QUEUE
+1m51s704ms 1384 wakes 1384 alarms, last -3h45m13s666ms:
*walarm*:com.google.android.location.ALARM_WAKEUP_LOCATOR
+59s764ms 2130 wakes 2130 alarms, last -10m16s246ms:
*walarm*:com.google.android.location.internal.action.ULR_BLE_SCAN_ALARM
+44s809ms 693 wakes 693 alarms, last -8m40s701ms:
*walarm*:com.google.android.gms/.checkin.EventLogServiceReceiver
+27s444ms 22 wakes 22 alarms, last -3h58m9s983ms:
*walarm*:com.google.android.location.ALARM_WAKEUP_CACHE_UPDATER
+18s180ms 0 wakes 3 alarms, last -6d20h45m0s45ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_3199
+16s370ms 0 wakes 39 alarms, last -1h39m56s425ms:
*alarm*:com.google.android.gms.common.receiver.LOG_CORE_ANALYTICS
+13s755ms 363 wakes 363 alarms, last -3d2h25m47s620ms:
*walarm*:CONTEXT_MANAGER_ALARM_WAKEUP_76780
+13s90ms 1017 wakes 1017 alarms, last -10m19s219ms:
*walarm*:com.google.android.gms.icing.proxy.action.SMS_CHANGED
+9s1ms 22 wakes 22 alarms, last -3h52m30s692ms:
*walarm*:com.google.android.location.ALARM_WAKEUP_BURST_COLLECTION_TRIGGER
+6s743ms 0 wakes 1 alarms, last -6d22h45m35s256ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_2711
+6s410ms 176 wakes 176 alarms, last -23m3s362ms:
*walarm*:com.google.android.gms.gcm.HEARTBEAT_ALARM
+5s597ms 160 wakes 160 alarms, last -1h32m46s396ms:
*walarm*:com.google.android.location.reporting.ACTION_UPDATE_WORLD
+5s543ms 0 wakes 1 alarms, last -10d21h0m42s983ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_1449
+5s4ms 0 wakes 9 alarms, last -6d20h19m21s828ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_3215
+4s301ms 0 wakes 30 alarms, last -7d7h21m9s367ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_2533
+3s902ms 0 wakes 16 alarms, last -6d18h47m18s976ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_3244
+3s827ms 0 wakes 31 alarms, last -13d2h30m50s626ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_409
+3s156ms 0 wakes 13 alarms, last -13d0h33m59s424ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_691
+2s837ms 0 wakes 43 alarms, last -6d8h49m30s227ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_3493
+2s715ms 29 wakes 29 alarms, last -1d2h29m14s876ms:
*walarm*:com.google.android.location.ALARM_WAKEUP_BURST_COLLECTOR
+2s572ms 14 wakes 14 alarms, last -1d7h43m27s275ms:
*walarm*:com.google.android.gms.measurement.UPLOAD
+2s514ms 108 wakes 108 alarms, last -9m29s344ms:
*walarm*:CONTEXT_MANAGER_ALARM_WAKEUP_1004206318
+2s472ms 41 wakes 41 alarms, last -1h58m22s586ms:
*walarm*:com.google.android.location.ALARM_WAKEUP_VEHICLE_EXIT_DETECTOR
+2s281ms 0 wakes 31 alarms, last -13d3h36m34s932ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_389
+1s859ms 0 wakes 60 alarms, last -10h55m30s8ms:
*alarm*:com.google.android.gms.common.download.START
+1s784ms 15 wakes 15 alarms, last -2h25m49s686ms:
*walarm*:com.google.android.gms/com.google.android.location.internal.AnalyticsSamplerReceiver
+1s692ms 0 wakes 22 alarms, last -12d19h2m19s536ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_1053
+1s675ms 33 wakes 33 alarms, last -3h56m37s384ms:
*walarm*:com.google.android.location.ALARM_WAKEUP_SENSOR_UPLOADER
+1s672ms 0 wakes 2 alarms, last -5d4h28m29s32ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7133
+1s523ms 0 wakes 24 alarms, last -12d17h30m55s657ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_1100
+1s202ms 14 wakes 14 alarms, last -13h45m18s570ms:
*walarm*:null.INACTIVITY_TRIGGERED
+1s191ms 0 wakes 1 alarms, last -5d20h51m0s931ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_5395
+1s130ms 0 wakes 23 alarms, last -12d22h57m22s839ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_906
+1s97ms 0 wakes 15 alarms, last -2h25m49s686ms:
*alarm*:com.google.android.gms/.analytics.internal.PlayLogReportingService
+972ms 17 wakes 17 alarms, last -3d6h56m50s364ms:
*walarm*:com.google.android.gms/com.google.android.libraries.social.mediamonitor.MediaMonitorIntentService
+907ms 0 wakes 13 alarms, last -6d17h11m7s294ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_3272
+872ms 0 wakes 9 alarms, last -6d0h41m57s672ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_4303
+752ms 14 wakes 14 alarms, last -10h2m47s322ms:
*walarm*:com.google.android.gms.auth.authzen.CHECK_REGISTRATION
+738ms 0 wakes 11 alarms, last -5d7h2m49s927ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_6955
+681ms 0 wakes 27 alarms, last -6d20h48m49s884ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_2869
+664ms 0 wakes 8 alarms, last -1h58m22s586ms:
*alarm*:com.google.android.gms/.lockbox.LockboxAlarmReceiver
+569ms 0 wakes 12 alarms, last -13d1h24m38s187ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_455
+537ms 0 wakes 7 alarms, last -8d21h52m36s395ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_2079
+506ms 0 wakes 8 alarms, last -13d0h3m28s196ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_805
+499ms 0 wakes 2 alarms, last -3d23h58m14s439ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7673
+483ms 0 wakes 10 alarms, last -4h53m55s231ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_446
+435ms 0 wakes 8 alarms, last -5d8h10m7s990ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_6683
+434ms 0 wakes 1 alarms, last -5d19h26m3s110ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_5767
+402ms 0 wakes 4 alarms, last -5d19h0m33s545ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_5838
+400ms 0 wakes 11 alarms, last -7d3h36m36s612ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_2609
+355ms 0 wakes 11 alarms, last -21h57m7s181ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_348
+306ms 0 wakes 2 alarms, last -2d17h19m1s456ms:
*alarm*:com.google.android.gms.location.ENGINE_BATCH_TIMEOUT_ALARM_106
+299ms 0 wakes 7 alarms, last -8d20h49m36s779ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_2222
+294ms 15 wakes 15 alarms, last -20h18m48s538ms:
*walarm*:com.google.android.gms.reminders.notification.ACTION_REFRESH_TIME_REMINDERS
+280ms 0 wakes 1 alarms, last -7d3h30m25s833ms:
*alarm*:com.google.android.gms.location.ENGINE_BATCH_TIMEOUT_ALARM_2629
+277ms 0 wakes 7 alarms, last -6d21h14m30s218ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_2798
+269ms 0 wakes 1 alarms, last -5d0h18m9s158ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7221
+265ms 0 wakes 5 alarms, last -6d2h50m34s740ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_4232
+264ms 4 wakes 4 alarms, last -1d2h31m39s888ms:
*walarm*:com.google.android.location.ALARM_WAKEUP_SENSOR_COLLECTOR
+257ms 0 wakes 3 alarms, last -8d23h20m8s166ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_2069
+256ms 0 wakes 5 alarms, last -6d3h59m51s979ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_3577
+255ms 0 wakes 5 alarms, last -3d7h56m3s755ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_41
+251ms 0 wakes 1 alarms, last -4d3h47m6s691ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7486
+227ms 0 wakes 5 alarms, last -13d2h8m44s330ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_443
+211ms 0 wakes 5 alarms, last -12d23h53m36s845ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_822
+211ms 0 wakes 1 alarms, last -7d1h19m3s150ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_2679
+210ms 1 wakes 1 alarms, last -5d18h17m35s335ms:
*walarm*:com.google.android.location.fused.HAL_DELIVERY_TIMEOUT_ALARM_5913
+210ms 0 wakes 1 alarms, last -6d1h28m54s577ms:
*alarm*:com.google.android.gms.location.ENGINE_BATCH_TIMEOUT_ALARM_4298
+205ms 0 wakes 4 alarms, last -10d1h55m38s273ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_1600
+201ms 0 wakes 1 alarms, last -4d4h26m19s688ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7466
+200ms 0 wakes 5 alarms, last -5d20h12m7s259ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_5497
+193ms 0 wakes 2 alarms, last -12d17h39m41s547ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_1165
+192ms 0 wakes 1 alarms, last -6d0h0m7s137ms:
*alarm*:com.google.android.gms.location.ENGINE_BATCH_TIMEOUT_ALARM_4664
+185ms 2 wakes 2 alarms, last -2d22h59m26s771ms:
*walarm*:com.google.android.gms/.checkin.CheckinServiceReceiver
+176ms 0 wakes 1 alarms, last -4d6h3m30s160ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7435
+164ms 0 wakes 5 alarms, last -5d20h21m44s945ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_5438
+163ms 0 wakes 2 alarms, last -6d19h48m2s856ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_3232
+158ms 0 wakes 1 alarms, last -5d10h18m2s665ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_6557
+155ms 0 wakes 1 alarms, last -13d4h24m22s351ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_393
+153ms 0 wakes 3 alarms, last -6d16h36m54s827ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_3466
+151ms 0 wakes 3 alarms, last -10d0h39m46s438ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_1615
+146ms 1 wakes 1 alarms, last -5d7h51m44s187ms:
*walarm*:com.google.android.location.fused.HAL_DELIVERY_TIMEOUT_ALARM_6948
+145ms 0 wakes 3 alarms, last -5d19h4m56s370ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_5834
+144ms 4 wakes 4 alarms, last -6d1h3m10s693ms:
*walarm*:com.google.android.location.ALARM_WAKEUP_ACTIVE_COLLECTOR
+142ms 0 wakes 2 alarms, last -6d22h32m7s521ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_2759
+138ms 0 wakes 1 alarms, last -5d18h46m49s348ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_5860
+136ms 0 wakes 2 alarms, last -6d0h30m38s672ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_4329
+135ms 0 wakes 2 alarms, last -12d18h52m40s918ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_1098
+134ms 0 wakes 1 alarms, last -8d23h41m36s998ms:
*alarm*:com.google.android.gms.location.ENGINE_BATCH_TIMEOUT_ALARM_2055
+132ms 0 wakes 2 alarms, last -4d20h42m1s737ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7252
+129ms 0 wakes 2 alarms, last -3d20h26m5s131ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7781
+125ms 0 wakes 2 alarms, last -12d15h49m51s358ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_1186
+124ms 0 wakes 2 alarms, last -10d2h24m4s4ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_1561
+123ms 0 wakes 2 alarms, last -8d23h10m18s915ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_2077
+121ms 0 wakes 2 alarms, last -4d0h53m15s980ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7646
+120ms 0 wakes 2 alarms, last -7d7h11m17s708ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_2591
+120ms 0 wakes 2 alarms, last -3d19h4m41s334ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7817
+119ms 0 wakes 5 alarms, last -6d20h46m27s966ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_3161
+118ms 0 wakes 1 alarms, last -6d21h9m34s67ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_2877
+118ms 0 wakes 2 alarms, last -6d4h1m7s676ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_3573
+118ms 0 wakes 2 alarms, last -4d3h22m18s682ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7500
+117ms 0 wakes 2 alarms, last -12d23h42m46s556ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_903
+116ms 0 wakes 4 alarms, last -6d1h42m41s79ms:
*alarm*:com.google.android.gms.location.fused.SEND_LOCATION_IN_STATIONARY_MODE_ALARM_ALARM_4275
+116ms 0 wakes 2 alarms, last -4d5h50m33s757ms:
*alarm*:com.google.android.location.fused.LOCATION_STATUS_ALARM_ACTION_ALARM_7439