Loading core/java/android/app/ActivityManager.java +0 −17 Original line number Diff line number Diff line Loading @@ -4474,23 +4474,6 @@ public class ActivityManager { } } /** * Logs out current current foreground user by switching to the system user and stopping the * user being switched from. * @hide */ public static void logoutCurrentUser() { int currentUser = ActivityManager.getCurrentUser(); if (currentUser != UserHandle.USER_SYSTEM) { try { getService().switchUser(UserHandle.USER_SYSTEM); getService().stopUser(currentUser, /* force= */ false, null); } catch (RemoteException e) { e.rethrowFromSystemServer(); } } } /** * Stops the given {@code userId}. * Loading packages/SystemUI/src/com/android/systemui/globalactions/GlobalActionsDialogLite.java +1 −7 Original line number Diff line number Diff line Loading @@ -1067,13 +1067,7 @@ public class GlobalActionsDialogLite implements DialogInterface.OnDismissListene // Add a little delay before executing, to give the dialog a chance to go away before // switching user mHandler.postDelayed(() -> { try { int currentUserId = getCurrentUser().id; mIActivityManager.switchUser(UserHandle.USER_SYSTEM); mIActivityManager.stopUser(currentUserId, true /*force*/, null); } catch (RemoteException re) { Log.e(TAG, "Couldn't logout user " + re); } mDevicePolicyManager.logoutUser(); }, mDialogPressDelay); } } Loading packages/SystemUI/src/com/android/systemui/statusbar/KeyguardIndicationController.java +1 −7 Original line number Diff line number Diff line Loading @@ -575,13 +575,7 @@ public class KeyguardIndicationController { return; } int currentUserId = KeyguardUpdateMonitor.getCurrentUser(); try { mIActivityManager.switchUser(UserHandle.USER_SYSTEM); mIActivityManager.stopUser(currentUserId, true /* force */, null); } catch (RemoteException re) { Log.e(TAG, "Failed to logout user", re); } mDevicePolicyManager.logoutUser(); }) .build(), false); Loading packages/SystemUI/src/com/android/systemui/statusbar/policy/UserSwitcherController.java +0 −8 Original line number Diff line number Diff line Loading @@ -447,14 +447,6 @@ public class UserSwitcherController implements Dumpable { mResumeUserOnGuestLogout = resume; } public void logoutCurrentUser() { int currentUser = mUserTracker.getUserId(); if (currentUser != UserHandle.USER_SYSTEM) { pauseRefreshUsers(); ActivityManager.logoutCurrentUser(); } } /** * Returns whether the current user is a system user. */ Loading Loading
core/java/android/app/ActivityManager.java +0 −17 Original line number Diff line number Diff line Loading @@ -4474,23 +4474,6 @@ public class ActivityManager { } } /** * Logs out current current foreground user by switching to the system user and stopping the * user being switched from. * @hide */ public static void logoutCurrentUser() { int currentUser = ActivityManager.getCurrentUser(); if (currentUser != UserHandle.USER_SYSTEM) { try { getService().switchUser(UserHandle.USER_SYSTEM); getService().stopUser(currentUser, /* force= */ false, null); } catch (RemoteException e) { e.rethrowFromSystemServer(); } } } /** * Stops the given {@code userId}. * Loading
packages/SystemUI/src/com/android/systemui/globalactions/GlobalActionsDialogLite.java +1 −7 Original line number Diff line number Diff line Loading @@ -1067,13 +1067,7 @@ public class GlobalActionsDialogLite implements DialogInterface.OnDismissListene // Add a little delay before executing, to give the dialog a chance to go away before // switching user mHandler.postDelayed(() -> { try { int currentUserId = getCurrentUser().id; mIActivityManager.switchUser(UserHandle.USER_SYSTEM); mIActivityManager.stopUser(currentUserId, true /*force*/, null); } catch (RemoteException re) { Log.e(TAG, "Couldn't logout user " + re); } mDevicePolicyManager.logoutUser(); }, mDialogPressDelay); } } Loading
packages/SystemUI/src/com/android/systemui/statusbar/KeyguardIndicationController.java +1 −7 Original line number Diff line number Diff line Loading @@ -575,13 +575,7 @@ public class KeyguardIndicationController { return; } int currentUserId = KeyguardUpdateMonitor.getCurrentUser(); try { mIActivityManager.switchUser(UserHandle.USER_SYSTEM); mIActivityManager.stopUser(currentUserId, true /* force */, null); } catch (RemoteException re) { Log.e(TAG, "Failed to logout user", re); } mDevicePolicyManager.logoutUser(); }) .build(), false); Loading
packages/SystemUI/src/com/android/systemui/statusbar/policy/UserSwitcherController.java +0 −8 Original line number Diff line number Diff line Loading @@ -447,14 +447,6 @@ public class UserSwitcherController implements Dumpable { mResumeUserOnGuestLogout = resume; } public void logoutCurrentUser() { int currentUser = mUserTracker.getUserId(); if (currentUser != UserHandle.USER_SYSTEM) { pauseRefreshUsers(); ActivityManager.logoutCurrentUser(); } } /** * Returns whether the current user is a system user. */ Loading