Home | History | Annotate | Download | only in am

Lines Matching refs:sticky

619      * State of all active sticky broadcasts.  Keys are the action of the
620 * sticky Intent, values are an ArrayList of all broadcasted intents with
6146 boolean sticky) {
7672 pw.println(" Sticky broadcasts:");
7676 pw.print(" * Sticky action "); pw.print(ent.getKey());
9993 // Look for any matching sticky broadcasts...
10004 // The first sticky in the list is returned directly back to
10006 Intent sticky = allSticky != null ? (Intent)allSticky.get(0) : null;
10009 + ": " + sticky);
10012 return sticky;
10027 return sticky;
10059 return sticky;
10124 boolean ordered, boolean sticky, int callingPid, int callingUid) {
10128 TAG, (sticky ? "Broadcast sticky: ": "Broadcast: ") + intent
10227 // Add to the sticky list if requested.
10228 if (sticky) {
10232 String msg = "Permission Denial: broadcastIntent() requesting a sticky broadcast from pid="
10239 Slog.w(TAG, "Can't broadcast sticky intent " + intent
10245 "Sticky broadcasts can't target a specific component");
10256 // This sticky already exists, replace it.
10308 ordered, sticky, false);
10409 sticky, false);
10470 String requiredPermission, boolean serialized, boolean sticky) {
10482 sticky, callingPid, callingUid);
10491 String requiredPermission, boolean serialized, boolean sticky) {
10498 serialized, sticky, -1, uid);
10787 boolean ordered, boolean sticky) throws RemoteException {
10793 data, extras, ordered, sticky);
10795 receiver.performReceive(intent, resultCode, data, extras, ordered, sticky);