Home
last modified time | relevance | path

Searched refs:runningTaskInfo (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/fallback/
DFallbackRecentsView.java126 protected boolean shouldAddStubTaskView(RunningTaskInfo runningTaskInfo) { in shouldAddStubTaskView() argument
127 if (mHomeTaskInfo != null && runningTaskInfo != null && in shouldAddStubTaskView()
128 mHomeTaskInfo.taskId == runningTaskInfo.taskId in shouldAddStubTaskView()
134 return super.shouldAddStubTaskView(runningTaskInfo); in shouldAddStubTaskView()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/
DRecentsAnimationDeviceState.java396 public boolean isGestureBlockedActivity(ActivityManager.RunningTaskInfo runningTaskInfo) { in isGestureBlockedActivity() argument
397 return runningTaskInfo != null in isGestureBlockedActivity()
398 && mGestureBlockedActivities.contains(runningTaskInfo.topActivity); in isGestureBlockedActivity()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DRecentsView.java1684 public void onGestureAnimationStart(RunningTaskInfo runningTaskInfo) { in onGestureAnimationStart() argument
1691 showCurrentTask(runningTaskInfo); in onGestureAnimationStart()
1806 protected boolean shouldAddStubTaskView(RunningTaskInfo runningTaskInfo) { in shouldAddStubTaskView() argument
1807 return runningTaskInfo != null && getTaskView(runningTaskInfo.taskId) == null; in shouldAddStubTaskView()
1816 public void showCurrentTask(RunningTaskInfo runningTaskInfo) { in showCurrentTask() argument
1817 if (shouldAddStubTaskView(runningTaskInfo)) { in showCurrentTask()
1827 mTmpRunningTask = Task.from(new TaskKey(runningTaskInfo), runningTaskInfo, false); in showCurrentTask()
1838 int runningTaskId = runningTaskInfo == null ? -1 : runningTaskInfo.taskId; in showCurrentTask()