Searched defs:sticky (Results 1 - 15 of 15) sorted by relevance

/frameworks/compile/libbcc/runtime/lib/i386/
H A Dfloatundisf.S62 sticky: .quad 0x0000000000000000 label
67 #define STICKY sticky-0b(%ecx,%eax,8)
/frameworks/base/core/java/android/content/
H A DIntentSender.java118 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {
117 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky, int sendingUser) argument
H A DBroadcastReceiver.java250 int type, boolean ordered, boolean sticky, IBinder token, int userId) {
256 mInitialStickyHint = sticky;
437 // Note that we don't assert when receiving the initial sticky value,
713 * value of a sticky broadcast -- that is, the value that was last
714 * broadcast and is currently held in the sticky cache, so this is
775 // Note that we don't assert when receiving the initial sticky value,
249 PendingResult(int resultCode, String resultData, Bundle resultExtras, int type, boolean ordered, boolean sticky, IBinder token, int userId) argument
/frameworks/base/services/java/com/android/server/am/
H A DBroadcastRecord.java45 final boolean sticky; // originated from existing sticky data? field in class:BroadcastRecord
46 final boolean initialSticky; // initial broadcast from register to sticky?
117 if (resultAbort || ordered || sticky || initialSticky) {
120 pw.print(" sticky="); pw.print(sticky);
185 sticky = _sticky;
H A DBroadcastQueue.java367 boolean ordered, boolean sticky, int sendingUser) throws RemoteException {
373 data, extras, ordered, sticky, sendingUser);
376 sticky, sendingUser);
365 performReceiveLocked(ProcessRecord app, IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DActivityManagerService.java550 * State of all active sticky broadcasts per user. Keys are the action of the
551 * sticky Intent, values are an ArrayList of all broadcasted intents with
553 * by the user ID the sticky is for, and can include UserHandle.USER_ALL
3916 // Remove all sticky broadcasts from this user.
7757 boolean sticky, int sendingUser) {
7921 Bundle extras, boolean ordered, boolean sticky, int sendingUser)
11344 // Look for any matching sticky broadcasts...
11361 // The first sticky in the list is returned directly back to
11363 Intent sticky = allSticky != null ? (Intent)allSticky.get(0) : null;
11366 + ": " + sticky);
11567 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, int userId) argument
11955 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky, int userId) argument
11977 broadcastIntentInPackage(String packageName, int uid, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky, int userId) argument
[all...]
/frameworks/base/core/java/android/app/
H A DPendingIntent.java179 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {
178 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky, int sendingUser) argument
H A DApplicationThreadNative.java381 boolean sticky = data.readInt() != 0;
384 resultCode, dataStr, extras, ordered, sticky, sendingUser);
998 boolean sticky, int sendingUser) throws RemoteException {
1007 data.writeInt(sticky ? 1 : 0);
996 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DLoadedApk.java674 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
683 ordered, sticky, sendingUser);
719 boolean ordered, boolean sticky, int sendingUser) {
722 ordered, sticky, mIIntentReceiver.asBinder(), sendingUser);
834 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
841 sticky, sendingUser);
673 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
718 Args(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, int sendingUser) argument
833 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DIApplicationThread.java110 boolean sticky, int sendingUser) throws RemoteException;
108 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DActivityManagerNative.java89 * Convenience for sending a sticky broadcast. For internal use only.
345 boolean sticky = data.readInt() != 0;
349 serialized, sticky, userId);
2126 boolean sticky, int userId) throws RemoteException
2140 data.writeInt(sticky ? 1 : 0);
2122 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky, int userId) argument
H A DIActivityManager.java88 boolean serialized, boolean sticky, int userId) throws RemoteException;
85 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, boolean serialized, boolean sticky, int userId) argument
H A DActivityThread.java353 boolean ordered, boolean sticky, IBinder token, int sendingUser) {
354 super(resultCode, resultData, resultExtras, TYPE_COMPONENT, ordered, sticky,
808 boolean sticky, int sendingUser) throws RemoteException {
810 sticky, sendingUser);
352 ReceiverData(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, IBinder token, int sendingUser) argument
806 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java1286 boolean ordered, boolean sticky, int sendingUser) throws RemoteException {
1285 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java250 /** 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) {

Completed in 996 milliseconds