Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DTaskUtils.java60 public static ComponentKey getLaunchComponentKeyForTask(Task.TaskKey taskKey) { in getLaunchComponentKeyForTask() argument
61 final ComponentName cn = taskKey.sourceComponent != null in getLaunchComponentKeyForTask()
62 ? taskKey.sourceComponent in getLaunchComponentKeyForTask()
63 : taskKey.getComponent(); in getLaunchComponentKeyForTask()
64 return new ComponentKey(cn, UserHandle.of(taskKey.userId)); in getLaunchComponentKeyForTask()
DRecentTasksList.java169 Task.TaskKey taskKey = new Task.TaskKey(rawTask); in loadTasksInBackground() local
172 boolean isLocked = tmpLockedUsers.get(taskKey.userId); in loadTasksInBackground()
173 task = Task.from(taskKey, rawTask, isLocked); in loadTasksInBackground()
175 task = new Task(taskKey); in loadTasksInBackground()
DTaskIconCache.java152 void onTaskRemoved(TaskKey taskKey) { in onTaskRemoved() argument
153 mIconCache.remove(taskKey); in onTaskRemoved()
/packages/apps/Launcher3/quickstep/recents_ui_overrides/src/com/android/quickstep/views/
DRecentsView.java242 Task.TaskKey taskKey = taskView.getTask().key;
243 if (PackageManagerWrapper.getInstance().getActivityInfo(taskKey.getComponent(),
244 taskKey.userId) == null) {
249 mModel.findTaskWithId(taskKey.id, (key) -> {