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.java251 boolean ordered, boolean sticky, IBinder token, int userId, int flags) {
257 mInitialStickyHint = sticky;
439 // Note that we don't assert when receiving the initial sticky value,
715 * value of a sticky broadcast -- that is, the value that was last
716 * broadcast and is currently held in the sticky cache, so this is
777 // Note that we don't assert when receiving the initial sticky value,
250 PendingResult(int resultCode, String resultData, Bundle resultExtras, int type, boolean ordered, boolean sticky, IBinder token, int userId, int flags) argument
/frameworks/base/core/java/android/app/
H A DPendingIntent.java227 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {
226 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky, int sendingUser) argument
H A DApplicationThreadNative.java396 boolean sticky = data.readInt() != 0;
400 resultCode, dataStr, extras, ordered, sticky, sendingUser, processState);
1116 boolean sticky, int sendingUser, int processState) throws RemoteException {
1125 data.writeInt(sticky ? 1 : 0);
1114 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.java797 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
806 ordered, sticky, sendingUser);
842 boolean ordered, boolean sticky, int sendingUser) {
845 sticky, mIIntentReceiver.asBinder(), sendingUser, intent.getFlags());
957 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
964 sticky, sendingUser);
796 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
841 Args(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, int sendingUser) argument
956 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DActivityManagerNative.java103 * Convenience for sending a sticky broadcast. For internal use only.
465 boolean sticky = data.readInt() != 0;
469 options, serialized, sticky, userId);
3037 boolean sticky, int userId) throws RemoteException
3053 data.writeInt(sticky ? 1 : 0);
3033 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String[] requiredPermissions, int appOp, Bundle options, boolean serialized, boolean sticky, int userId) argument
H A DActivityThread.java376 boolean ordered, boolean sticky, IBinder token, int sendingUser) {
377 super(resultCode, resultData, resultExtras, TYPE_COMPONENT, ordered, sticky,
895 boolean sticky, int sendingUser, int processState) throws RemoteException {
898 sticky, sendingUser);
375 ReceiverData(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, IBinder token, int sendingUser) argument
893 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) argument
H A DIActivityManager.java111 int appOp, Bundle options, boolean serialized, boolean sticky, int userId) throws RemoteException;
108 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle map, String[] requiredPermissions, int appOp, Bundle options, boolean serialized, boolean sticky, int userId) argument
/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastRecord.java51 final boolean sticky; // originated from existing sticky data? field in class:BroadcastRecord
52 final boolean initialSticky; // initial broadcast from register to sticky?
139 if (resultAbort || ordered || sticky || initialSticky) {
142 pw.print(" sticky="); pw.print(sticky);
212 sticky = _sticky;
H A DBroadcastQueue.java446 boolean ordered, boolean sticky, int sendingUser) throws RemoteException {
453 data, extras, ordered, sticky, sendingUser, app.repProcState);
460 sticky, sendingUser);
444 performReceiveLocked(ProcessRecord app, IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DActivityManagerService.java781 * State of all active sticky broadcasts per user. Keys are the action of the
782 * sticky Intent, values are an ArrayList of all broadcasted intents with
784 * by the user ID the sticky is for, and can include UserHandle.USER_ALL
5728 // Remove all sticky broadcasts from this user.
6375 boolean sticky, int sendingUser) {
11577 boolean sticky, int sendingUser) {
11844 Bundle extras, boolean ordered, boolean sticky, int sendingUser)
16194 // Look for any matching sticky broadcasts...
16210 // The first sticky in the list is returned directly back to the client.
16211 Intent sticky
11575 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
16421 broadcastIntentLocked(ProcessRecord callerApp, String callerPackage, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String[] requiredPermissions, int appOp, Bundle options, boolean ordered, boolean sticky, int callingPid, int callingUid, int userId) argument
16925 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String[] requiredPermissions, int appOp, Bundle options, boolean serialized, boolean sticky, int userId) argument
16949 broadcastIntentInPackage(String packageName, int uid, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String requiredPermission, Bundle options, boolean serialized, boolean sticky, int userId) argument
[all...]
/frameworks/base/cmds/am/src/com/android/commands/am/
H A DAm.java1753 boolean ordered, boolean sticky, int sendingUser) {
1752 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.java251 /** Whether this key is sticky, i.e., a toggle key */
252 public boolean sticky; field in class:Keyboard.Key
259 /** If this is a sticky key, is it on? */
376 sticky = a.getBoolean(
411 * <li>This is a sticky key, that is, {@link #sticky} is {@code true}.
423 if (sticky && inside) {
500 if (sticky) {

Completed in 324 milliseconds