Home
last modified time | relevance | path

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

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
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()
DRecentTasksList.java201 Task.TaskKey taskKey = new Task.TaskKey(rawTask); in loadTasksInBackground() local
204 boolean isLocked = tmpLockedUsers.get(taskKey.userId); in loadTasksInBackground()
205 task = Task.from(taskKey, rawTask, isLocked); in loadTasksInBackground()
207 task = new Task(taskKey); in loadTasksInBackground()
DTaskShortcutFactory.java138 Task.TaskKey taskKey = mTaskView.getTask().key; in onClick() local
139 final int taskId = taskKey.id; in onClick()
215 taskKey.displayId); in onClick()
DTaskIconCache.java130 void onTaskRemoved(TaskKey taskKey) { in onTaskRemoved() argument
131 mIconCache.remove(taskKey); in onTaskRemoved()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DRecentsView.java463 Task.TaskKey taskKey = taskView.getTask().key;
467 .getActivityInfo(taskKey.getComponent(), taskKey.userId) == null,
473 mModel.isTaskRemoved(taskKey.id, taskRemoved -> {