Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DHideNotifsForOtherUsersCoordinator.java70 public void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles) {
73 profileIdsToStr(currentProfiles));
78 private String profileIdsToStr(SparseArray<UserInfo> currentProfiles) { in profileIdsToStr() argument
81 for (int i = 0; i < currentProfiles.size(); i++) { in profileIdsToStr()
82 sb.append(currentProfiles.keyAt(i)); in profileIdsToStr()
83 if (i < currentProfiles.size() - 1) { in profileIdsToStr()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/people/
DPeopleHubNotificationListener.kt179 currentProfiles: SparseArray<UserInfo>? in extractPersonKey()
203 val currentProfiles = notifLockscreenUserMgr.currentProfiles in extractPersonKey() constant
205 currentProfiles[person.userId]?.isQuietModeEnabled == false in extractPersonKey()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationLockscreenUserManager.java95 default void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles) {} in onCurrentProfilesChanged() argument
DNotificationLockscreenUserManagerImpl.java604 SparseArray<UserInfo> currentProfiles = getCurrentProfiles(); in updatePublicMode() local
606 for (int i = currentProfiles.size() - 1; i >= 0; i--) { in updatePublicMode()
607 final int userId = currentProfiles.valueAt(i).id; in updatePublicMode()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbles.java236 void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles); in onCurrentProfilesChanged() argument
DBubbleController.java528 public void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles) { in onCurrentProfilesChanged() argument
529 mCurrentProfiles = currentProfiles; in onCurrentProfilesChanged()
1640 public void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles) { in onCurrentProfilesChanged() argument
1642 BubbleController.this.onCurrentProfilesChanged(currentProfiles); in onCurrentProfilesChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
DBubblesManager.java255 public void onCurrentProfilesChanged(SparseArray<UserInfo> currentProfiles) { in BubblesManager()
256 mBubbles.onCurrentProfilesChanged(currentProfiles); in BubblesManager()