Searched refs:newUserId (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/core/java/android/app/
H A DIUserSwitchObserver.aidl23 void onUserSwitching(int newUserId, IRemoteCallback reply);
24 void onUserSwitchComplete(int 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/packages/SystemUI/src/com/android/systemui/settings/
H A DCurrentUserTracker.java60 public abstract void onUserSwitched(int newUserId); argument
H A DBrightnessController.java139 public void onUserSwitched(int newUserId) {
/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 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);
H A DFlashlightTile.java59 protected void handleUserSwitch(int newUserId) { argument
/frameworks/base/core/java/com/android/internal/statusbar/
H A DIStatusBarService.aidl37 void setCurrentUser(int newUserId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQSTileHost.java117 public void onUserSwitched(int newUserId) {
120 tile.userSwitch(newUserId);
122 mSecurity.onUserSwitched(newUserId);
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/keyguard/
H A DKeyguardServiceDelegate.java272 public void setCurrentUser(int newUserId) { argument
274 mKeyguardService.setCurrentUser(newUserId);
276 mKeyguardState.currentUser = 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/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;
/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/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/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardUpdateMonitor.java643 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
645 newUserId, 0, reply));
649 public void onUserSwitchComplete(int newUserId) throws RemoteException {
651 newUserId, 0));
/frameworks/base/services/core/java/com/android/server/
H A DTextServicesManagerService.java92 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
94 switchUserLocked(newUserId);
105 public void onUserSwitchComplete(int newUserId) throws RemoteException {
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/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/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java520 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
521 switchUser(newUserId, reply);
525 public void onUserSwitchComplete(int newUserId) throws RemoteException {
/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...]
/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);

Completed in 514 milliseconds

12