Searched refs:newUserId (Results 1 - 25 of 30) 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 DNetworkController.java27 void onUserSwitched(int newUserId); argument
H A DSecurityControllerImpl.java156 public void onUserSwitched(int newUserId) { argument
157 mCurrentUserId = newUserId;
H A DAccessPointControllerImpl.java90 public void onUserSwitched(int newUserId) { argument
91 mCurrentUser = newUserId;
H A DNetworkControllerImpl.java363 public void onUserSwitched(int newUserId) { argument
364 mCurrentUserId = newUserId;
365 mAccessPoints.onUserSwitched(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.java80 protected void handleUserSwitch(int newUserId) { argument
81 mSetting.setUserId(newUserId);
H A DCastTile.java80 protected void handleUserSwitch(int newUserId) { argument
81 super.handleUserSwitch(newUserId);
83 mController.setCurrentUserId(newUserId);
H A DIntentTile.java78 protected void handleUserSwitch(int newUserId) { argument
79 super.handleUserSwitch(newUserId);
80 mCurrentUserId = newUserId;
H A DFlashlightTile.java63 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.java119 public void onUserSwitched(int newUserId) {
122 tile.userSwitch(newUserId);
124 mSecurity.onUserSwitched(newUserId);
125 mNetwork.onUserSwitched(newUserId);
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardServiceDelegate.java259 public void setCurrentUser(int newUserId) { argument
261 mKeyguardService.setCurrentUser(newUserId);
263 mKeyguardState.currentUser = newUserId;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTile.java131 public void userSwitch(int newUserId) { argument
132 mHandler.obtainMessage(H.USER_SWITCH, newUserId, 0).sendToTarget();
214 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.java1186 public void setCurrentUser(int newUserId) { argument
1187 mCurrentUserId = newUserId;
/frameworks/base/services/core/java/com/android/server/statusbar/
H A DStatusBarManagerService.java443 public void setCurrentUser(int newUserId) { argument
444 if (SPEW) Slog.d(TAG, "Setting current user to user " + newUserId);
445 mCurrentUserId = newUserId;
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java1226 * @param newUserId The id of the incoming user.
1228 public void setCurrentUserLw(int newUserId); argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardUpdateMonitor.java717 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
719 newUserId, 0, reply));
723 public void onUserSwitchComplete(int newUserId) throws RemoteException {
725 newUserId, 0));
/frameworks/base/services/core/java/com/android/server/
H A DTextServicesManagerService.java104 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
106 switchUserLocked(newUserId);
117 public void onUserSwitchComplete(int newUserId) throws RemoteException {
H A DInputMethodManagerService.java686 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
688 switchUserLocked(newUserId);
699 public void onUserSwitchComplete(int newUserId) throws RemoteException {
835 private void switchUserLocked(int newUserId) { argument
836 mSettings.setCurrentUserId(newUserId);
839 mFileManager = new InputMethodFileManager(mMethodMap, newUserId);
848 Slog.d(TAG, "Switch user: " + newUserId + " current ime = " + defaultImiId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java1083 * Update the newUserId. Call while holding WindowManagerService lock.
1086 * @param newUserId The id of the incoming user.
1088 public void setCurrentUser(int newUserId) { argument
1089 mLockPatternUtils.setCurrentUser(newUserId);
/frameworks/base/services/core/java/com/android/server/wallpaper/
H A DWallpaperManagerService.java531 public void onUserSwitching(int newUserId, IRemoteCallback reply) {
532 switchUser(newUserId, reply);
536 public void onUserSwitchComplete(int newUserId) throws RemoteException {

Completed in 1283 milliseconds

12