Home
last modified time | relevance | path

Searched refs:faceProperties (Results 1 – 5 of 5) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/domain/model/
H A DBiometricModalities.kt26 val faceProperties: FaceSensorPropertiesInternal? = null,
38 get() = faceProperties != null
54 get() = faceProperties?.sensorStrength == SensorProperties.STRENGTH_STRONG
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/domain/model/
H A DBiometricModalitiesTest.kt55 with(BiometricModalities(faceProperties = faceSensorPropertiesInternal().first())) {
70 faceProperties = faceSensorPropertiesInternal(strong = true).first()
79 faceProperties = faceSensorPropertiesInternal(strong = false).first()
91 faceProperties = faceSensorPropertiesInternal().first(),
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DAuthContainerView.java424 final FaceSensorPropertiesInternal faceProperties = in showLegacyPrompt() local
427 if (fpProperties != null && faceProperties != null) { in showLegacyPrompt()
435 faceProperties.sensorStrength == STRENGTH_STRONG); in showLegacyPrompt()
445 } else if (faceProperties != null) { in showLegacyPrompt()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/domain/interactor/
H A DPromptSelectorInteractorImplTest.kt106 faceProperties = faceSensorPropertiesInternal().first(),
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ui/viewmodel/
H A DPromptViewModelTest.kt881 BiometricModalities(fingerprintProperties = fingerprint, faceProperties = face),