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

/frameworks/base/core/java/android/app/
H A DIActivityManager.java139 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException; argument
H A DActivity.java3464 * @param nonRoot If false then this only works if the activity is the root
3471 public boolean moveTaskToBack(boolean nonRoot) { argument
3474 mToken, nonRoot);
H A DActivityManagerNative.java511 boolean nonRoot = data.readInt() != 0;
512 boolean res = moveActivityTaskToBack(token, nonRoot);
1803 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) argument
1809 data.writeInt(nonRoot ? 1 : 0);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java4968 * @param nonRoot If false then this only works if the activity is the root
4972 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) { argument
4975 int taskId = getTaskForActivityLocked(token, !nonRoot);

Completed in 159 milliseconds