/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/ui/viewmodel/ |
D | DeviceEntryIconViewModelTest.kt | 77 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 …]
|
D | LockscreenContentViewModelTest.kt | 81 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/ |
D | DeviceEntryUdfpsInteractor.kt | 44 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>()
|
D | AuthRippleInteractor.kt | 38 deviceEntryUdfpsInteractor.isUdfpsSupported.flatMapLatest { isUdfpsSupported -> in <lambda>() method 39 if (isUdfpsSupported) { in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/deviceentry/domain/interactor/ |
D | DeviceEntryUdfpsInteractorTest.kt | 69 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/ |
D | DefaultDeviceEntrySection.kt | 118 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/ |
D | SharedNotificationContainerInteractor.kt | 98 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/ |
D | DeviceEntryFingerprintAuthRepositoryTest.kt | 136 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()
|
D | KeyguardRepositoryImplTest.kt | 301 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/ |
D | DeviceEntryIconViewModel.kt | 76 val isUdfpsSupported: StateFlow<Boolean> = deviceEntryUdfpsInteractor.isUdfpsSupported in <lambda>() constant 166 val useBackgroundProtection: StateFlow<Boolean> = isUdfpsSupported in <lambda>() 255 isUdfpsSupported, in <lambda>()
|
D | AlternateBouncerUdfpsIconViewModel.kt | 50 private val isSupported: Flow<Boolean> = deviceEntryUdfpsInteractor.isUdfpsSupported in <lambda>()
|
D | LockscreenContentViewModel.kt | 55 get() = authController.isUdfpsSupported in <lambda>()
|
D | DeviceEntryForegroundViewModel.kt | 97 deviceEntryUdfpsInteractor.isUdfpsSupported.flatMapLatest { udfpsSupported -> in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
D | LegacyLockIconViewControllerTest.java | 93 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(false); in testUpdateLockIconLocationOnAuthenticatorsRegistered() 114 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(false); in testUpdateLockIconLocationOnUdfpsLocationChanged() 147 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(false); in testLockIconViewBackgroundDisabledWhenUdfpsIsNotSupported()
|
D | LegacyLockIconViewControllerBaseTest.java | 190 when(mKeyguardUpdateMonitor.isUdfpsSupported()).thenReturn(true); in setupUdfps()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/ |
D | KeyguardBottomAreaInteractor.kt | 60 fun shouldConstrainToTopOfLockIcon(): Boolean = repository.isUdfpsSupported()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/ |
D | KeyguardRepository.kt | 259 fun isUdfpsSupported(): Boolean in <lambda>() method 666 override fun isUdfpsSupported(): Boolean = keyguardUpdateMonitor.isUdfpsSupported in isUdfpsSupported() method
|
D | DeviceEntryFingerprintAuthRepository.kt | 125 return if (authController.isUdfpsSupported) BiometricType.UNDER_DISPLAY_FINGERPRINT in getFpSensorType()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | KeyguardIndicationControllerTest.java | 1049 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/ |
D | DeviceEntryIconViewBinder.kt | 103 viewModel.isUdfpsSupported.collect { udfpsSupported -> in <lambda>()
|
/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/keyguard/ui/composable/section/ |
D | LockSection.kt | 161 if (authController.isUdfpsSupported && udfpsLocation != null) { in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ui/view/layout/sections/ |
D | DefaultDeviceEntrySectionTest.kt | 133 whenever(deviceEntryIconViewModel.isUdfpsSupported).thenReturn(MutableStateFlow(false)) in applyConstraints_udfps_refactor_on()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/data/repository/ |
D | FakeKeyguardRepository.kt | 254 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/ |
D | BiometricUnlockController.java | 746 && mUpdateMonitor.isUdfpsSupported()) { in onBiometricAuthFailed() 866 if (mUpdateMonitor.isUdfpsSupported()) { in dump()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/ |
D | QuickSettingsControllerImplBaseTest.java | 210 when(deviceEntryUdfpsInteractor.isUdfpsSupported()).thenReturn( in setup()
|