/frameworks/compile/libbcc/runtime/lib/i386/ |
H A D | floatundisf.S | 62 sticky: .quad 0x0000000000000000 label 67 #define STICKY sticky-0b(%ecx,%eax,8)
|
/frameworks/base/core/java/android/content/ |
H A D | BroadcastReceiver.java | 249 int type, boolean ordered, boolean sticky, IBinder token) { 255 mInitialStickyHint = sticky; 430 // Note that we don't assert when receiving the initial sticky value, 702 * value of a sticky broadcast -- that is, the value that was last 703 * broadcast and is currently held in the sticky cache, so this is 759 // Note that we don't assert when receiving the initial sticky value, 248 PendingResult(int resultCode, String resultData, Bundle resultExtras, int type, boolean ordered, boolean sticky, IBinder token) argument
|
H A D | IntentSender.java | 117 String data, Bundle extras, boolean serialized, boolean sticky) { 116 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky) argument
|
/frameworks/base/services/java/com/android/server/am/ |
H A D | BroadcastRecord.java | 45 final boolean sticky; // originated from existing sticky data? field in class:BroadcastRecord 46 final boolean initialSticky; // initial broadcast from register to sticky? 83 if (sticky) { 117 if (resultAbort || ordered || sticky || initialSticky) { 120 pw.print(" sticky="); pw.print(sticky); 181 sticky = _sticky;
|
H A D | ActivityManagerService.java | 509 * State of all active sticky broadcasts. Keys are the action of the 510 * sticky Intent, values are an ArrayList of all broadcasted intents with 6877 boolean sticky) { 11930 // Look for any matching sticky broadcasts... 11941 // The first sticky in the list is returned directly back to 11943 Intent sticky = allSticky != null ? (Intent)allSticky.get(0) : null; 11946 + ": " + sticky); 11949 return sticky; 11964 return sticky; 11996 return sticky; 12057 broadcastIntentLocked(ProcessRecord callerApp, String callerPackage, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean ordered, boolean sticky, int callingPid, int callingUid) argument 12426 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky) argument 12447 broadcastIntentInPackage(String packageName, int uid, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky) argument 12745 performReceiveLocked(ProcessRecord app, IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky) argument [all...] |
/frameworks/base/core/java/android/app/ |
H A D | PendingIntent.java | 150 String data, Bundle extras, boolean serialized, boolean sticky) { 149 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky) argument
|
H A D | ApplicationThreadNative.java | 364 boolean sticky = data.readInt() != 0; 366 resultCode, dataStr, extras, ordered, sticky); 935 int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky) 945 data.writeInt(sticky ? 1 : 0); 934 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky) argument
|
H A D | IApplicationThread.java | 106 int resultCode, String data, Bundle extras, boolean ordered, boolean sticky) 105 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky) argument
|
H A D | LoadedApk.java | 645 String data, Bundle extras, boolean ordered, boolean sticky) { 654 ordered, sticky); 690 boolean ordered, boolean sticky) { 693 ordered, sticky, mIIntentReceiver.asBinder()); 802 String data, Bundle extras, boolean ordered, boolean sticky) { 808 Args args = new Args(intent, resultCode, data, extras, ordered, sticky); 644 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky) argument 689 Args(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky) argument 801 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky) argument
|
H A D | ActivityManagerNative.java | 87 * Convenience for sending a sticky broadcast. For internal use only. 308 boolean sticky = data.readInt() != 0; 311 serialized, sticky); 1822 boolean sticky) throws RemoteException 1836 data.writeInt(sticky ? 1 : 0); 1818 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky) argument
|
H A D | ActivityThread.java | 303 boolean ordered, boolean sticky, IBinder token) { 304 super(resultCode, resultData, resultExtras, TYPE_COMPONENT, ordered, sticky, token); 751 boolean sticky) throws RemoteException { 752 receiver.performReceive(intent, resultCode, dataStr, extras, ordered, sticky); 302 ReceiverData(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, IBinder token) argument 749 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky) argument
|
H A D | IActivityManager.java | 117 boolean serialized, boolean sticky) throws RemoteException; 114 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky) argument
|
/frameworks/base/cmds/am/src/com/android/commands/am/ |
H A D | Am.java | 1104 boolean sticky) { 1102 performReceive( Intent intent, int rc, String data, Bundle ext, boolean ord, boolean sticky) argument
|
/frameworks/base/core/java/android/inputmethodservice/ |
H A D | Keyboard.java | 250 /** Whether this key is sticky, i.e., a toggle key */ 251 public boolean sticky; field in class:Keyboard.Key 258 /** If this is a sticky key, is it on? */ 375 sticky = a.getBoolean( 404 * Changes the pressed state of the key. If it is a sticky key, it will also change the 411 if (sticky) { 488 if (sticky) {
|