-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.txt
8716 lines (8705 loc) · 614 KB
/
log.txt
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
ACTIVITY MANAGER BROADCAST STATE (dumpsys activity broadcasts)
Registered Receivers:
* ReceiverList{1f8bb31 2142 com.android.phone/1001/u0 remote:bd87bd8}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=0
Filter #0: BroadcastFilter{8d6d216}
* ReceiverList{32cdbdd 1935 system/1000/u-1 local:3b343b4}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{f052352}
Action: "android.accounts.LOGIN_ACCOUNTS_CHANGED"
* ReceiverList{48d3681 16251 com.google.android.gms.persistent/10010/u0 remote:a6f9268}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{f81b326}
Action: "android.os.action.DEVICE_IDLE_MODE_CHANGED"
Action: "android.os.action.LIGHT_DEVICE_IDLE_MODE_CHANGED"
* ReceiverList{854bd6d 1935 system/1000/u0 local:98e7184}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{d1a0da2}
Action: "android.intent.action.DEVICE_STORAGE_LOW"
Action: "android.intent.action.DEVICE_STORAGE_OK"
* ReceiverList{958f73d 1935 system/1000/u-1 local:89b3094}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{c640b32}
Action: "android.intent.action.USER_SWITCHED"
Action: "android.intent.action.MANAGED_PROFILE_ADDED"
Action: "android.intent.action.MANAGED_PROFILE_REMOVED"
Action: "android.intent.action.ACTION_SHUTDOWN"
* ReceiverList{3573275 2067 com.android.systemui/10028/u0 remote:5bcf5ac}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{8fe520a}
Action: "android.intent.action.USER_SWITCHED"
Action: "android.intent.action.USER_ADDED"
Action: "android.intent.action.USER_UNLOCKED"
Filter #1: BroadcastFilter{f042a7b}
Action: "com.android.systemui.statusbar.work_challenge_unlocked_notification_action"
requiredPermission=com.android.systemui.permission.SELF
* ReceiverList{fc80119 21036 com.google.android.apps.messaging/10068/u0 remote:8730860}
app=21036:com.google.android.apps.messaging/u0a68 pid=21036 uid=10068 user=0
Filter #0: BroadcastFilter{ad445de}
Action: "android.net.conn.CONNECTIVITY_CHANGE"
* ReceiverList{3eb6738 1935 system/1000/u0 local:78fc79b}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{1fe3311}
Action: "android.hardware.usb.action.USB_STATE"
* ReceiverList{f8f2900 1935 system/1000/u0 local:b95d383}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{472a539}
Action: "android.intent.action.BATTERY_LOW"
Action: "android.intent.action.BATTERY_OKAY"
Action: "android.os.action.CHARGING"
Action: "android.os.action.DISCHARGING"
* ReceiverList{79ec42c 2142 com.android.phone/1001/u0 remote:7fb6fdf}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=0
Filter #0: BroadcastFilter{4671ef5}
Action: "android.telephony.action.CARRIER_CONFIG_CHANGED"
* ReceiverList{94751d5 1935 system/1000/u0 local:6a6768c}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{e0aedea}
Action: "android.intent.action.SCREEN_ON"
Action: "android.intent.action.SCREEN_OFF"
* ReceiverList{fd6f3a0 1935 system/1000/u-1 local:c89a4a3}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{a80ab59}
Action: "android.intent.action.USER_SWITCHED"
Action: "android.intent.action.USER_UNLOCKED"
* ReceiverList{ca43094 18664 com.google.android.googlequicksearchbox:interactor/10037/u0 remote:4caace7}
app=18664:com.google.android.googlequicksearchbox:interactor/u0a37 pid=18664 uid=10037 user=0
Filter #0: BroadcastFilter{f2df73d}
Action: "com.google.gservices.intent.action.GSERVICES_CHANGED"
* ReceiverList{2383099 22561 com.google.android.apps.messaging:rcs/10068/u0 remote:dd045e0}
app=22561:com.google.android.apps.messaging:rcs/u0a68 pid=22561 uid=10068 user=0
Filter #0: BroadcastFilter{117f5e}
Action: "com.google.gservices.intent.action.GSERVICES_CHANGED"
* ReceiverList{7e28dec 1935 system/1000/u0 local:8ad489f}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{33c85b5}
Action: "android.media.VOLUME_CHANGED_ACTION"
* ReceiverList{4d24dd4 16251 com.google.android.gms.persistent/10010/u0 remote:715f727}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{739eb7d}
Action: "android.provider.Telephony.SECRET_CODE"
Scheme: "android_secret_code"
Authority: "426": -1
* ReceiverList{50383d4 1935 system/1000/u-1 local:d124527}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{ea1e97d}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.QUERY_PACKAGE_RESTART"
Action: "android.intent.action.PACKAGE_RESTARTED"
Action: "android.intent.action.PACKAGE_DATA_CLEARED"
Scheme: "package"
Filter #1: BroadcastFilter{3c2b072}
Action: "android.intent.action.UID_REMOVED"
Action: "android.intent.action.USER_STOPPED"
Action: "android.intent.action.PACKAGES_SUSPENDED"
Action: "android.intent.action.PACKAGES_UNSUSPENDED"
Filter #2: BroadcastFilter{5d40cc3}
Action: "android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE"
Action: "android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE"
* ReceiverList{9f17b09 22348 com.google.android.calendar/10056/u0 remote:c2f7410}
app=22348:com.google.android.calendar/u0a56 pid=22348 uid=10056 user=0
Filter #0: BroadcastFilter{144510e}
Action: "android.intent.action.CONFIGURATION_CHANGED"
* ReceiverList{9d834f5 1935 system/1000/u0 local:26e722c}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{baf628a}
Action: "android.location.MODE_CHANGED"
* ReceiverList{13a6fc2 2067 com.android.systemui/10028/u0 remote:c4ed40d}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{5fae1d3}
Action: "com.android.systemui.action.SNOOZE_VOLUME"
requiredPermission=android.permission.MOUNT_UNMOUNT_FILESYSTEMS
* ReceiverList{217f111 16319 com.google.android.gms/10010/u0 remote:d7d5d38}
app=16319:com.google.android.gms/u0a10 pid=16319 uid=10010 user=0
Filter #0: BroadcastFilter{3cb0276}
Action: "com.google.gservices.intent.action.GSERVICES_CHANGED"
* ReceiverList{706c271 1935 system/1000/u-1 local:8491818}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{1856856}
Action: "android.os.action.DEVICE_IDLE_MODE_CHANGED"
Action: "android.os.action.LIGHT_DEVICE_IDLE_MODE_CHANGED"
Action: "android.os.action.POWER_SAVE_WHITELIST_CHANGED"
Action: "android.os.action.POWER_SAVE_TEMP_WHITELIST_CHANGED"
* ReceiverList{507b3e2 1935 system/1000/u-1 local:4f414ad}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{fe2a373}
Action: "android.intent.action.CONFIGURATION_CHANGED"
Filter #1: BroadcastFilter{f3ed230}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.PACKAGE_REMOVED"
Scheme: "package"
Filter #2: BroadcastFilter{2ea4ea9}
Action: "android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE"
Action: "android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE"
Filter #3: BroadcastFilter{1712c2e}
Action: "android.intent.action.MANAGED_PROFILE_AVAILABLE"
Action: "android.intent.action.MANAGED_PROFILE_UNAVAILABLE"
Filter #4: BroadcastFilter{23a03cf}
Action: "android.intent.action.PACKAGES_SUSPENDED"
Action: "android.intent.action.PACKAGES_UNSUSPENDED"
* ReceiverList{e3b1df4 3111 com.google.android.apps.nexuslauncher/10039/u0 remote:b9d73c7}
app=3111:com.google.android.apps.nexuslauncher/u0a39 pid=3111 uid=10039 user=0
Filter #0: BroadcastFilter{104491d}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_DATA_CLEARED"
Scheme: "package"
Ssp: "PatternMatcher{LITERAL: com.google.android.googlequicksearchbox}"
* ReceiverList{8dee14c 2067 com.android.systemui/10028/u-1 remote:d234d7f}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=-1
Filter #0: BroadcastFilter{c534595}
Action: "android.intent.action.CLOSE_SYSTEM_DIALOGS"
Action: "android.intent.action.SCREEN_OFF"
Action: "android.app.action.SHOW_DEVICE_MONITORING_DIALOG"
* ReceiverList{d9c2c4f 16251 com.google.android.gms.persistent/10010/u0 remote:ed8a6ae}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{5191fdc}
Action: "android.gms.contextmanager.PLACE_UPDATES"
* ReceiverList{5002d12 1935 system/1000/u0 local:ceaf49d}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{cbadce3}
Action: "android.intent.action.USER_SWITCHED"
* ReceiverList{9586c3e 1935 system/1000/u0 local:48544f9}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{1952a9f}
Action: "android.intent.action.PACKAGE_REMOVED"
Scheme: "package"
* ReceiverList{a2640ba 1935 system/1000/u0 local:d63ede5}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{3de6b6b}
Action: "android.intent.action.USER_SWITCHED"
* ReceiverList{274240b 3111 com.google.android.apps.nexuslauncher/10039/u0 remote:752f7da}
app=3111:com.google.android.apps.nexuslauncher/u0a39 pid=3111 uid=10039 user=0
Filter #0: BroadcastFilter{9f0e2e8}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_CHANGED"
Scheme: "package"
Ssp: "PatternMatcher{LITERAL: com.google.android.deskclock}"
* ReceiverList{6c25095 1935 system/1000/u0 local:8c7384c}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{d87e5aa}
Action: "android.net.conn.TETHER_STATE_CHANGED"
* ReceiverList{a8761be 1935 system/1000/u-1 local:e8a079}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{260b21f}
Action: "android.intent.action.USER_SWITCHED"
Action: "android.intent.action.USER_UNLOCKED"
Action: "android.intent.action.USER_REMOVED"
Action: "android.intent.action.USER_PRESENT"
Action: "android.os.action.SETTING_RESTORED"
* ReceiverList{ce953fe 18616 com.google.android.googlequicksearchbox:search/10037/u0 remote:b2df3b9}
app=18616:com.google.android.googlequicksearchbox:search/u0a37 pid=18616 uid=10037 user=0
Filter #0: BroadcastFilter{b64575f}
Action: "android.intent.action.USER_PRESENT"
Action: "android.intent.action.SCREEN_OFF"
* ReceiverList{a494e24 1935 system/1000/u0 local:62286b7}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{add6d8d}
Action: "com.android.server.fingerprint.ACTION_LOCKOUT_RESET"
requiredPermission=android.permission.RESET_FINGERPRINT_LOCKOUT
* ReceiverList{828cb6d 2067 com.android.systemui/10028/u0 remote:f11f784}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{aa803a2}
Action: "android.intent.action.DATE_CHANGED"
Action: "android.intent.action.TIME_SET"
Action: "android.intent.action.TIMEZONE_CHANGED"
Action: "android.intent.action.LOCALE_CHANGED"
* ReceiverList{3c12c2 1935 system/1000/u0 local:395230d}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{b5748d3}
Action: "android.intent.action.USER_SWITCHED"
* ReceiverList{255735e 1935 system/1000/u0 local:c037499}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{3cf33f}
Action: "android.intent.action.LOCALE_CHANGED"
* ReceiverList{1381dcc 1935 system/1000/u-1 local:b61abff}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{5c10815}
Action: "android.intent.action.USER_ADDED"
Action: "android.intent.action.USER_STARTING"
Action: "android.intent.action.USER_REMOVED"
* ReceiverList{d6379c2 1935 system/1000/u-1 local:eadc60d}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{8023d3}
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_ADDED"
Scheme: "package"
Filter #1: BroadcastFilter{9abbb10}
Action: "android.intent.action.BOOT_COMPLETED"
* ReceiverList{9b28132 2142 com.android.phone/1001/u0 remote:59f853d}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=0
Filter #0: BroadcastFilter{30a6e83}
Action: "android.telephony.action.CARRIER_CONFIG_CHANGED"
Action: "android.intent.action.DOWNLOAD_COMPLETE"
Action: "com.android.internal.telephony.carrier_key_download_alarm0"
Action: "com.android.internal.telephony.ACTION_CARRIER_CERTIFICATE_DOWNLOAD"
* ReceiverList{f14bf 3111 com.google.android.apps.nexuslauncher/10039/u0 remote:a7d2ade}
app=3111:com.google.android.apps.nexuslauncher/u0a39 pid=3111 uid=10039 user=0
Filter #0: BroadcastFilter{978378c}
Action: "android.intent.action.SCREEN_OFF"
* ReceiverList{5256b0b 1935 system/1000/u0 local:270fada}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{d0e1de8}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.QUERY_PACKAGE_RESTART"
Action: "android.intent.action.PACKAGE_RESTARTED"
Action: "android.intent.action.PACKAGE_DATA_CLEARED"
Scheme: "package"
Filter #1: BroadcastFilter{58f9c01}
Action: "android.intent.action.UID_REMOVED"
Action: "android.intent.action.USER_STOPPED"
Action: "android.intent.action.PACKAGES_SUSPENDED"
Action: "android.intent.action.PACKAGES_UNSUSPENDED"
Filter #2: BroadcastFilter{973eaa6}
Action: "android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE"
Action: "android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE"
* ReceiverList{7e506fc 2067 com.android.systemui/10028/u-1 remote:b58bbef}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=-1
Filter #0: BroadcastFilter{78cf185}
Action: "android.intent.action.TIME_TICK"
Action: "android.intent.action.TIME_SET"
Action: "android.intent.action.TIMEZONE_CHANGED"
Action: "android.intent.action.CONFIGURATION_CHANGED"
Action: "android.intent.action.USER_SWITCHED"
* ReceiverList{dd65059 2067 com.android.systemui/10028/u-1 remote:c180ca0}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=-1
Filter #0: BroadcastFilter{e91841e}
Action: "android.app.action.DEVICE_POLICY_MANAGER_STATE_CHANGED"
* ReceiverList{25c9a98 2067 com.android.systemui/10028/u0 remote:4c22c7b}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{21852f1}
Action: "android.intent.action.ACTION_SHUTDOWN"
* ReceiverList{e5ecc3f 16251 com.google.android.gms.persistent/10010/u0 remote:8e3105e}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{852590c}
Action: "com.google.android.gms.auth.GOOGLE_ACCOUNT_CHANGE"
Category: "com.google.android.gms.auth.category.ACCOUNT_ADDED"
* ReceiverList{4ff8fe1 3111 com.google.android.apps.nexuslauncher/10039/u0 remote:5f7f548}
app=3111:com.google.android.apps.nexuslauncher/u0a39 pid=3111 uid=10039 user=0
Filter #0: BroadcastFilter{7ad0106}
Action: "android.intent.action.LOCALE_CHANGED"
* ReceiverList{51c4174 1935 system/1000/u0 local:586f547}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{cb1669d}
Action: "android.net.wifi.WIFI_AP_STATE_CHANGED"
* ReceiverList{ed38e09 16319 com.google.android.gms/10010/u0 remote:bd1f310}
app=16319:com.google.android.gms/u0a10 pid=16319 uid=10010 user=0
Filter #0: BroadcastFilter{950680e}
Action: "com.google.android.gms.common.LANGUAGE_RELOAD"
requiredPermission=com.google.android.gms.permission.INTERNAL_BROADCAST
* ReceiverList{bcb358f 1935 system/1000/u0 local:4250cee}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{b71901c}
Action: "com.android.server.net.action.ALLOW_BACKGROUND"
requiredPermission=android.permission.MANAGE_NETWORK_POLICY
* ReceiverList{c7d5405 1935 system/1000/u0 local:3a7637c}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{1d47c5a}
Action: "android.hardware.usb.action.USB_STATE"
Action: "android.net.conn.CONNECTIVITY_CHANGE"
Action: "android.net.wifi.WIFI_AP_STATE_CHANGED"
Action: "android.intent.action.CONFIGURATION_CHANGED"
Filter #1: BroadcastFilter{cf88e8b}
Action: "android.intent.action.MEDIA_SHARED"
Action: "android.intent.action.MEDIA_UNSHARED"
Scheme: "file"
* ReceiverList{85a00cc 1935 system/1000/u0 local:2213aff}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{458af15}
Action: "android.intent.action.LOCALE_CHANGED"
* ReceiverList{cd34d9 2142 com.android.phone/1001/u0 remote:bc1b320}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=0
Filter #0: BroadcastFilter{64fce9e}
Action: "android.intent.action.USER_UNLOCKED"
* ReceiverList{908be5c 1935 system/1000/u0 local:c2534cf}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{9e14565}
Action: "com.android.server.wifi.WifiApConfigStoreUtil.HOTSPOT_CONFIG_USER_TAPPED_CONTENT"
* ReceiverList{b4fee85 1935 system/1000/u0 local:711d7fc}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{b9344da}
Action: "android.intent.action.DOCK_EVENT"
* ReceiverList{e11ee3e 2067 com.android.systemui/10028/u0 remote:e0b8ef9}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{62d849f}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_CHANGED"
Scheme: "package"
Ssp: "PatternMatcher{LITERAL: com.google.android.apps.nexuslauncher}"
* ReceiverList{b48a3ac 1935 system/1000/u0 local:dab1d5f}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{2d44875}
Action: "android.intent.action.SIM_STATE_CHANGED"
Action: "android.net.conn.CONNECTIVITY_CHANGE"
Action: "android.net.conn.INET_CONDITION_ACTION"
* ReceiverList{b125c5e 1935 system/1000/u0 local:96e6199}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{daa283f}
Action: "android.intent.action.DREAMING_STARTED"
Action: "android.intent.action.DREAMING_STOPPED"
* ReceiverList{2c91376 2067 com.android.systemui/10028/u-1 remote:eefa611}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=-1
Filter #0: BroadcastFilter{6cf6d77}
Action: "com.android.systemui.demo"
requiredPermission=android.permission.DUMP
* ReceiverList{64fe2a6 16251 com.google.android.gms.persistent/10010/u0 remote:d007401}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{97644e7}
Action: "com.google.android.chimera.MODULE_CONFIGURATION_CHANGED"
requiredPermission=com.google.android.gms.chimera.permission.CONFIG_CHANGE
* ReceiverList{6692d2e 1935 system/1000/u0 local:aadb3a9}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{62070cf}
Action: "android.intent.action.USER_SWITCHED"
Action: "android.intent.action.USER_REMOVED"
Action: "android.telephony.action.DEFAULT_SUBSCRIPTION_CHANGED"
* ReceiverList{93d2794 1935 system/1000/u0 local:6e11fe7}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{191223d}
Action: "android.intent.action.SCREEN_ON"
Action: "android.intent.action.SCREEN_OFF"
Action: "android.intent.action.DREAMING_STARTED"
Action: "android.intent.action.DREAMING_STOPPED"
Action: "com.android.server.ACTION_TRIGGER_IDLE"
Action: "android.intent.action.DOCK_IDLE"
Action: "android.intent.action.DOCK_ACTIVE"
* ReceiverList{bcfc145 1935 system/1000/u-1 local:cb63dbc}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{4b6809a}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.PACKAGE_DATA_CLEARED"
Scheme: "package"
mPriority=1000, mOrder=0, mHasPartialTypes=false
Filter #1: BroadcastFilter{dffddcb}
Action: "android.intent.action.ACTION_PREFERRED_ACTIVITY_CHANGED"
mPriority=1000, mOrder=0, mHasPartialTypes=false
* ReceiverList{ff0f64f 2142 com.android.phone/1001/u0 remote:9ba58ae}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=0
Filter #0: BroadcastFilter{4bf21dc}
Action: "android.intent.action.BOOT_COMPLETED"
Action: "android.net.sip.SIP_SERVICE_UP"
Action: "com.android.phone.SIP_CALL_OPTION_CHANGED"
Action: "com.android.phone.SIP_REMOVE_PHONE"
* ReceiverList{f38563 3111 com.google.android.apps.nexuslauncher/10039/u0 remote:6882792}
app=3111:com.google.android.apps.nexuslauncher/u0a39 pid=3111 uid=10039 user=0
Filter #0: BroadcastFilter{7e62560}
Action: "android.app.action.INTERRUPTION_FILTER_CHANGED"
Action: "android.app.action.NOTIFICATION_POLICY_CHANGED"
* ReceiverList{44abcf7 16319 com.google.android.gms/10010/u0 remote:9e9f0f6}
app=16319:com.google.android.gms/u0a10 pid=16319 uid=10010 user=0
Filter #0: BroadcastFilter{76fe764}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.PACKAGE_REPLACED"
Action: "android.intent.action.PACKAGE_RESTARTED"
Scheme: "package"
* ReceiverList{6cadac4 1935 system/1000/u0 local:f5e1d7}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{a9f0dad}
Action: "android.telephony.action.CARRIER_CONFIG_CHANGED"
* ReceiverList{e25be4a 16251 com.google.android.gms.persistent/10010/u0 remote:683a7b5}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{d48c1bb}
Action: "com.google.android.gms.auth.GOOGLE_ACCOUNT_CHANGE"
Category: "com.google.android.gms.auth.category.ACCOUNT_ADDED"
* ReceiverList{6bcaf48 22556 com.google.android.apps.maps/10067/u0 remote:4d7e5eb}
app=22556:com.google.android.apps.maps/u0a67 pid=22556 uid=10067 user=0
Filter #0: BroadcastFilter{56ec1e1}
Action: "com.google.android.chimera.MODULE_CONFIGURATION_CHANGED"
requiredPermission=com.google.android.gms.chimera.permission.CONFIG_CHANGE
* ReceiverList{badbec5 22399 com.google.android.deskclock/10074/u0 remote:87fc13c}
app=22399:com.google.android.deskclock/u0a74 pid=22399 uid=10074 user=0
Filter #0: BroadcastFilter{a78701a}
Action: "android.app.action.INTERRUPTION_FILTER_CHANGED"
* ReceiverList{9a99ae2 2142 com.android.phone/1001/u0 remote:6e137ad}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=0
Filter #0: BroadcastFilter{733fe73}
Action: "android.telephony.action.SIM_CARD_STATE_CHANGED"
* ReceiverList{f8c005f 16251 com.google.android.gms.persistent/10010/u0 remote:9b200fe}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{f334aac}
Action: "com.google.gservices.intent.action.GSERVICES_CHANGED"
Action: "com.google.android.gms.phenotype.COMMITTED"
* ReceiverList{225ab59 18664 com.google.android.googlequicksearchbox:interactor/10037/u0 remote:aeff3a0}
app=18664:com.google.android.googlequicksearchbox:interactor/u0a37 pid=18664 uid=10037 user=0
Filter #0: BroadcastFilter{415431e}
Action: "com.google.android.googlequicksearchbox.CHANGE_VOICESEARCH_LANGUAGE"
Action: "com.google.android.googlequicksearchbox.interactor.RESTART_RECOGNITION"
Action: "com.google.android.googlequicksearchbox.interactor.BOOT_COMPLETED"
Action: "com.google.android.googlequicksearchbox.FROM_ANY_SCREEN_INTERACTOR_FLAG_CHANGED"
Action: "com.google.android.googlequicksearchbox.ACTION_UPDATE_HOTWORD_INFORMATION_AND_HOTWORD_STATE"
Action: "com.google.android.googlequicksearchbox.interactor.HOTWORD_MODEL_DOWNLOADED"
Action: "com.google.android.googlequicksearchbox.FROM_ANY_SCREEN_PREFERENCE_CHANGED"
Action: "com.google.android.googlequicksearchbox.START_DSP_HOTWORD"
Action: "com.google.android.googlequicksearchbox.STOP_DSP_HOTWORD"
Action: "com.google.android.voiceinteraction.NEW_SPEAKER_ID_MODEL_AVAILABLE"
requiredPermission=android.permission.MANAGE_VOICE_KEYPHRASES
* ReceiverList{89f5b5d 18616 com.google.android.googlequicksearchbox:search/10037/u0 remote:86a1134}
app=18616:com.google.android.googlequicksearchbox:search/u0a37 pid=18616 uid=10037 user=0
Filter #0: BroadcastFilter{9e6cd2}
* ReceiverList{a29c3e8 2142 com.android.phone/1001/u0 remote:86fe90b}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=0
Filter #0: BroadcastFilter{ae94a01}
Action: "com.android.internal.telephony.OPEN_DEFAULT_SMS_APP"
* ReceiverList{8c9493a 1935 system/1000/u0 local:103c865}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{ee009eb}
Action: "android.intent.action.BOOT_COMPLETED"
* ReceiverList{5aa5007 21770 com.android.vending/10032/u0 remote:72ea646}
app=21770:com.android.vending/u0a32 pid=21770 uid=10032 user=0
Filter #0: BroadcastFilter{a506534}
Action: "android.intent.action.APPLICATION_RESTRICTIONS_CHANGED"
* ReceiverList{5c05941 22602 com.google.android.apps.wallpaper/10038/u0 remote:1428828}
app=22602:com.google.android.apps.wallpaper/u0a38 pid=22602 uid=10038 user=0
Filter #0: BroadcastFilter{75dfee6}
Action: "com.google.gservices.intent.action.GSERVICES_CHANGED"
* ReceiverList{fec0c66 1935 system/1000/u-1 local:db02cc1}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{2c8ba7}
Action: "android.intent.action.LOCALE_CHANGED"
mPriority=1000, mOrder=0, mHasPartialTypes=false
* ReceiverList{39fb02 2067 com.android.systemui/10028/u0 remote:d34844d}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{8b6ac13}
Action: "android.intent.action.USER_SWITCHED"
Action: "android.intent.action.USER_UNLOCKED"
* ReceiverList{9a02d00 16251 com.google.android.gms.persistent/10010/u0 remote:6f86783}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{4e95939}
Action: "android.os.action.POWER_SAVE_MODE_CHANGED"
Action: "android.intent.action.SCREEN_OFF"
Action: "android.intent.action.SCREEN_ON"
* ReceiverList{a5b7008 16251 com.google.android.gms.persistent/10010/u0 remote:82a31ab}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{34153a1}
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_RESTARTED"
Action: "android.intent.action.QUERY_PACKAGE_RESTART"
Scheme: "package"
Filter #1: BroadcastFilter{9d1d9c6}
Action: "com.google.android.gms.INSTANT_APP_STOPPED"
requiredPermission=com.google.android.gms.permission.INTERNAL_BROADCAST
* ReceiverList{1f6272c 2067 com.android.systemui/10028/u-1 remote:f567edf}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=-1
Filter #0: BroadcastFilter{dc645f5}
Action: "android.intent.action.SCREEN_OFF"
Action: "android.intent.action.SCREEN_ON"
Action: "android.intent.action.USER_SWITCHED"
* ReceiverList{773b8ee 1935 system/1000/u0 local:fe01669}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{4b2718f}
Action: "android.intent.action.QUERY_PACKAGE_RESTART"
Scheme: "package"
* ReceiverList{425d8d1 1935 system/1000/u0 local:a770bf8}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{ed32f36}
Action: "android.net.wifi.WIFI_STATE_CHANGED"
* ReceiverList{49273f5 22556 com.google.android.apps.maps/10067/u0 remote:cbe4d2c}
app=22556:com.google.android.apps.maps/u0a67 pid=22556 uid=10067 user=0
Filter #0: BroadcastFilter{62e358a}
Action: "android.net.conn.CONNECTIVITY_CHANGE"
* ReceiverList{38a45ba 21770 com.android.vending/10032/u0 remote:f70e6e5}
app=21770:com.android.vending/u0a32 pid=21770 uid=10032 user=0
Filter #0: BroadcastFilter{afa8c6b}
Action: "com.google.gservices.intent.action.GSERVICES_CHANGED"
* ReceiverList{f1dcc41 16251 com.google.android.gms.persistent/10010/u0 remote:6b1e728}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{f31f5e6}
Action: "android.intent.action.USER_ADDED"
Action: "android.intent.action.USER_REMOVED"
Action: "android.intent.action.USER_STARTING"
Action: "android.intent.action.USER_STOPPED"
Action: "android.intent.action.USER_STOPPING"
Action: "android.intent.action.USER_SWITCHED"
* ReceiverList{7b65426 16251 com.google.android.gms.persistent/10010/u0 remote:a1bbb81}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{1a99867}
Action: "android.intent.action.USER_SWITCHED"
* ReceiverList{d0b9dfa 1935 system/1000/u-1 local:1bb7825}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{1709fab}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_DATA_CLEARED"
Scheme: "package"
Filter #1: BroadcastFilter{6dc4608}
Action: "android.intent.action.LOCALE_CHANGED"
* ReceiverList{c039c72 1935 system/1000/u-1 local:4e3057d}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{96088c3}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.QUERY_PACKAGE_RESTART"
Action: "android.intent.action.PACKAGE_RESTARTED"
Action: "android.intent.action.PACKAGE_DATA_CLEARED"
Scheme: "package"
Filter #1: BroadcastFilter{197d540}
Action: "android.intent.action.UID_REMOVED"
Action: "android.intent.action.USER_STOPPED"
Action: "android.intent.action.PACKAGES_SUSPENDED"
Action: "android.intent.action.PACKAGES_UNSUSPENDED"
Filter #2: BroadcastFilter{1f7c79}
Action: "android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE"
Action: "android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE"
* ReceiverList{c851c43 1935 system/1000/u0 local:4584df2}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{21ba2c0}
Action: "com.android.server.wifi.ConnectToNetworkNotification.USER_DISMISSED_NOTIFICATION"
Action: "com.android.server.wifi.ConnectToNetworkNotification.CONNECT_TO_NETWORK"
Action: "com.android.server.wifi.ConnectToNetworkNotification.PICK_WIFI_NETWORK"
Action: "com.android.server.wifi.ConnectToNetworkNotification.PICK_NETWORK_AFTER_FAILURE"
* ReceiverList{a06a1a9 2142 com.android.phone/1001/u0 remote:89c9130}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=0
Filter #0: BroadcastFilter{bca832e}
Action: "android.intent.action.LOCALE_CHANGED"
Filter #1: BroadcastFilter{cc60ecf}
Action: "android.intent.action.ACTION_RADIO_OFF"
Filter #2: BroadcastFilter{bf1905c}
Action: "android.telephony.action.CARRIER_CONFIG_CHANGED"
* ReceiverList{61f280b 2067 com.android.systemui/10028/u0 remote:a778bda}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{cf996e8}
Action: "android.intent.action.TIME_TICK"
Action: "android.intent.action.TIME_SET"
Action: "android.intent.action.TIMEZONE_CHANGED"
Action: "android.intent.action.LOCALE_CHANGED"
* ReceiverList{8fa03c1 1935 system/1000/u-1 local:d064ca8}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{7de9766}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.PACKAGE_REMOVED"
Scheme: "package"
* ReceiverList{30bde03 18616 com.google.android.googlequicksearchbox:search/10037/u0 remote:f1dfeb2}
app=18616:com.google.android.googlequicksearchbox:search/u0a37 pid=18616 uid=10037 user=0
Filter #0: BroadcastFilter{304a180}
Action: "com.google.android.apps.gmm.NAVIGATION_STATE"
* ReceiverList{545df04 2067 com.android.systemui/10028/u0 remote:6a54f17}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{9cb5ced}
Action: "com.android.settingslib.action.REGISTER_SLICE_RECEIVER"
Action: "com.android.settingslib.action.UNREGISTER_SLICE_RECEIVER"
* ReceiverList{f7b665b 21770 com.android.vending/10032/u0 remote:df916a}
app=21770:com.android.vending/u0a32 pid=21770 uid=10032 user=0
Filter #0: BroadcastFilter{61c7ef8}
Action: "android.net.conn.CONNECTIVITY_CHANGE"
* ReceiverList{a1eb07f 16251 com.google.android.gms.persistent/10010/u0 remote:45edd9e}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{a12084c}
Action: "com.google.android.gms.auth.GOOGLE_ACCOUNT_CHANGE"
Category: "com.google.android.gms.auth.category.ACCOUNT_ADDED"
* ReceiverList{7a917e2 16251 com.google.android.gms.persistent/10010/u0 remote:96c88ad}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{3123773}
Action: "com.google.android.location.internal.server.ACTION_RESTARTED"
* ReceiverList{121a409 2067 com.android.systemui/10028/u0 remote:8d2a110}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{343c60e}
Action: "com.android.systemui.action.FINISH_WIZARD"
requiredPermission=android.permission.MOUNT_UNMOUNT_FILESYSTEMS
* ReceiverList{bdf10e 1935 system/1000/u0 local:acd9b09}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{f26172f}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.QUERY_PACKAGE_RESTART"
Action: "android.intent.action.PACKAGE_RESTARTED"
Action: "android.intent.action.PACKAGE_DATA_CLEARED"
Scheme: "package"
Filter #1: BroadcastFilter{ba2613c}
Action: "android.intent.action.UID_REMOVED"
Action: "android.intent.action.USER_STOPPED"
Action: "android.intent.action.PACKAGES_SUSPENDED"
Action: "android.intent.action.PACKAGES_UNSUSPENDED"
* ReceiverList{a3220d8 16251 com.google.android.gms.persistent/10010/u0 remote:27ce3bb}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{c69fc31}
Action: "com.google.android.places.PLATFORM_KEY_CHANGED_ACTION"
requiredPermission=com.google.android.gms.permission.INTERNAL_BROADCAST
* ReceiverList{108048f 18616 com.google.android.googlequicksearchbox:search/10037/u0 remote:e27b7ee}
app=18616:com.google.android.googlequicksearchbox:search/u0a37 pid=18616 uid=10037 user=0
Filter #0: BroadcastFilter{767b31c}
Action: "android.net.conn.CONNECTIVITY_CHANGE"
* ReceiverList{c5659a0 2142 com.android.phone/1001/u-1 remote:36ee2a3}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=-1
Filter #0: BroadcastFilter{1d31959}
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_ADDED"
Scheme: "package"
* ReceiverList{95d5c0 1935 system/1000/u0 local:a8c3b43}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{96cb2f9}
Action: "android.hardware.display.action.WIFI_DISPLAY_STATUS_CHANGED"
* ReceiverList{de012f2 1935 system/1000/u0 local:42545fd}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{759fd43}
* ReceiverList{73a4f37 1935 system/1000/u0 local:def6436}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{380aca4}
Action: "NotificationManagerService.TIMEOUT"
Scheme: "timeout"
* ReceiverList{e60f1c2 16251 com.google.android.gms.persistent/10010/u0 remote:7d61e0d}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{6fc3bd3}
Action: "android.intent.action.LOCALE_CHANGED"
* ReceiverList{bab421 7270 com.android.settings/1000/u0 remote:3540288}
app=7270:com.android.settings/1000 pid=7270 uid=1000 user=0
Filter #0: BroadcastFilter{4e6f046}
Action: "android.media.VOLUME_CHANGED_ACTION"
* ReceiverList{b951104 16251 com.google.android.gms.persistent/10010/u0 remote:8ca0917}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{6bfa6ed}
Action: "android.intent.action.ACTION_POWER_CONNECTED"
Action: "android.intent.action.ACTION_POWER_DISCONNECTED"
Action: "android.intent.action.SCREEN_OFF"
Action: "android.intent.action.SCREEN_ON"
Filter #1: BroadcastFilter{cc47922}
Action: "android.intent.action.USER_FOREGROUND"
Action: "android.intent.action.USER_BACKGROUND"
Filter #2: BroadcastFilter{edc1fb3}
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_DATA_CLEARED"
Scheme: "package"
Filter #3: BroadcastFilter{cd43970}
Action: "com.google.android.gms.INSTANT_APP_STOPPED"
requiredPermission=com.google.android.gms.permission.INTERNAL_BROADCAST
Filter #4: BroadcastFilter{c7cc4e9}
Action: "com.google.android.location.activity.DEEP_STILL_MODE_ENABLED"
Action: "com.google.android.location.activity.DEEP_STILL_MODE_DISABLED"
* ReceiverList{8d75c9b 16251 com.google.android.gms.persistent/10010/u0 remote:17478aa}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{ccbd838}
Action: "org.openyolo.credential"
Category: "com.google.bbq.QUERY"
Filter #1: BroadcastFilter{6f97576}
Action: "android.bluetooth.adapter.action.STATE_CHANGED"
Filter #2: BroadcastFilter{9452777}
Action: "android.intent.action.INTENT_FILTER_NEEDS_VERIFICATION"
Type: "application/vnd.android.package-archive"
Filter #3: BroadcastFilter{2ff7302}
Action: "android.location.PROVIDERS_CHANGED"
Filter #4: BroadcastFilter{15ac413}
Action: "android.intent.action.DROPBOX_ENTRY_ADDED"
Filter #5: BroadcastFilter{5157650}
Action: "android.app.action.STATSD_STARTED"
Action: "android.app.action.SYSTEM_UPDATE_POLICY_CHANGED"
Action: "android.bluetooth.adapter.action.STATE_CHANGED"
Action: "android.bluetooth.device.action.ALIAS_CHANGED"
Action: "android.bluetooth.device.action.BATTERY_LEVEL_CHANGED"
Action: "android.bluetooth.device.action.BOND_STATE_CHANGED"
Action: "android.bluetooth.device.action.UUID"
Action: "android.bluetooth.headset.profile.action.CONNECTION_STATE_CHANGED"
Action: "android.intent.action.ACTION_POWER_CONNECTED"
Action: "android.intent.action.ACTION_POWER_DISCONNECTED"
Action: "android.intent.action.DATE_CHANGED"
Action: "android.intent.action.DEVICE_STORAGE_LOW"
Action: "android.intent.action.DEVICE_STORAGE_OK"
Action: "android.intent.action.DROPBOX_ENTRY_ADDED"
Action: "android.intent.action.USER_PRESENT"
Action: "android.location.MODE_CHANGED"
Action: "android.location.PROVIDERS_CHANGED"
Action: "android.net.conn.NETWORK_CONDITIONS_MEASURED"
Action: "android.net.wifi.WIFI_AP_STATE_CHANGED"
Action: "android.os.UpdateLock.UPDATE_LOCK_CHANGED"
Action: "android.security.action.RECOVERABLE_KEYSTORE_SNAPSHOT"
Filter #6: BroadcastFilter{60ff049}
Action: "com.google.android.gms.gcm.nts.ACTION_SCHEDULE"
Action: "com.google.android.gms.gcm.ACTION_TRIGGER_TASK"
Filter #7: BroadcastFilter{7238e6f}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_REPLACED"
Scheme: "package"
Filter #8: BroadcastFilter{863a77c}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_REMOVED"
Scheme: "package"
Filter #9: BroadcastFilter{bf4605a}
Action: "android.server.checkin.CHECKIN"
Filter #10: BroadcastFilter{ae76a14}
Action: "android.intent.action.DOWNLOAD_COMPLETE"
Filter #11: BroadcastFilter{65272bd}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_REPLACED"
Scheme: "package"
Filter #12: BroadcastFilter{b3ea0b2}
Action: "com.google.android.gms.auth.authzen.REGISTER_NOW"
Filter #13: BroadcastFilter{a4cd803}
Action: "android.app.action.SYSTEM_UPDATE_POLICY_CHANGED"
Action: "com.google.android.gms.auth.FRP_CONFIG_CHANGED"
Action: "thunderbird.intent.action.MOCK_NEW_OUTGOING_CALL"
Action: "thunderbird.intent.action.MOCK_NEW_OUTGOING_SMS"
Action: "com.android.launcher3.action.LAUNCH"
Action: "android.provider.Contacts.DATABASE_CREATED"
Action: "com.google.android.finsky.action.CONTENT_FILTERS_CHANGED"
Action: "com.google.iid.TOKEN_REQUEST"
Action: "com.google.android.gms.common.images.LOAD_IMAGE"
Action: "com.google.vr.powerpolicy.action.ACTION_POLICY_CHANGED"
Action: "com.google.android.gms.fitness.SEEDING"
Action: "com.google.android.gms.fitness.wearables.START_WEARABLE_SYNC"
Action: "com.google.android.gms.instantapps.INSTANT_APP_INSTALLED"
Action: "com.google.android.gms.instantapps.INSTANT_APP_UNINSTALLED"
Filter #14: BroadcastFilter{1db1380}
Action: "android.intent.action.ACTION_POWER_CONNECTED"
Filter #15: BroadcastFilter{f387db9}
Action: "android.intent.action.PROVIDER_CHANGED"
Scheme: "content"
Authority: "com.android.calendar": -1
Filter #16: BroadcastFilter{77215fe}
Action: "android.intent.action.GET_RESTRICTION_ENTRIES"
Filter #17: BroadcastFilter{ebaf15f}
Action: "android.intent.action.USER_PRESENT"
Filter #18: BroadcastFilter{99de7ac}
Action: "com.google.android.gms.location.reporting.SETTINGS_CHANGED"
Action: "com.google.android.gsf.settings.GoogleLocationSettings.UPDATE_LOCATION_SETTINGS"
Action: "com.google.android.location.internal.server.ACTION_RESTARTED"
requiredPermission=com.google.android.gms.permission.INTERNAL_BROADCAST
* ReceiverList{8c7447b 16251 com.google.android.gms.persistent/10010/u0 remote:5d5940a}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{5d7d298}
Action: "com.google.android.gms.common.config.devicedoctor.UPDATED"
requiredPermission=com.google.android.gms.permission.INTERNAL_BROADCAST
* ReceiverList{a077dca 2067 com.android.systemui/10028/u0 remote:4deb535}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{1c04b3b}
Action: "android.intent.action.BATTERY_CHANGED"
Action: "android.os.action.POWER_SAVE_MODE_CHANGED"
Action: "android.os.action.POWER_SAVE_MODE_CHANGING"
Action: "com.android.systemui.BATTERY_LEVEL_TEST"
* ReceiverList{f7b9eb0 21770 com.android.vending/10032/u0 remote:18d1f3}
app=21770:com.android.vending/u0a32 pid=21770 uid=10032 user=0
Filter #0: BroadcastFilter{e1c6129}
Action: "android.accounts.action.VISIBLE_ACCOUNTS_CHANGED"
Action: "android.intent.action.DEVICE_STORAGE_OK"
* ReceiverList{21dee2f 1935 system/1000/u0 local:de2c40e}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{caaec3c}
Action: "android.intent.action.LOCALE_CHANGED"
* ReceiverList{2037422 16251 com.google.android.gms.persistent/10010/u0 remote:c01aded}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{d26feb3}
Action: "android.intent.action.AIRPLANE_MODE"
Action: "android.intent.action.ACTION_POWER_CONNECTED"
Action: "android.intent.action.ACTION_POWER_DISCONNECTED"
Action: "android.intent.action.SCREEN_OFF"
Action: "android.intent.action.SCREEN_ON"
Action: "android.intent.action.USER_PRESENT"
Action: "com.google.android.location.ALARM_WAKEUP_LOCATOR"
Action: "com.google.android.location.ALARM_WAKEUP_ACTIVE_COLLECTOR"
Action: "com.google.android.location.ALARM_WAKEUP_BURST_COLLECTOR"
Action: "com.google.android.location.ALARM_WAKEUP_PASSIVE_COLLECTOR"
Action: "com.google.android.location.ALARM_WAKEUP_CACHE_UPDATER"
Action: "com.google.android.location.ALARM_WAKEUP_CALIBRATION_COLLECTOR"
Action: "com.google.android.location.ALARM_WAKEUP_SENSOR_COLLECTOR"
Action: "com.google.android.location.ALARM_WAKEUP_SENSOR_UPLOADER"
Action: "com.google.android.location.ALARM_WAKEUP_ACTIVITY_DETECTION"
Action: "com.google.android.location.ALARM_WAKEUP_IN_OUT_DOOR_COLLECTOR"
Action: "com.google.android.location.ALARM_WAKEUP_BURST_COLLECTION_TRIGGER"
Action: "com.google.android.location.ALARM_WAKEUP_VEHICLE_EXIT_DETECTOR"
Action: "com.google.android.gms.location.reporting.SETTINGS_CHANGED"
Action: "android.net.wifi.SCAN_RESULTS"
Action: "android.net.wifi.WIFI_STATE_CHANGED"
Action: "android.net.conn.CONNECTIVITY_CHANGE"
Action: "android.intent.action.USER_FOREGROUND"
Action: "android.intent.action.USER_BACKGROUND"
Action: "android.location.MODE_CHANGED"
Action: "android.os.action.DEVICE_IDLE_MODE_CHANGED"
Action: "android.app.action.NOTIFICATION_POLICY_ACCESS_GRANTED_CHANGED"
Action: "android.os.action.POWER_SAVE_MODE_CHANGED"
Action: "android.app.action.NEXT_ALARM_CLOCK_CHANGED"
Action: "android.bluetooth.device.action.ACL_CONNECTED"
Action: "android.bluetooth.device.action.ACL_DISCONNECTED"
Action: "android.bluetooth.device.action.ACL_DISCONNECT_REQUESTED"
Action: "com.google.android.location.internal.intent.action.NLP_TESTING"
Action: "android.bluetooth.adapter.action.STATE_CHANGED"
Action: "com.google.android.gms.phenotype.COMMITTED"
Action: "com.google.android.apps.gmm.NAVIGATION_STATE"
* ReceiverList{9e7a78 22556 com.google.android.apps.maps/10067/u0 remote:6221fdb}
app=22556:com.google.android.apps.maps/u0a67 pid=22556 uid=10067 user=0
Filter #0: BroadcastFilter{d9ae551}
Action: "android.intent.action.CONFIGURATION_CHANGED"
* ReceiverList{19f2a2f 1935 system/1000/u0 local:9f3700e}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{ef9783c}
Action: "android.intent.action.USER_REMOVED"
* ReceiverList{dda18ca 2067 com.android.systemui/10028/u-1 remote:e3edc35}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=-1
Filter #0: BroadcastFilter{fa64a3b}
Action: "com.google.android.ambientindication.action.AMBIENT_INDICATION_SHOW"
Action: "com.google.android.ambientindication.action.AMBIENT_INDICATION_HIDE"
requiredPermission=com.google.android.ambientindication.permission.AMBIENT_INDICATION
* ReceiverList{73672dc 1935 system/1000/u0 local:95eeb4f}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{b561fe5}
Action: "android.intent.action.AIRPLANE_MODE"
* ReceiverList{593d643 2067 com.android.systemui/10028/u0 remote:5e5aff2}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{60cd4c0}
Action: "android.intent.action.TIME_TICK"
* ReceiverList{75832e3 16251 com.google.android.gms.persistent/10010/u0 remote:9051b12}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{ea104e0}
Action: "android.intent.action.USER_SWITCHED"
* ReceiverList{f8bbce3 21770 com.android.vending/10032/u0 remote:f088d12}
app=21770:com.android.vending/u0a32 pid=21770 uid=10032 user=0
Filter #0: BroadcastFilter{c9ec6e0}
Action: "com.google.android.gms.car.CONNECTED"
Action: "com.google.android.gms.car.DISCONNECTED"
requiredPermission=com.google.android.gms.permission.CAR
* ReceiverList{c71cb39 3111 com.google.android.apps.nexuslauncher/10039/u0 remote:51b2700}
app=3111:com.google.android.apps.nexuslauncher/u0a39 pid=3111 uid=10039 user=0
Filter #0: BroadcastFilter{f75157e}
Action: "android.intent.action.DATE_CHANGED"
Action: "android.intent.action.TIME_SET"
Action: "android.intent.action.TIMEZONE_CHANGED"
* ReceiverList{328e9f1 1935 system/1000/u0 local:7852d98}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{11939d6}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.PACKAGE_REPLACED"
Action: "android.intent.action.PACKAGE_RESTARTED"
Scheme: "package"
* ReceiverList{47cba0c 2142 com.android.phone/1001/u0 remote:b22113f}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=0
Filter #0: BroadcastFilter{b130f55}
Action: "android.telecom.action.CURRENT_TTY_MODE_CHANGED"
Action: "android.telecom.action.TTY_PREFERRED_MODE_CHANGED"
* ReceiverList{3952f18 16319 com.google.android.gms/10010/u0 remote:e642fb}
app=16319:com.google.android.gms/u0a10 pid=16319 uid=10010 user=0
Filter #0: BroadcastFilter{f6e8d71}
Action: "android.intent.action.PROXY_CHANGE"
* ReceiverList{39cd0f5 1935 system/1000/u0 local:433fe2c}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{3edce8a}
Action: "com.android.server.NetworkTimeUpdateService.action.POLL"
* ReceiverList{4012896 16251 com.google.android.gms.persistent/10010/u0 remote:9945bb1}
app=16251:com.google.android.gms.persistent/u0a10 pid=16251 uid=10010 user=0
Filter #0: BroadcastFilter{8e02c17}
Action: "android.net.wifi.SCAN_RESULTS"
* ReceiverList{7aab814 2067 com.android.systemui/10028/u0 remote:840a267}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{b3ea8bd}
Action: "android.intent.action.WALLPAPER_CHANGED"
* ReceiverList{cb30c58 1935 system/1000/u-1 local:7084d3b}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{a0f41b1}
Action: "android.intent.action.USER_SWITCHED"
Action: "android.intent.action.USER_UNLOCKED"
* ReceiverList{fa22791 1935 system/1000/u-1 local:78c5db8}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{b3f36f6}
Action: "android.intent.action.PACKAGE_ADDED"
Action: "android.intent.action.PACKAGE_REMOVED"
Action: "android.intent.action.PACKAGE_CHANGED"
Action: "android.intent.action.QUERY_PACKAGE_RESTART"
Action: "android.intent.action.PACKAGE_RESTARTED"
Action: "android.intent.action.PACKAGE_DATA_CLEARED"
Scheme: "package"
Filter #1: BroadcastFilter{4ed8af7}
Action: "android.intent.action.UID_REMOVED"
Action: "android.intent.action.USER_STOPPED"
Action: "android.intent.action.PACKAGES_SUSPENDED"
Action: "android.intent.action.PACKAGES_UNSUSPENDED"
Filter #2: BroadcastFilter{b859d64}
Action: "android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE"
Action: "android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE"
* ReceiverList{9e038e 1935 system/1000/u0 local:db06789}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{630f7af}
Action: "android.intent.action.ACTION_SHUTDOWN"
Action: "android.intent.action.ACTION_POWER_CONNECTED"
Action: "android.intent.action.REBOOT"
* ReceiverList{3328278 1935 system/1000/u-1 local:5e147db}
app=1935:system/1000 pid=1935 uid=1000 user=-1
Filter #0: BroadcastFilter{1124d51}
Action: "android.bluetooth.a2dp.profile.action.ACTIVE_DEVICE_CHANGED"
* ReceiverList{1b84b0a 1935 system/1000/u0 local:d496f75}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{6112f7b}
Action: "android.intent.action.USER_REMOVED"
Action: "android.intent.action.BATTERY_CHANGED"
* ReceiverList{16c0c58 18616 com.google.android.googlequicksearchbox:search/10037/u0 remote:7054d3b}
app=18616:com.google.android.googlequicksearchbox:search/u0a37 pid=18616 uid=10037 user=0
Filter #0: BroadcastFilter{ad441b1}
Action: "com.google.android.chimera.MODULE_CONFIGURATION_CHANGED"
requiredPermission=com.google.android.gms.chimera.permission.CONFIG_CHANGE
* ReceiverList{dfd32b6 21036 com.google.android.apps.messaging/10068/u0 remote:86fba51}
app=21036:com.google.android.apps.messaging/u0a68 pid=21036 uid=10068 user=0
Filter #0: BroadcastFilter{9063bb7}
Action: "com.google.gservices.intent.action.GSERVICES_CHANGED"
* ReceiverList{d5aece9 2067 com.android.systemui/10028/u-1 remote:b320170}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=-1
Filter #0: BroadcastFilter{91c0d6e}
Action: "android.provider.Contacts.PROFILE_CHANGED"
Action: "android.intent.action.USER_INFO_CHANGED"
* ReceiverList{8b5de9f 3111 com.google.android.apps.nexuslauncher/10039/u0 remote:27b703e}
app=3111:com.google.android.apps.nexuslauncher/u0a39 pid=3111 uid=10039 user=0
Filter #0: BroadcastFilter{d3e6bec}
Action: "android.intent.action.WALLPAPER_CHANGED"
* ReceiverList{c29429b 2142 com.android.phone/1001/u0 remote:4e636aa}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=0
Filter #0: BroadcastFilter{ebec638}
Action: "android.intent.action.LOCALE_CHANGED"
Action: "android.intent.action.SIM_STATE_CHANGED"
* ReceiverList{c7d803f 22348 com.google.android.calendar/10056/u0 remote:e3c145e}
app=22348:com.google.android.calendar/u0a56 pid=22348 uid=10056 user=0
Filter #0: BroadcastFilter{e3cfd0c}
Action: "android.intent.action.TIME_SET"
Action: "android.intent.action.DATE_CHANGED"
Action: "android.intent.action.TIMEZONE_CHANGED"
Action: "android.intent.action.LOCALE_CHANGED"
* ReceiverList{f4099fd 3111 com.google.android.apps.nexuslauncher/10039/u0 remote:c24a654}
app=3111:com.google.android.apps.nexuslauncher/u0a39 pid=3111 uid=10039 user=0
Filter #0: BroadcastFilter{41ad6f2}
Action: "android.intent.action.ACTION_PREFERRED_ACTIVITY_CHANGED"
* ReceiverList{d6bce20 1935 system/1000/u0 local:3575923}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{c74b3d9}
Action: "android.intent.action.USER_REMOVED"
Action: "android.intent.action.USER_STOPPED"
* ReceiverList{bb12bd0 1935 system/1000/u0 local:5e5df93}
app=1935:system/1000 pid=1935 uid=1000 user=0
Filter #0: BroadcastFilter{8a937c9}
Action: "com.android.server.usb.ACTION_OPEN_IN_APPS"
* ReceiverList{8d8c051 2067 com.android.systemui/10028/u0 remote:b0ee178}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{e88c0b6}
Action: "android.intent.action.WALLPAPER_CHANGED"
* ReceiverList{67c0b3e 21036 com.google.android.apps.messaging/10068/u0 remote:d87fff9}
app=21036:com.google.android.apps.messaging/u0a68 pid=21036 uid=10068 user=0
Filter #0: BroadcastFilter{e31dd9f}
Action: "android.intent.action.SIM_STATE_CHANGED"
* ReceiverList{c09fc22 2067 com.android.systemui/10028/u0 remote:76d55ed}
app=2067:com.android.systemui/u0a28 pid=2067 uid=10028 user=0
Filter #0: BroadcastFilter{f5ee6b3}
Action: "com.google.android.systemui.OPA_ENABLED"
Filter #1: BroadcastFilter{724f470}
Action: "com.google.android.systemui.OPA_USER_ENABLED"
* ReceiverList{22dba93 2142 com.android.phone/1001/u0 remote:1023382}
app=2142:com.android.phone/1001 pid=2142 uid=1001 user=0
Filter #0: BroadcastFilter{d036ad0}
Action: "android.intent.action.USER_UNLOCKED"
* ReceiverList{a3dd52c 1935 system/1000/u0 local:e5824df}