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.java742 * State of all active sticky broadcasts per user. Keys are the action of the
743 * sticky Intent, values are an ArrayList of all broadcasted intents with
745 * by the user ID the sticky is for, and can include UserHandle.USER_ALL
5674 // Remove all sticky broadcasts from this user.
6233 boolean sticky, int sendingUser) {
11161 boolean sticky, int sendingUser) {
11374 Bundle extras, boolean ordered, boolean sticky, int sendingUser)
15598 // Look for any matching sticky broadcasts...
15615 // The first sticky in the list is returned directly back to
15617 Intent sticky
15826 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
16310 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
16332 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.java388 boolean sticky = data.readInt() != 0;
392 resultCode, dataStr, extras, ordered, sticky, sendingUser, processState);
1081 boolean sticky, int sendingUser, int processState) throws RemoteException {
1090 data.writeInt(sticky ? 1 : 0);
1079 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DIApplicationThread.java116 boolean sticky, int sendingUser, int processState) throws RemoteException;
114 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DLoadedApk.java782 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
791 ordered, sticky, sendingUser);
827 boolean ordered, boolean sticky, int sendingUser) {
830 ordered, sticky, mIIntentReceiver.asBinder(), sendingUser);
942 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
949 sticky, sendingUser);
781 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
826 Args(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, int sendingUser) argument
941 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DActivityManagerNative.java96 * Convenience for sending a sticky broadcast. For internal use only.
439 boolean sticky = data.readInt() != 0;
443 serialized, sticky, userId);
2807 boolean sticky, int userId) throws RemoteException
2822 data.writeInt(sticky ? 1 : 0);
2803 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.java375 boolean ordered, boolean sticky, IBinder token, int sendingUser) {
376 super(resultCode, resultData, resultExtras, TYPE_COMPONENT, ordered, sticky,
883 boolean sticky, int sendingUser, int processState) throws RemoteException {
886 sticky, sendingUser);
374 ReceiverData(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, IBinder token, int sendingUser) argument
881 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.java1575 boolean ordered, boolean sticky, int sendingUser) {
1574 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 1686 milliseconds