Home
last modified time | relevance | path

Searched refs:stopUserUnchecked (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/userpicker/
DUserPickerControllerTest.java201 doReturn(true).when(mMockUserEventManager).stopUserUnchecked(anyInt(), anyInt()); in checkChangeUser_changeUserState_changeUser()
207 .stopUserUnchecked(USER_ID_FRONT, FRONT_PASSENGER_DISPLAY_ID); in checkChangeUser_changeUserState_changeUser()
214 doReturn(true).when(mMockUserEventManager).stopUserUnchecked(anyInt(), anyInt()); in checkLoginUser_logoutState_startUser()
220 .stopUserUnchecked(anyInt(), anyInt()); in checkLoginUser_logoutState_startUser()
232 doReturn(true).when(mMockUserEventManager).stopUserUnchecked(anyInt(), anyInt()); in checkCreateGuest_pressGuestIcon_createdGuestUser()
239 .stopUserUnchecked(USER_ID_FRONT, FRONT_PASSENGER_DISPLAY_ID); in checkCreateGuest_pressGuestIcon_createdGuestUser()
249 doReturn(true).when(mMockUserEventManager).stopUserUnchecked(anyInt(), anyInt()); in checkAddNewUser_pressAddUserIcon_createdUser()
259 .stopUserUnchecked(USER_ID_FRONT, FRONT_PASSENGER_DISPLAY_ID); in checkAddNewUser_pressAddUserIcon_createdUser()
DUserEventManagerTest.java141 mUserEventManager.stopUserUnchecked(/* userId= */ USER_ID_FRONT, in checkStopUser_requestStopUser_StopUser()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/userpicker/
DUserPickerController.java296 mUserEventManager.stopUserUnchecked(userId, mDisplayId);
497 return mUserEventManager.stopUserUnchecked(prevUserId, mDisplayId);
DUserEventManager.java383 boolean stopUserUnchecked(@UserIdInt int userId, int displayId) { in stopUserUnchecked() method in UserEventManager