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

/frameworks/base/core/java/android/app/
H A DActivity.java4460 * @param nonRoot If false then this only works if the activity is the root
4467 public boolean moveTaskToBack(boolean nonRoot) { argument
4470 mToken, nonRoot);
H A DActivityManagerNative.java599 boolean nonRoot = data.readInt() != 0;
600 boolean res = moveActivityTaskToBack(token, nonRoot);
2692 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) argument
2698 data.writeInt(nonRoot ? 1 : 0);
H A DIActivityManager.java118 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) throws RemoteException; argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java7071 * @param nonRoot If false then this only works if the activity is the root
7076 public boolean moveActivityTaskToBack(IBinder token, boolean nonRoot) { argument
7080 int taskId = ActivityRecord.getTaskForActivityLocked(token, !nonRoot);

Completed in 150 milliseconds