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

/frameworks/base/services/core/java/com/android/server/am/
H A DPreBootBroadcaster.java116 boolean ordered, boolean sticky, int sendingUser) {
115 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DBroadcastRecord.java54 final boolean sticky; // originated from existing sticky data? field in class:BroadcastRecord
55 final boolean initialSticky; // initial broadcast from register to sticky?
156 if (resultAbort || ordered || sticky || initialSticky) {
159 pw.print(" sticky="); pw.print(sticky);
245 sticky = _sticky;
266 sticky = from.sticky;
H A DBroadcastQueue.java487 boolean ordered, boolean sticky, int sendingUser) throws RemoteException {
495 data, extras, ordered, sticky, sendingUser, app.repProcState);
516 sticky, sendingUser);
1541 // Note sometimes (only for sticky broadcasts?) we reuse BroadcastRecords,
485 performReceiveLocked(ProcessRecord app, IIntentReceiver receiver, Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DActivityManagerShellCommand.java649 boolean ordered, boolean sticky, int sendingUser) {
648 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DUserController.java527 boolean sticky, int sendingUser) {
551 Bundle extras, boolean ordered, boolean sticky, int sendingUser)
667 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
690 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
1081 boolean sticky,
2083 boolean ordered, boolean sticky, int callingPid, int callingUid, int userId) {
2088 ordered, sticky, callingPid, callingUid, userId);
2080 broadcastIntent(Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String[] requiredPermissions, int appOp, Bundle bOptions, boolean ordered, boolean sticky, int callingPid, int callingUid, int userId) argument
H A DActivityManagerService.java1128 * State of all active sticky broadcasts per user. Keys are the action of the
1129 * sticky Intent, values are an ArrayList of all broadcasted intents with
1131 * by the user ID the sticky is for, and can include UserHandle.USER_ALL
7295 // Remove all sticky broadcasts from this user.
8097 boolean sticky, int sendingUser) {
15300 Bundle extras, boolean ordered, boolean sticky, int sendingUser)
20868 // Look for any matching sticky broadcasts...
20889 // The first sticky in the list is returned directly back to the client.
20890 Intent sticky = allSticky != null ? allSticky.get(0) : null;
20891 if (DEBUG_BROADCAST) Slog.v(TAG_BROADCAST, "Register receiver " + filter + ": " + sticky);
21207 broadcastIntentLocked(ProcessRecord callerApp, String callerPackage, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String[] requiredPermissions, int appOp, Bundle bOptions, boolean ordered, boolean sticky, int callingPid, int callingUid, int userId) argument
21929 broadcastIntent(IApplicationThread caller, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String[] requiredPermissions, int appOp, Bundle bOptions, boolean serialized, boolean sticky, int userId) argument
21953 broadcastIntentInPackage(String packageName, int uid, Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String requiredPermission, Bundle bOptions, boolean serialized, boolean sticky, int userId) argument
[all...]
/frameworks/base/core/java/android/content/
H A DIntentSender.java115 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {
114 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky, int sendingUser) argument
H A DBroadcastReceiver.java87 boolean ordered, boolean sticky, IBinder token, int userId, int flags) {
93 mInitialStickyHint = sticky;
275 // Note that we don't assert when receiving the initial sticky value,
579 * value of a sticky broadcast -- that is, the value that was last
580 * broadcast and is currently held in the sticky cache, so this is
641 // Note that we don't assert when receiving the initial sticky value,
86 PendingResult(int resultCode, String resultData, Bundle resultExtras, int type, boolean ordered, boolean sticky, IBinder token, int userId, int flags) argument
/frameworks/base/services/tests/servicestests/src/com/android/server/am/
H A DUserControllerTest.java390 boolean sticky, int callingPid, int callingUid, int userId) {
387 broadcastIntent(Intent intent, String resolvedType, IIntentReceiver resultTo, int resultCode, String resultData, Bundle resultExtras, String[] requiredPermissions, int appOp, Bundle bOptions, boolean ordered, boolean sticky, int callingPid, int callingUid, int userId) argument
/frameworks/base/core/java/android/app/
H A DPendingIntent.java234 Bundle extras, boolean serialized, boolean sticky, int sendingUser) {
233 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean serialized, boolean sticky, int sendingUser) argument
H A DLoadedApk.java1290 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
1305 ordered, sticky, sendingUser);
1343 boolean ordered, boolean sticky, int sendingUser) {
1346 sticky, mIIntentReceiver.asBinder(), sendingUser, intent.getFlags());
1468 Bundle extras, boolean ordered, boolean sticky, int sendingUser) {
1470 sticky, sendingUser);
1289 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
1342 Args(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, int sendingUser) argument
1467 performReceive(Intent intent, int resultCode, String data, Bundle extras, boolean ordered, boolean sticky, int sendingUser) argument
H A DActivityThread.java565 boolean ordered, boolean sticky, IBinder token, int sendingUser) {
566 super(resultCode, resultData, resultExtras, TYPE_COMPONENT, ordered, sticky,
983 boolean sticky, int sendingUser, int processState) throws RemoteException {
986 sticky, sendingUser);
564 ReceiverData(Intent intent, int resultCode, String resultData, Bundle resultExtras, boolean ordered, boolean sticky, IBinder token, int sendingUser) argument
981 scheduleRegisteredReceiver(IIntentReceiver receiver, Intent intent, int resultCode, String dataStr, Bundle extras, boolean ordered, boolean sticky, int sendingUser, int processState) 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 234 milliseconds