Searched defs:newUserId (Results 1 - 20 of 20) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
H A DCurrentUserTracker.java60 public abstract void onUserSwitched(int newUserId); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DColorInversionTile.java73 protected void handleUserSwitch(int newUserId) { argument
74 mSetting.setUserId(newUserId);
H A DFlashlightTile.java59 protected void handleUserSwitch(int newUserId) { argument
H A DIntentTile.java73 protected void handleUserSwitch(int newUserId) { argument
74 super.handleUserSwitch(newUserId);
75 mCurrentUserId = newUserId;
H A DCastTile.java80 protected void handleUserSwitch(int newUserId) { argument
81 super.handleUserSwitch(newUserId);
83 mController.setCurrentUserId(newUserId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DSecurityController.java29 void onUserSwitched(int newUserId); argument
H A DSecurityControllerImpl.java156 public void onUserSwitched(int newUserId) { argument
157 mCurrentUserId = newUserId;
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardServiceDelegate.java272 public void setCurrentUser(int newUserId) { argument
274 mKeyguardService.setCurrentUser(newUserId);
276 mKeyguardState.currentUser = newUserId;
/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplayContent.java246 void switchUserStacks(int newUserId) { argument
251 if (DEBUG_VISIBILITY) Slog.w(TAG, "user changing " + newUserId + " hiding "
259 mStacks.get(stackNdx).switchUser(newUserId);
H A DAppTransition.java1156 public void setCurrentUser(int newUserId) { argument
1157 mCurrentUserId = newUserId;
H A DWindowManagerService.java5541 public void setCurrentUser(final int newUserId, final int[] currentProfileIds) { argument
5543 mCurrentUserId = newUserId;
5545 mAppTransition.setCurrentUser(newUserId);
5546 mPolicy.setCurrentUserLw(newUserId);
5552 displayContent.switchUserStacks(newUserId);
/frameworks/base/services/core/java/com/android/server/statusbar/
H A DStatusBarManagerService.java432 public void setCurrentUser(int newUserId) { argument
433 if (SPEW) Slog.d(TAG, "Setting current user to user " + newUserId);
434 mCurrentUserId = newUserId;
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java1020 * Update the newUserId. Call while holding WindowManagerService lock.
1023 * @param newUserId The id of the incoming user.
1025 public void setCurrentUser(int newUserId) { argument
1026 mLockPatternUtils.setCurrentUser(newUserId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTile.java125 public void userSwitch(int newUserId) { argument
126 mHandler.obtainMessage(H.USER_SWITCH, newUserId, 0).sendToTarget();
204 protected void handleUserSwitch(int newUserId) { argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java612 public void userSwitched(int newUserId) { argument
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java1222 * @param newUserId The id of the incoming user.
1224 public void setCurrentUserLw(int newUserId); argument
/frameworks/base/services/core/java/com/android/server/
H A DInputMethodManagerService.java685 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
687 switchUserLocked(newUserId);
698 public void onUserSwitchComplete(int newUserId) throws RemoteException {
830 private void switchUserLocked(int newUserId) { argument
831 mSettings.setCurrentUserId(newUserId);
834 mFileManager = new InputMethodFileManager(mMethodMap, newUserId);
843 Slog.d(TAG, "Switch user: " + newUserId + " current ime = " + defaultImiId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBar.java3144 public void userSwitched(int newUserId) { argument
3145 if (MULTIUSER_DEBUG) mNotificationPanelDebugText.setText("USER " + newUserId);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java5864 public void setCurrentUserLw(int newUserId) { argument
5865 mCurrentUserId = newUserId;
5867 mKeyguardDelegate.setCurrentUser(newUserId);
5871 mStatusBarService.setCurrentUser(newUserId);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java18506 void sendUserSwitchBroadcastsLocked(int oldUserId, int newUserId) { argument
18525 if (newUserId >= 0) {
18527 List<UserInfo> profiles = mUserManager.getProfiles(newUserId, false);
18542 intent.putExtra(Intent.EXTRA_USER_HANDLE, newUserId);
18554 final int newUserId) {
18565 sendContinueUserSwitchLocked(uss, oldUserId, newUserId);
18578 newUserId, callback);
18584 sendContinueUserSwitchLocked(uss, oldUserId, newUserId);
18590 void timeoutUserSwitch(UserStartedState uss, int oldUserId, int newUserId) { argument
18592 Slog.w(TAG, "User switch timeout: from " + oldUserId + " to " + newUserId);
18553 dispatchUserSwitch(final UserStartedState uss, final int oldUserId, final int newUserId) argument
18597 sendContinueUserSwitchLocked(UserStartedState uss, int oldUserId, int newUserId) argument
18604 onUserInitialized(UserStartedState uss, boolean foreground, int oldUserId, int newUserId) argument
18614 moveUserToForeground(UserStartedState uss, int oldUserId, int newUserId) argument
18626 continueUserSwitch(UserStartedState uss, int oldUserId, int newUserId) argument
18630 completeSwitchAndInitalize(UserStartedState uss, int newUserId, boolean clearInitializing, boolean clearSwitching) argument
[all...]

Completed in 425 milliseconds