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/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.java416 boolean ordered, boolean sticky, int sendingUser) throws RemoteException {
422 data, extras, ordered, sticky, sendingUser, app.repProcState);
425 sticky, sendingUser);
414 performReceiveLocked(ProcessRecord app, IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DActivityManagerService.java676 * State of all active sticky broadcasts per user. Keys are the action of the
677 * sticky Intent, values are an ArrayList of all broadcasted intents with
679 * by the user ID the sticky is for, and can include UserHandle.USER_ALL
4670 // Remove all sticky broadcasts from this user.
5180 boolean sticky, int sendingUser) {
9245 boolean sticky, int sendingUser) {
9415 Bundle extras, boolean ordered, boolean sticky, int sendingUser)
13040 // Look for any matching sticky broadcasts...
13057 // The first sticky in the list is returned directly back to
13059 Intent sticky
13262 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
13687 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
13709 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.java391 boolean sticky = data.readInt() != 0;
395 resultCode, dataStr, extras, ordered, sticky, sendingUser, processState);
1047 boolean sticky, int sendingUser, int processState) throws RemoteException {
1056 data.writeInt(sticky ? 1 : 0);
1045 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DLoadedApk.java684 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
693 ordered, sticky, sendingUser);
729 boolean ordered, boolean sticky, int sendingUser) {
732 ordered, sticky, mIIntentReceiver.asBinder(), sendingUser);
844 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
851 sticky, sendingUser);
683 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
728 Args(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, int sendingUser) argument
843 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DIApplicationThread.java113 boolean sticky, int sendingUser, int processState) throws RemoteException;
111 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DActivityManagerNative.java91 * Convenience for sending a sticky broadcast. For internal use only.
353 boolean sticky = data.readInt() != 0;
357 serialized, sticky, userId);
2355 boolean sticky, int userId) throws RemoteException
2370 data.writeInt(sticky ? 1 : 0);
2351 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.java344 boolean ordered, boolean sticky, IBinder token, int sendingUser) {
345 super(resultCode, resultData, resultExtras, TYPE_COMPONENT, ordered, sticky,
814 boolean sticky, int sendingUser, int processState) throws RemoteException {
817 sticky, sendingUser);
343 ReceiverData(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, IBinder token, int sendingUser) argument
812 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DIActivityManager.java93 int appOp, boolean serialized, boolean sticky, int userId) throws RemoteException;
90 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.java1449 boolean ordered, boolean sticky, int sendingUser) {
1448 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 280 milliseconds