Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/location/injector/
DSystemUserInfoHelper.java198 int[] currentProfileIds = activityManagerInternal.getCurrentProfileIds(); in dump() local
199 pw.println("current users: u" + Arrays.toString(currentProfileIds)); in dump()
203 for (int userId : currentProfileIds) { in dump()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DFgsManagerController.kt195 private var currentProfileIds = mutableSetOf<Int>() variable
214 currentProfileIds.clear() in onProfilesChanged()
215 currentProfileIds.addAll(profiles.map { it.id }) in onProfilesChanged()
256 currentProfileIds.addAll(userTracker.userProfiles.map { it.id }) in init()
347 it.uiControl != UIControl.HIDE_ENTRY && currentProfileIds.contains(it.userId) in getNumVisiblePackagesLocked()
372 it.uiControl != UIControl.HIDE_BUTTON && currentProfileIds.contains(it.userId) in getNumVisibleButtonsLocked()
436 val profileIds = currentProfileIds.toSet() in updateAppItemsLocked()
870 pw.println("current user profiles = $currentProfileIds") in dump()
/frameworks/base/services/core/java/com/android/server/am/
DUserController.java2958 int[] currentProfileIds = new int[profiles.size()]; // profiles will not be null
2959 for (int i = 0; i < currentProfileIds.length; i++) {
2960 currentProfileIds[i] = profiles.get(i).id;
2964 mCurrentProfileIds = currentProfileIds;
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DPreferencesHelperTest.java353 IntArray currentProfileIds = IntArray.wrap(new int[]{0}); in setUp() local
355 currentProfileIds.add(UserHandle.getUserId(UID_HEADLESS)); in setUp()
357 when(mUserProfiles.getCurrentProfileIds()).thenReturn(currentProfileIds); in setUp()