Home
last modified time | relevance | path

Searched refs:isAnySimSecure (Results 1 – 16 of 16) sorted by relevance

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/bouncer/domain/interactor/
DBouncerActionButtonInteractorTest.kt145 mobileConnectionsRepository.isAnySimSecure.value = false in noCall_secureAuthMethod_emergencyCallButton()
177 mobileConnectionsRepository.isAnySimSecure.value = true in noCall_insecureAuthMethodButSecureSim_emergencyCallButton()
195 mobileConnectionsRepository.isAnySimSecure.value = false in noCall_insecure_noButton()
209 mobileConnectionsRepository.isAnySimSecure.value = true in noCall_simSecureButEmergencyNotSupported_noButton()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/
DFakeMobileConnectionsRepository.kt99 override val isAnySimSecure = MutableStateFlow(false) constant
100 override fun getIsAnySimSecure(): Boolean = isAnySimSecure.value in getIsAnySimSecure()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/
DMobileRepositorySwitcher.kt164 override val isAnySimSecure: Flow<Boolean> = activeRepo.flatMapLatest { it.isAnySimSecure } in <lambda>() constant
DMobileConnectionsRepository.kt114 val isAnySimSecure: Flow<Boolean> constant
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DSimBouncerInteractor.kt71 val isAnySimSecure: Flow<Boolean> = mobileConnectionsRepository.isAnySimSecure constant
DBouncerActionButtonInteractor.kt80 mobileConnectionsRepository.isAnySimSecure.asUnitFlow,
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/data/repository/
DBiometricSettingsRepositoryTest.kt464 mobileConnectionsRepository.isAnySimSecure.value = false in anySimSecure_disablesFaceAuth()
472 mobileConnectionsRepository.isAnySimSecure.value = true in anySimSecure_disablesFaceAuth()
490 mobileConnectionsRepository.isAnySimSecure.value = false in anySimSecure_disablesFaceAuthToNotCurrentlyRun()
496 mobileConnectionsRepository.isAnySimSecure.value = true in anySimSecure_disablesFaceAuthToNotCurrentlyRun()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/scene/
DSceneFrameworkIntegrationTest.kt192 mobileConnectionsRepository.isAnySimSecure.value = false in <lambda>()
704 kosmos.fakeMobileConnectionsRepository.isAnySimSecure.value = false in <lambda>()
749 kosmos.fakeMobileConnectionsRepository.isAnySimSecure.value = true in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/scene/domain/startable/
DSceneContainerStartableTest.kt848 kosmos.fakeMobileConnectionsRepository.isAnySimSecure.value = true in <lambda>()
857 kosmos.fakeMobileConnectionsRepository.isAnySimSecure.value = true in <lambda>()
867 kosmos.fakeMobileConnectionsRepository.isAnySimSecure.value = false in <lambda>()
876 kosmos.fakeMobileConnectionsRepository.isAnySimSecure.value = true in <lambda>()
887 kosmos.fakeMobileConnectionsRepository.isAnySimSecure.value = false in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepositoryTest.kt118 mobileConnectionsRepository.isAnySimSecure.value = true in authenticationMethod()
/frameworks/base/packages/SystemUI/src/com/android/systemui/authentication/data/repository/
DAuthenticationRepository.kt213 combine(userRepository.selectedUserInfo, mobileConnectionsRepository.isAnySimSecure) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/demo/
DDemoMobileConnectionsRepository.kt143 override val isAnySimSecure: Flow<Boolean> = flowOf(getIsAnySimSecure()) in <lambda>() constant
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
DBiometricSettingsRepository.kt347 .and(mobileConnectionsRepository.isAnySimSecure.isFalse())
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/
DMobileConnectionsRepositoryImpl.kt307 override val isAnySimSecure: Flow<Boolean> = in <lambda>() constant
/frameworks/base/packages/SystemUI/src/com/android/systemui/scene/domain/startable/
DSceneContainerStartable.kt272 .isAnySimSecure in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/
DMobileConnectionsRepositoryTest.kt1342 val latest by collectLastValue(underTest.isAnySimSecure) in <lambda>()