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

/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/core/java/com/android/server/am/
H A DBroadcastRecord.java47 final boolean sticky; // originated from existing sticky data? field in class:BroadcastRecord
48 final boolean initialSticky; // initial broadcast from register to sticky?
126 if (resultAbort || ordered || sticky || initialSticky) {
129 pw.print(" sticky="); pw.print(sticky);
198 sticky = _sticky;
H A DBroadcastQueue.java425 boolean ordered, boolean sticky, int sendingUser) throws RemoteException {
432 data, extras, ordered, sticky, sendingUser, app.repProcState);
439 sticky, sendingUser);
423 performReceiveLocked(ProcessRecord app, IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DActivityManagerService.java727 * State of all active sticky broadcasts per user. Keys are the action of the
728 * sticky Intent, values are an ArrayList of all broadcasted intents with
730 * by the user ID the sticky is for, and can include UserHandle.USER_ALL
5847 // Remove all sticky broadcasts from this user.
6374 boolean sticky, int sendingUser) {
11174 boolean sticky, int sendingUser) {
11385 Bundle extras, boolean ordered, boolean sticky, int sendingUser)
15194 // Look for any matching sticky broadcasts...
15211 // The first sticky in the list is returned directly back to
15213 Intent sticky
15422 broadcastIntentLocked(ProcessRecord callerApp, String callerPackage, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, int appOp, boolean ordered, boolean sticky, int callingPid, int callingUid, int userId) argument
15888 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, int appOp, boolean serialized, boolean sticky, int userId) argument
15910 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.java207 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {
206 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky, int sendingUser) argument
H A DApplicationThreadNative.java385 boolean sticky = data.readInt() != 0;
389 resultCode, dataStr, extras, ordered, sticky, sendingUser, processState);
1077 boolean sticky, int sendingUser, int processState) throws RemoteException {
1086 data.writeInt(sticky ? 1 : 0);
1075 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DIApplicationThread.java115 boolean sticky, int sendingUser, int processState) throws RemoteException;
113 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DLoadedApk.java777 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
786 ordered, sticky, sendingUser);
822 boolean ordered, boolean sticky, int sendingUser) {
825 ordered, sticky, mIIntentReceiver.asBinder(), sendingUser);
937 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
944 sticky, sendingUser);
776 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
821 Args(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, int sendingUser) argument
936 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DActivityManagerNative.java97 * Convenience for sending a sticky broadcast. For internal use only.
440 boolean sticky = data.readInt() != 0;
444 serialized, sticky, userId);
2772 boolean sticky, int userId) throws RemoteException
2787 data.writeInt(sticky ? 1 : 0);
2768 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, int appOp, boolean serialized, boolean sticky, int userId) argument
H A DActivityThread.java360 boolean ordered, boolean sticky, IBinder token, int sendingUser) {
361 super(resultCode, resultData, resultExtras, TYPE_COMPONENT, ordered, sticky,
861 boolean sticky, int sendingUser, int processState) throws RemoteException {
864 sticky, sendingUser);
359 ReceiverData(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, IBinder token, int sendingUser) argument
859 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DIActivityManager.java107 int appOp, boolean serialized, boolean sticky, int userId) throws RemoteException;
104 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String requiredPermission, int appOp, boolean serialized, boolean sticky, int userId) argument
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java1547 boolean ordered, boolean sticky, int sendingUser) {
1546 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 5247 milliseconds