Home
last modified time | relevance | path

Searched refs:currentProfiles (Results 1 – 7 of 7) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DHideNotifsForOtherUsersCoordinator.java72 public void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles) {
75 profileIdsToStr(currentProfiles));
80 private String profileIdsToStr(SparseArray<UserInfo> currentProfiles) { in profileIdsToStr() argument
83 for (int i = 0; i < currentProfiles.size(); i++) { in profileIdsToStr()
84 sb.append(currentProfiles.keyAt(i)); in profileIdsToStr()
85 if (i < currentProfiles.size() - 1) { in profileIdsToStr()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/people/
H A DPeopleHubNotificationListener.kt179 currentProfiles: SparseArray<UserInfo>?
203 val currentProfiles = notifLockscreenUserMgr.currentProfiles regex
205 currentProfiles[person.userId]?.isQuietModeEnabled == false
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationLockscreenUserManager.java95 default void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles) {} in onCurrentProfilesChanged() argument
H A DNotificationLockscreenUserManagerImpl.java616 SparseArray<UserInfo> currentProfiles = getCurrentProfiles(); in updatePublicMode() local
618 for (int i = currentProfiles.size() - 1; i >= 0; i--) { in updatePublicMode()
619 final int userId = currentProfiles.valueAt(i).id; in updatePublicMode()
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubbles.java225 void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles); in onCurrentProfilesChanged() argument
H A DBubbleController.java533 public void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles) { in onCurrentProfilesChanged() argument
534 mCurrentProfiles = currentProfiles; in onCurrentProfilesChanged()
1648 public void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles) { in onCurrentProfilesChanged() argument
1650 BubbleController.this.onCurrentProfilesChanged(currentProfiles); in onCurrentProfilesChanged()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
H A DBubblesManager.java245 public void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles) { in BubblesManager()
246 mBubbles.onCurrentProfilesChanged(currentProfiles); in BubblesManager()