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

/frameworks/base/services/core/java/com/android/server/wm/
H A DAppWindowToken.java74 boolean showForAllUsers; field in class:AppWindowToken
H A DTask.java176 stack.positionTask(this, position, showForAllUsers());
675 boolean showForAllUsers() { method in class:Task
677 return (tokensCount != 0) && mAppTokens.get(tokensCount - 1).showForAllUsers;
H A DTaskStack.java513 addTask(task, toTop, task.showForAllUsers());
520 * @param showForAllUsers Whether to show the task regardless of the current user.
522 void addTask(Task task, boolean toTop, boolean showForAllUsers) { argument
523 positionTask(task, toTop ? mTasks.size() : 0, showForAllUsers);
526 void positionTask(Task task, int position, boolean showForAllUsers) { argument
528 showForAllUsers || mService.isCurrentProfileLocked(task.mUserId);
578 tmpTask.showForAllUsers()
597 tmpTask.showForAllUsers()
839 if (mService.isCurrentProfileLocked(task.mUserId) || task.showForAllUsers()) {
H A DWindowManagerService.java3414 stack.addTask(task, !atoken.mLaunchTaskBehind /* toTop */, atoken.showForAllUsers);
3420 int requestedOrientation, boolean fullscreen, boolean showForAllUsers, int userId,
3452 atoken.showForAllUsers = showForAllUsers;
3419 addAppToken(int addPos, IApplicationToken token, int taskId, int stackId, int requestedOrientation, boolean fullscreen, boolean showForAllUsers, int userId, int configChanges, boolean voiceInteraction, boolean launchTaskBehind, Rect taskBounds, Configuration config, int taskResizeMode, boolean alwaysFocusable, boolean homeTask, int targetSdkVersion) argument

Completed in 2794 milliseconds