Home
last modified time | relevance | path

Searched refs:isProfileAvailable (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationLockscreenUserManager.java52 boolean isProfileAvailable(int userId); in isProfileAvailable() method
DNotificationLockscreenUserManagerImpl.java469 public boolean isProfileAvailable(int userId) { in isProfileAvailable() method in NotificationLockscreenUserManagerImpl
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/domain/pipeline/
DLegacyMediaDataFilterImpl.kt119 !lockscreenUserManager.isProfileAvailable(data.userId) in <lambda>()
245 if (!lockscreenUserManager.isProfileAvailable(data.userId)) { in <lambda>()
DMediaDataFilterImpl.kt114 !lockscreenUserManager.isProfileAvailable(data.userId) in <lambda>()
286 if (!lockscreenUserManager.isProfileAvailable(data.userId)) { in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/domain/pipeline/
DLegacyMediaDataFilterImplTest.kt136 whenever(lockscreenUserManager.isProfileAvailable(anyInt())).thenReturn(false) in setUser()
138 whenever(lockscreenUserManager.isProfileAvailable(eq(id))).thenReturn(true) in setUser()
139 whenever(lockscreenUserManager.isProfileAvailable(eq(PRIVATE_PROFILE))).thenReturn(true) in setUser()
147 whenever(lockscreenUserManager.isProfileAvailable(eq(PRIVATE_PROFILE))).thenReturn(false) in setPrivateProfileUnavailable()
DMediaDataFilterImplTest.kt157 whenever(lockscreenUserManager.isProfileAvailable(anyInt())).thenReturn(false) in setUser()
159 whenever(lockscreenUserManager.isProfileAvailable(eq(id))).thenReturn(true) in setUser()
160 whenever(lockscreenUserManager.isProfileAvailable(eq(PRIVATE_PROFILE))).thenReturn(true) in setUser()
168 whenever(lockscreenUserManager.isProfileAvailable(eq(PRIVATE_PROFILE))).thenReturn(false) in setPrivateProfileUnavailable()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/media/controls/ui/viewmodel/
DMediaControlViewModelTest.kt73 whenever(notificationLockscreenUserManager.isProfileAvailable(USER_ID)).thenReturn(true) in addMediaControl_mediaControlViewModelIsLoaded()
DMediaCarouselViewModelTest.kt171 whenever(notificationLockscreenUserManager.isProfileAvailable(USER_ID)).thenReturn(true) in loadMediaControl()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/media/controls/domain/interactor/
DMediaControlInteractorTest.kt82 whenever(notificationLockscreenUserManager.isProfileAvailable(USER_ID)).thenReturn(true) in onMediaDataUpdated()