Searched refs:currentProfileIds (Results 1 – 4 of 4) sorted by relevance
198 int[] currentProfileIds = activityManagerInternal.getCurrentProfileIds(); in dump() local199 pw.println("current users: u" + Arrays.toString(currentProfileIds)); in dump()203 for (int userId : currentProfileIds) { in dump()
195 private var currentProfileIds = mutableSetOf<Int>() variable214 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()
2958 int[] currentProfileIds = new int[profiles.size()]; // profiles will not be null2959 for (int i = 0; i < currentProfileIds.length; i++) {2960 currentProfileIds[i] = profiles.get(i).id;2964 mCurrentProfileIds = currentProfileIds;
353 IntArray currentProfileIds = IntArray.wrap(new int[]{0}); in setUp() local355 currentProfileIds.add(UserHandle.getUserId(UID_HEADLESS)); in setUp()357 when(mUserProfiles.getCurrentProfileIds()).thenReturn(currentProfileIds); in setUp()