Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationLockscreenUserManager.java50 void addUserChangedListener(UserChangedListener listener); in addUserChangedListener()
56 void removeUserChangedListener(UserChangedListener listener); in removeUserChangedListener()
93 interface UserChangedListener { interface
H A DNotificationLockscreenUserManagerImpl.java102 private final List<UserChangedListener> mListeners = new ArrayList<>();
138 for (UserChangedListener listener : mListeners) {
209 for (UserChangedListener listener : mListeners) {
526 for (UserChangedListener listener : mListeners) { in updateCurrentProfilesCache()
617 public void addUserChangedListener(UserChangedListener listener) { in addUserChangedListener()
622 public void removeUserChangedListener(UserChangedListener listener) { in removeUserChangedListener()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DHideNotifsForOtherUsersCoordinator.java23 import com.android.systemui.statusbar.NotificationLockscreenUserManager.UserChangedListener;
65 private final UserChangedListener mUserChangedListener = new UserChangedListener() {
H A DViewConfigCoordinator.kt25 import com.android.systemui.statusbar.NotificationLockscreenUserManager.UserChangedListener
64 private val mUserChangedListener = object : UserChangedListener {
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DHideNotifsForOtherUsersCoordinatorTest.java34 import com.android.systemui.statusbar.NotificationLockscreenUserManager.UserChangedListener;
57 @Captor private ArgumentCaptor<UserChangedListener> mUserChangedListenerCaptor;
60 private UserChangedListener mCapturedUserChangeListener;
H A DViewConfigCoordinatorTest.kt25 import com.android.systemui.statusbar.NotificationLockscreenUserManager.UserChangedListener
48 private lateinit var userChangedListener: UserChangedListener
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutControllerTest.java71 import com.android.systemui.statusbar.NotificationLockscreenUserManager.UserChangedListener;
372 ArgumentCaptor<UserChangedListener> userChangedCaptor = ArgumentCaptor in testOnUserChange_verifySensitiveProfile()
373 .forClass(UserChangedListener.class); in testOnUserChange_verifySensitiveProfile()
379 UserChangedListener changedListener = userChangedCaptor.getValue(); in testOnUserChange_verifySensitiveProfile()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardBypassController.kt163 object : NotificationLockscreenUserManager.UserChangedListener {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutController.java83 import com.android.systemui.statusbar.NotificationLockscreenUserManager.UserChangedListener;
349 private final UserChangedListener mLockscreenUserChangeListener = new UserChangedListener() {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
H A DBubblesManager.java224 new NotificationLockscreenUserManager.UserChangedListener() { in BubblesManager()