Home | History | Annotate | Download | only in am

Lines Matching refs:taskId

374      * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
378 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
381 if (task.taskId == taskId) {
387 // Note: the taskId check depends on real taskId fields being non-zero
419 if (task.taskId == id) {
1591 next.task.taskId, next.shortComponentName);
1694 final int taskId = rTask.taskId;
1695 if (taskForIdLocked(taskId) == null || newTask) {
1700 mWindowManager.moveTaskToTop(taskId);
1718 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
1780 r.appToken, r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
1824 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
1849 group.taskId = task.taskId;
1948 final int targetTaskId = targetTask.taskId;
2043 final int taskId = task.taskId;
2109 mWindowManager.setAppGroupId(p.appToken, taskId);
2111 mWindowManager.moveTaskToTop(taskId);
2411 r.task.taskId, r.shortComponentName, reason);
2784 r.task.taskId, r.shortComponentName, reason);
2959 r.task.taskId, r.shortComponentName,
3014 mWindowManager.moveTaskToTop(task.taskId);
3020 final boolean findTaskToMoveToFrontLocked(int taskId, int flags, Bundle options) {
3021 final TaskRecord task = taskForIdLocked(taskId);
3072 mWindowManager.moveTaskToTop(tr.taskId);
3075 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
3090 * @param taskId The taskId to collect and move to the bottom.
3093 final boolean moveTaskToBackLocked(int taskId, ActivityRecord reason) {
3094 Slog.i(TAG, "moveTaskToBack: " + taskId);
3100 ActivityRecord next = topRunningActivityLocked(null, taskId);
3120 "Prepare to back transition: task=" + taskId);
3122 final TaskRecord tr = taskForIdLocked(taskId);
3155 mWindowManager.moveTaskToBottom(taskId);
3179 r.userId, System.identityHashCode(r), task.taskId,
3321 r.task.taskId, r.shortComponentName);
3455 ci.id = task.taskId;
3541 " Task id #" + task.taskId);
3613 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent, boolean toTop) {
3614 TaskRecord task = new TaskRecord(taskId, info, intent);