Lines Matching defs:receiver

349      * <li> <p>If used from an Activity context, the receiver is being registered
354 * to register a receiver that is static (global to the process, not
357 * <li> <p>If used from the Context returned here, the receiver is being
359 * it will never be unregistered for you. This is necessary if the receiver
1621 * a receiver must hold in order to receive your broadcast.
1646 * @param receiverPermissions Array of names of permissions that a receiver must hold
1675 * a receiver must hold in order to receive your broadcast.
1712 * a receiver must hold in order to receive your broadcast.
1727 * treated as a final receiver at the end of the broadcast -- its
1742 * a receiver must hold in order to receive your broadcast.
1745 * receiver of the broadcast.
1772 * treated as a final receiver at the end of the broadcast -- its
1788 * a receiver must hold in order to receive your broadcast.
1793 * receiver of the broadcast.
1849 * a receiver must hold in order to receive your broadcast.
1868 * a receiver must hold in order to receive your broadcast.
1893 * a receiver must hold in order to receive your broadcast.
1896 * receiver of the broadcast.
1968 * treated as a final receiver at the end of the broadcast -- its
1991 * receiver of the broadcast.
2079 * receiver of the broadcast.
2124 * <var>receiver</var> will be called with any broadcast Intent that
2131 * <strong>and</strong> sent to your <var>receiver</var> as if it had just
2135 * in which case each of these will be sent to <var>receiver</var>. In
2140 * supply null for your <var>receiver</var>. In this case, no receiver is
2160 * @param receiver The BroadcastReceiver to handle the broadcast.
2171 public abstract Intent registerReceiver(@Nullable BroadcastReceiver receiver,
2179 * broadcast intents to your receiver, or have the receiver run in
2190 * @param receiver The BroadcastReceiver to handle the broadcast.
2206 public abstract Intent registerReceiver(BroadcastReceiver receiver,
2213 * but for a specific user. This receiver will receiver broadcasts that
2218 * @param receiver The BroadcastReceiver to handle the broadcast.
2235 public abstract Intent registerReceiverAsUser(BroadcastReceiver receiver,
2244 * @param receiver The BroadcastReceiver to unregister.
2248 public abstract void unregisterReceiver(BroadcastReceiver receiver);