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

/frameworks/base/core/java/android/view/
H A DDragAndDropPermissions.java81 * @param activityToken Binder pointing to an Activity instance to bind the lifetime to.
85 public boolean take(IBinder activityToken) { argument
87 mDragAndDropPermissions.take(activityToken);
/frameworks/base/core/java/com/android/internal/app/
H A DAssistUtils.java50 IVoiceInteractionSessionShowCallback showCallback, IBinder activityToken) {
54 sourceFlags, showCallback, activityToken);
49 showSessionForActiveService(Bundle args, int sourceFlags, IVoiceInteractionSessionShowCallback showCallback, IBinder activityToken) argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DDragAndDropPermissionsHandler.java56 public void take(IBinder activityToken) throws RemoteException { argument
60 mActivityToken = activityToken;
/frameworks/base/core/java/android/app/
H A DResourcesManager.java368 @NonNull IBinder activityToken) {
369 ActivityResources activityResources = mActivityResourceReferences.get(activityToken);
372 mActivityResourceReferences.put(activityToken, activityResources);
381 private @NonNull Resources getOrCreateResourcesForActivityLocked(@NonNull IBinder activityToken, argument
384 activityToken);
446 * CompatibilityInfo, ClassLoader)} with the same activityToken will have their override
449 * @param activityToken Represents an Activity.
463 public @NonNull Resources createBaseActivityResources(@NonNull IBinder activityToken, argument
486 Slog.d(TAG, "createBaseActivityResources activity=" + activityToken
492 getOrCreateActivityResourcesStructLocked(activityToken);
367 getOrCreateActivityResourcesStructLocked( @onNull IBinder activityToken) argument
517 getOrCreateResources(@ullable IBinder activityToken, @NonNull ResourcesKey key, @NonNull ClassLoader classLoader) argument
625 getResources(@ullable IBinder activityToken, @Nullable String resDir, @Nullable String[] splitResDirs, @Nullable String[] overlayDirs, @Nullable String[] libDirs, int displayId, @Nullable Configuration overrideConfig, @NonNull CompatibilityInfo compatInfo, @Nullable ClassLoader classLoader) argument
660 updateResourcesForActivity(@onNull IBinder activityToken, @Nullable Configuration overrideConfig) argument
[all...]
H A DApplicationThreadNative.java621 IBinder activityToken = data.readStrongBinder();
625 requestAssistContextExtras(activityToken, requestToken, requestType, sessionId);
1380 public void requestAssistContextExtras(IBinder activityToken, IBinder requestToken, argument
1384 data.writeStrongBinder(activityToken);
H A DIApplicationThread.java146 void requestAssistContextExtras(IBinder activityToken, IBinder requestToken, int requestType, argument
H A DContextImpl.java2016 LoadedApk packageInfo, IBinder activityToken, int displayId,
2019 return new ContextImpl(null, mainThread, packageInfo, activityToken, null, 0,
2024 LoadedApk packageInfo, IBinder activityToken, UserHandle user, int flags,
2041 mActivityToken = activityToken;
2077 activityToken,
2090 activityToken,
2015 createActivityContext(ActivityThread mainThread, LoadedApk packageInfo, IBinder activityToken, int displayId, Configuration overrideConfiguration) argument
2023 ContextImpl(ContextImpl container, ActivityThread mainThread, LoadedApk packageInfo, IBinder activityToken, UserHandle user, int flags, Display display, Configuration overrideConfiguration, int createDisplayWithId) argument
H A DActivityManagerNative.java646 IBinder activityToken = data.readStrongBinder();
651 int res = addAppTask(activityToken, intent, descr, thumbnail);
1988 IBinder activityToken = data.readStrongBinder();
1989 IBinder perm = getUriPermissionOwnerForActivity(activityToken);
2421 IBinder activityToken = data.readStrongBinder();
2425 activityToken, focused, newSessionId);
2565 IBinder activityToken = data.readStrongBinder();
2566 int displayId = getActivityDisplayId(activityToken);
3691 public int addAppTask(IBinder activityToken, Intent intent, argument
3696 data.writeStrongBinder(activityToken);
5538 getUriPermissionOwnerForActivity(IBinder activityToken) argument
6037 getLaunchedFromUid(IBinder activityToken) argument
6050 getLaunchedFromPackage(IBinder activityToken) argument
6126 requestAssistContextExtras(int requestType, IResultReceiver receiver, Bundle receiverExtras, IBinder activityToken, boolean focused, boolean newSessionId) argument
6402 getActivityDisplayId(IBinder activityToken) argument
[all...]
H A DActivityThread.java626 IBinder activityToken; field in class:ActivityThread.RequestAssistContextExtras
633 final IBinder activityToken; field in class:ActivityThread.ActivityConfigChangeData
636 activityToken = token;
1203 public void requestAssistContextExtras(IBinder activityToken, IBinder requestToken, argument
1206 cmd.activityToken = activityToken;
2822 ActivityClientRecord r = mActivities.get(cmd.activityToken);
4602 * @param activityToken The Activity binder token for which this configuration change happened.
4611 IBinder activityToken,
4651 if (activityToken !
4610 performConfigurationChanged(ComponentCallbacks2 cb, IBinder activityToken, Configuration newConfig, Configuration amOverrideConfig, boolean reportToActivity) argument
[all...]
H A DIActivityManager.java135 public int addAppTask(IBinder activityToken, Intent intent, argument
436 public IBinder getUriPermissionOwnerForActivity(IBinder activityToken) throws RemoteException; argument
512 public int getLaunchedFromUid(IBinder activityToken) throws RemoteException; argument
513 public String getLaunchedFromPackage(IBinder activityToken) throws RemoteException; argument
527 IBinder activityToken, boolean focused, boolean newSessionId) throws RemoteException;
558 public int getActivityDisplayId(IBinder activityToken) throws RemoteException; argument
525 requestAssistContextExtras(int requestType, IResultReceiver receiver, Bundle receiverExtras, IBinder activityToken, boolean focused, boolean newSessionId) argument
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DVoiceInteractionManagerServiceImpl.java149 IVoiceInteractionSessionShowCallback showCallback, IBinder activityToken) {
155 if (activityToken == null) {
161 activityToken, activityTokens);
148 showSessionLocked(Bundle args, int flags, IVoiceInteractionSessionShowCallback showCallback, IBinder activityToken) argument
H A DVoiceInteractionManagerService.java932 IVoiceInteractionSessionShowCallback showCallback, IBinder activityToken) {
946 showCallback, activityToken);
931 showSessionForActiveService(Bundle args, int sourceFlags, IVoiceInteractionSessionShowCallback showCallback, IBinder activityToken) argument
H A DVoiceInteractionSessionConnection.java223 IVoiceInteractionSessionShowCallback showCallback, IBinder activityToken,
253 final int count = activityToken != null ? 1 : topActivities.size();
256 IBinder topActivity = count == 1 ? activityToken : topActivities.get(i);
222 showLocked(Bundle args, int flags, int disabledContext, IVoiceInteractionSessionShowCallback showCallback, IBinder activityToken, List<IBinder> topActivities) argument
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java8518 public IBinder getUriPermissionOwnerForActivity(IBinder activityToken) { argument
8521 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
8524 + activityToken);
9215 public int addAppTask(IBinder activityToken, Intent intent, argument
9222 ActivityRecord r = ActivityRecord.isInStackLocked(activityToken);
9225 + activityToken);
9763 public int getActivityDisplayId(IBinder activityToken) throws RemoteException { argument
9765 ActivityStack stack = ActivityRecord.getStackLocked(activityToken);
12190 IBinder activityToken, boolean focused, boolean newSessionId) {
12192 activityToken, focuse
12188 requestAssistContextExtras(int requestType, IResultReceiver receiver, Bundle receiverExtras, IBinder activityToken, boolean focused, boolean newSessionId) argument
12197 enqueueAssistContext(int requestType, Intent intent, String hint, IResultReceiver receiver, Bundle receiverExtras, IBinder activityToken, boolean focused, boolean newSessionId, int userHandle, Bundle args, long timeout) argument
18876 getLaunchedFromUid(IBinder activityToken) argument
18887 getLaunchedFromPackage(IBinder activityToken) argument
[all...]

Completed in 452 milliseconds