Home
last modified time | relevance | path

Searched refs:taskKey (Results 1 – 7 of 7) sorted by relevance

/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
H A DTaskUtils.java62 public static ComponentKey getLaunchComponentKeyForTask(Task.TaskKey taskKey) { in getLaunchComponentKeyForTask() argument
63 final ComponentName cn = taskKey.sourceComponent != null in getLaunchComponentKeyForTask()
64 ? taskKey.sourceComponent in getLaunchComponentKeyForTask()
65 : taskKey.getComponent(); in getLaunchComponentKeyForTask()
66 return new ComponentKey(cn, UserHandle.of(taskKey.userId)); in getLaunchComponentKeyForTask()
H A DTaskShortcutFactory.java161 Task.TaskKey taskKey = mTaskView.getTask().key; in onClick() local
162 final int taskId = taskKey.id; in onClick()
238 taskKey.displayId); in onClick()
H A DTaskIconCache.java130 void onTaskRemoved(TaskKey taskKey) { in onTaskRemoved() argument
131 mIconCache.remove(taskKey); in onTaskRemoved()
/aosp12/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
H A DActivityManagerWrapper.java248 public void startActivityFromRecentsAsync(Task.TaskKey taskKey, ActivityOptions options, in startActivityFromRecentsAsync() argument
250 final boolean result = startActivityFromRecents(taskKey, options); in startActivityFromRecentsAsync()
264 public boolean startActivityFromRecents(Task.TaskKey taskKey, ActivityOptions options) { in startActivityFromRecents() argument
265 ActivityOptionsCompat.addTaskInfo(options, taskKey); in startActivityFromRecents()
266 return startActivityFromRecents(taskKey.id, options); in startActivityFromRecents()
H A DActivityOptionsCompat.java111 public static void addTaskInfo(ActivityOptions opts, Task.TaskKey taskKey) {
112 if (taskKey.windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
/aosp12/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/model/
H A DTask.java241 public static Task from(TaskKey taskKey, TaskInfo taskInfo, boolean isLocked) { in from() argument
243 return new Task(taskKey, in from()
/aosp12/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
H A DRecentsView.java518 Task.TaskKey taskKey = taskView.getTask().key;
522 .getActivityInfo(taskKey.getComponent(), taskKey.userId) == null,
528 mModel.isTaskRemoved(taskKey.id, taskRemoved -> {