Lines Matching refs:BroadcastReceiver
5 …consolidates most `BroadcastReceiver` that exist in SystemUI by merging the `IntentFilter` and sub…
9 Having a single `BroadcastReceiver` in SystemUI improves the multi dispatch situation that occurs w…
10 * All supported `BroadcastReceiver` will be aggregated into one single receiver per user.
11 …or `USER_ALL`). This is meaninful for actions that are filtered by `BroadcastReceiver` in multiple…
18 The dispatcher supports `BroadcastReceiver` dynamic subscriptions in the following cases:
33 If introducing a new `BroadcastReceiver` (not declared in `AndroidManifest`) that satisfies the con…
41 …broadcasts that match the filter will be sent to the just registered `BroadcastReceiver#onReceive`.
47 * Do not use the dispatcher to obtain the last broadcast (by passing a null `BroadcastReceiver`). `…
64 * @param executor An executor to dispatch [BroadcastReceiver.onReceive]. Pass null to use an
75 receiver: BroadcastReceiver,
85 In the same way as with `Context`, subscribing the same `BroadcastReceiver` for the same user using…
89 There are two methods to unsubscribe a given `BroadcastReceiver`. One that will remove it for all u…
99 fun unregisterReceiver(BroadcastReceiver)
107 fun unregisterReceiverForUser(BroadcastReceiver, UserHandle)
110 Unregistering can be done even if the `BroadcastReceiver` has never been registered with `Broadcast…