Home
last modified time | relevance | path

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

/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/profiles/
DAddNewProfileTaskTest.java76 int foregroundUserId = ActivityManager.getCurrentUser(); in setUp() local
77 when(mContext.getUser()).thenReturn(UserHandle.of(foregroundUserId)); in setUp()
145 int foregroundUserId = ActivityManager.getCurrentUser(); in userCreatedOnPassenger_success_stopsAndStartsUser() local
146 when(mContext.getUser()).thenReturn(UserHandle.of(foregroundUserId + 1)); in userCreatedOnPassenger_success_stopsAndStartsUser()
173 int foregroundUserId = ActivityManager.getCurrentUser(); in userCreatedOnPassenger_failure_doesNotStartUser() local
174 when(mContext.getUser()).thenReturn(UserHandle.of(foregroundUserId + 1)); in userCreatedOnPassenger_failure_doesNotStartUser()
/packages/apps/Car/Settings/src/com/android/car/settings/profiles/
DRemoveProfileHandler.java201 int foregroundUserId = ActivityManager.getCurrentUser(); in isNonCurrentForegroundUser() local
202 return userInfo.id == foregroundUserId && UserHandle.myUserId() != foregroundUserId; in isNonCurrentForegroundUser()
DProfileHelper.java391 final int foregroundUserId = ActivityManager.getCurrentUser(); in getAllSwitchableProfiles() local
392 return getAllLivingProfiles(userInfo -> userInfo.id != foregroundUserId); in getAllSwitchableProfiles()
/packages/modules/Bluetooth/service/src/com/android/server/bluetooth/
DBluetoothManagerService.java660 int foregroundUserId = in BluetoothManagerService()
662 propagateForegroundUserId(foregroundUserId); in BluetoothManagerService()
1667 int foregroundUserId = ActivityManager.getCurrentUser(); in handleMessage() local
1668 propagateForegroundUserId(foregroundUserId); in handleMessage()