Searched defs:nonRoot (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/app/
H A DActivity.java5526 * @param nonRoot If false then this only works if the activity is the root
5533 public boolean moveTaskToBack(boolean nonRoot) { argument
5536 mToken, nonRoot);
H A DActivityManagerNative.java761 boolean nonRoot = data.readInt() != 0;
762 boolean res = moveActivityTaskToBack(token, nonRoot);
3886 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) argument
3892 data.writeInt(nonRoot ? 1 : 0);
H A DIActivityManager.java146 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException; argument
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java9739 * @param nonRoot If false then this only works if the activity is the root
9744 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) { argument
9749 int taskId = ActivityRecord.getTaskForActivityLocked(token, !nonRoot);

Completed in 2249 milliseconds