Home
last modified time | relevance | path

Searched refs:UserChangedListener (Results 1 – 10 of 10) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationLockscreenUserManager.java50 void addUserChangedListener(UserChangedListener listener); in addUserChangedListener()
62 void removeUserChangedListener(UserChangedListener listener); in removeUserChangedListener()
93 interface UserChangedListener { interface
H A DNotificationLockscreenUserManagerImpl.java97 private final List<UserChangedListener> mListeners = new ArrayList<>();
142 for (UserChangedListener listener : mListeners) {
552 for (UserChangedListener listener : mListeners) { in updateCurrentProfilesCache()
637 public void addUserChangedListener(UserChangedListener listener) { in addUserChangedListener()
647 public void removeUserChangedListener(UserChangedListener listener) { in removeUserChangedListener()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DHideNotifsForOtherUsersCoordinator.java23 import com.android.systemui.statusbar.NotificationLockscreenUserManager.UserChangedListener;
68 private final UserChangedListener mUserChangedListener = new UserChangedListener() {
H A DViewConfigCoordinator.kt23 import com.android.systemui.statusbar.NotificationLockscreenUserManager.UserChangedListener
43 ) : Coordinator, UserChangedListener, ConfigurationController.ConfigurationListener {
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DHideNotifsForOtherUsersCoordinatorTest.java32 import com.android.systemui.statusbar.NotificationLockscreenUserManager.UserChangedListener;
56 @Captor private ArgumentCaptor<UserChangedListener> mUserChangedListenerCaptor;
59 private UserChangedListener mCapturedUserChangeListener;
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutControllerTest.java56 import com.android.systemui.statusbar.NotificationLockscreenUserManager.UserChangedListener;
303 ArgumentCaptor<UserChangedListener> userChangedCaptor = ArgumentCaptor in testOnUserChange_verifySensitiveProfile()
304 .forClass(UserChangedListener.class); in testOnUserChange_verifySensitiveProfile()
311 UserChangedListener changedListener = userChangedCaptor.getValue(); in testOnUserChange_verifySensitiveProfile()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/people/
H A DPeopleHubNotificationListener.kt176 object : NotificationLockscreenUserManager.UserChangedListener {
258 listener: NotificationLockscreenUserManager.UserChangedListener
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardBypassController.kt145 object : NotificationLockscreenUserManager.UserChangedListener {
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutController.java80 import com.android.systemui.statusbar.NotificationLockscreenUserManager.UserChangedListener;
328 private final UserChangedListener mLockscreenUserChangeListener = new UserChangedListener() {
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
H A DBubblesManager.java238 new NotificationLockscreenUserManager.UserChangedListener() { in BubblesManager()