Home
last modified time | relevance | path

Searched refs:isRearFpsSupported (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/data/repository/
DDeviceEntryFingerprintAuthRepositoryTest.kt137 whenever(authController.isRearFpsSupported).thenReturn(false) in enabledFingerprintTypeProvidesTheCorrectOutputForSpfs()
148 whenever(authController.isRearFpsSupported).thenReturn(false) in enabledFingerprintTypeProvidesTheCorrectOutputForUdfps()
158 whenever(authController.isRearFpsSupported).thenReturn(true) in enabledFingerprintTypeProvidesTheCorrectOutputForRearFps()
170 whenever(authController.isRearFpsSupported).thenReturn(false) in enabledFingerprintTypeProvidesTheCorrectOutputAfterAllAuthenticatorsAreRegistered()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/repository/
DDeviceEntryFingerprintAuthRepository.kt127 else if (authController.isRearFpsSupported) BiometricType.REAR_FINGERPRINT else null in getFpSensorType()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthController.java1019 public boolean isRearFpsSupported() { in isRearFpsSupported() method in AuthController