Home
last modified time | relevance | path

Searched refs:isUdfpsSupported (Results 1 – 25 of 33) sorted by relevance

12

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/ui/viewmodel/
DDeviceEntryIconViewModelTest.kt77 isUdfpsSupported = true, in isLongPressEnabled_udfpsRunning()
88 isUdfpsSupported = true, in isLongPressEnabled_unlocked()
98 setUpState(isUdfpsSupported = true) in isLongPressEnabled_lock()
128 isUdfpsSupported = true, in iconType_fingerprint()
158 isUdfpsSupported = true, in iconType_none()
171 isUdfpsSupported = true, in iconType_fingerprint_withSceneContainer()
203 isUdfpsSupported = true, in iconType_none_withSceneContainer()
225 setUpState(isUdfpsSupported = true) in accessibilityDelegateHint_accessibilityEnabled_locked()
232 isUdfpsSupported = true, in accessibilityDelegateHint_accessibilityEnabled_locked()
254 isUdfpsSupported = true, in accessibilityDelegateHint_accessibilityEnabled_unlocked()
[all …]
DLockscreenContentViewModelTest.kt81 whenever(authController.isUdfpsSupported).thenReturn(true) in <lambda>()
90 whenever(authController.isUdfpsSupported).thenReturn(false) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/deviceentry/domain/interactor/
DDeviceEntryUdfpsInteractor.kt44 val isUdfpsSupported: StateFlow<Boolean> = fingerprintPropertyInteractor.isUdfps in <lambda>() constant
48 combine(isUdfpsSupported, biometricSettingsRepository.isFingerprintEnrolledAndEnabled) { in <lambda>()
55 isUdfpsSupported.flatMapLatest { isUdfps -> in <lambda>()
68 isUdfpsSupported.flatMapLatest { in <lambda>()
DAuthRippleInteractor.kt38 deviceEntryUdfpsInteractor.isUdfpsSupported.flatMapLatest { isUdfpsSupported -> in <lambda>() method
39 if (isUdfpsSupported) { in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/deviceentry/domain/interactor/
DDeviceEntryUdfpsInteractorTest.kt69 val isUdfpsSupported by collectLastValue(underTest.isUdfpsSupported) in udfpsSupported_rearFp_false() constant
71 assertThat(isUdfpsSupported).isFalse() in udfpsSupported_rearFp_false()
77 val isUdfpsSupported by collectLastValue(underTest.isUdfpsSupported) in udfpsSupoprted() constant
79 assertThat(isUdfpsSupported).isTrue() in udfpsSupoprted()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/view/layout/sections/
DDefaultDeviceEntrySection.kt118 val isUdfpsSupported = in <lambda>() constant
124 deviceEntryIconViewModel.get().isUdfpsSupported.value in <lambda>()
126 authController.isUdfpsSupported in <lambda>()
145 if (isUdfpsSupported) { in <lambda>()
231 val isUdfpsSupported = deviceEntryIconViewModel.get().isUdfpsSupported.value in <lambda>() constant
235 if (isUdfpsSupported) { in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/domain/interactor/
DSharedNotificationContainerInteractor.kt98 deviceEntryUdfpsInteractor.isUdfpsSupported, in <lambda>()
99 ) { ambientIndicationVisible, isUdfpsSupported -> in <lambda>() method
100 isUdfpsSupported || !ambientIndicationVisible in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/data/repository/
DDeviceEntryFingerprintAuthRepositoryTest.kt136 whenever(authController.isUdfpsSupported).thenReturn(false) in enabledFingerprintTypeProvidesTheCorrectOutputForSpfs()
147 whenever(authController.isUdfpsSupported).thenReturn(true) in enabledFingerprintTypeProvidesTheCorrectOutputForUdfps()
157 whenever(authController.isUdfpsSupported).thenReturn(false) in enabledFingerprintTypeProvidesTheCorrectOutputForRearFps()
169 whenever(authController.isUdfpsSupported).thenReturn(false) in enabledFingerprintTypeProvidesTheCorrectOutputAfterAllAuthenticatorsAreRegistered()
180 whenever(authController.isUdfpsSupported).thenReturn(true) in enabledFingerprintTypeProvidesTheCorrectOutputAfterAllAuthenticatorsAreRegistered()
DKeyguardRepositoryImplTest.kt301 fun isUdfpsSupported() = in <lambda>() method in com.android.systemui.keyguard.data.repository.KeyguardRepositoryImplTest
303 whenever(keyguardUpdateMonitor.isUdfpsSupported).thenReturn(true) in <lambda>()
304 assertThat(underTest.isUdfpsSupported()).isTrue() in <lambda>()
306 whenever(keyguardUpdateMonitor.isUdfpsSupported).thenReturn(false) in <lambda>()
307 assertThat(underTest.isUdfpsSupported()).isFalse() in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/viewmodel/
DDeviceEntryIconViewModel.kt76 val isUdfpsSupported: StateFlow<Boolean> = deviceEntryUdfpsInteractor.isUdfpsSupported in <lambda>() constant
166 val useBackgroundProtection: StateFlow<Boolean> = isUdfpsSupported in <lambda>()
255 isUdfpsSupported, in <lambda>()
DAlternateBouncerUdfpsIconViewModel.kt50 private val isSupported: Flow<Boolean> = deviceEntryUdfpsInteractor.isUdfpsSupported in <lambda>()
DLockscreenContentViewModel.kt55 get() = authController.isUdfpsSupported in <lambda>()
DDeviceEntryForegroundViewModel.kt97 deviceEntryUdfpsInteractor.isUdfpsSupported.flatMapLatest { udfpsSupported -> in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DLegacyLockIconViewControllerTest.java93 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(false); in testUpdateLockIconLocationOnAuthenticatorsRegistered()
114 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(false); in testUpdateLockIconLocationOnUdfpsLocationChanged()
147 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(false); in testLockIconViewBackgroundDisabledWhenUdfpsIsNotSupported()
DLegacyLockIconViewControllerBaseTest.java190 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(true); in setupUdfps()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/
DKeyguardBottomAreaInteractor.kt60 fun shouldConstrainToTopOfLockIcon(): Boolean = repository.isUdfpsSupported()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
DKeyguardRepository.kt259 fun isUdfpsSupported(): Boolean in <lambda>() method
666 override fun isUdfpsSupported(): Boolean = keyguardUpdateMonitor.isUdfpsSupported in isUdfpsSupported() method
DDeviceEntryFingerprintAuthRepository.kt125 return if (authController.isUdfpsSupported) BiometricType.UNDER_DISPLAY_FINGERPRINT in getFpSensorType()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DKeyguardIndicationControllerTest.java1049 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(true); in coEx_faceSuccess_showsPressToOpen()
1073 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(true); in coEx_faceSuccess_touchExplorationEnabled_showsFaceUnlockedSwipeToOpen()
1097 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(true); in coEx_faceSuccess_a11yEnabled_showsFaceUnlockedSwipeToOpen()
1120 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(false); in faceOnly_faceSuccess_showsFaceUnlockedSwipeToOpen()
1142 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(true); in udfpsOnly_a11yEnabled_showsSwipeToOpen()
1162 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(true); in udfpsOnly_showsPressToOpen()
1183 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(false); in canSkipBouncer_noSecurity_showSwipeToUnlockHint()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/
DDeviceEntryIconViewBinder.kt103 viewModel.isUdfpsSupported.collect { udfpsSupported -> in <lambda>()
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/keyguard/ui/composable/section/
DLockSection.kt161 if (authController.isUdfpsSupported && udfpsLocation != null) { in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ui/view/layout/sections/
DDefaultDeviceEntrySectionTest.kt133 whenever(deviceEntryIconViewModel.isUdfpsSupported).thenReturn(MutableStateFlow(false)) in applyConstraints_udfps_refactor_on()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/data/repository/
DFakeKeyguardRepository.kt254 override fun isUdfpsSupported(): Boolean { in isUdfpsSupported() method in com.android.systemui.keyguard.data.repository.FakeKeyguardRepository
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DBiometricUnlockController.java746 && mUpdateMonitor.isUdfpsSupported()) { in onBiometricAuthFailed()
866 if (mUpdateMonitor.isUdfpsSupported()) { in dump()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
DQuickSettingsControllerImplBaseTest.java210 when(deviceEntryUdfpsInteractor.isUdfpsSupported()).thenReturn( in setup()

12