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.java202 doReturn(true).when(mMockUserEventManager).stopUserUnchecked(anyInt(), anyInt()); in checkChangeUser_changeUserState_changeUser()
208 .stopUserUnchecked(USER_ID_FRONT, FRONT_PASSENGER_DISPLAY_ID); in checkChangeUser_changeUserState_changeUser()
215 doReturn(true).when(mMockUserEventManager).stopUserUnchecked(anyInt(), anyInt()); in checkLoginUser_logoutState_startUser()
221 .stopUserUnchecked(anyInt(), anyInt()); in checkLoginUser_logoutState_startUser()
233 doReturn(true).when(mMockUserEventManager).stopUserUnchecked(anyInt(), anyInt()); in checkCreateGuest_pressGuestIcon_createdGuestUser()
240 .stopUserUnchecked(USER_ID_FRONT, FRONT_PASSENGER_DISPLAY_ID); in checkCreateGuest_pressGuestIcon_createdGuestUser()
250 doReturn(true).when(mMockUserEventManager).stopUserUnchecked(anyInt(), anyInt()); in checkAddNewUser_pressAddUserIcon_createdUser()
260 .stopUserUnchecked(USER_ID_FRONT, FRONT_PASSENGER_DISPLAY_ID); in checkAddNewUser_pressAddUserIcon_createdUser()
DUserEventManagerTest.java165 mUserEventManager.stopUserUnchecked(/* userId= */ USER_ID_FRONT, in checkStopUser_requestStopUser_stopUser()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/userpicker/
DUserPickerController.java298 mUserEventManager.stopUserUnchecked(userId, mDisplayId);
508 return mUserEventManager.stopUserUnchecked(prevUserId, mDisplayId);
DUserEventManager.java383 boolean stopUserUnchecked(@UserIdInt int userId, int displayId) { in stopUserUnchecked() method in UserEventManager