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

/frameworks/base/core/java/android/app/
H A DActivity.java4962 * @param nonRoot If false then this only works if the activity is the root
4969 public boolean moveTaskToBack(boolean nonRoot) { argument
4972 mToken, nonRoot);
H A DActivityManagerNative.java702 boolean nonRoot = data.readInt() != 0;
703 boolean res = moveActivityTaskToBack(token, nonRoot);
3170 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) argument
3176 data.writeInt(nonRoot ? 1 : 0);
H A DIActivityManager.java134 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException; argument
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java8582 * @param nonRoot If false then this only works if the activity is the root
8587 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) { argument
8592 int taskId = ActivityRecord.getTaskForActivityLocked(token, !nonRoot);

Completed in 1431 milliseconds