Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DAuthContainerView.java276 @Nullable List<FaceSensorPropertiesInternal> faceProps, in AuthContainerView() argument
288 this(config, featureFlags, applicationCoroutineScope, fpProps, faceProps, in AuthContainerView()
300 @Nullable List<FaceSensorPropertiesInternal> faceProps, in AuthContainerView() argument
361 Utils.findFirstSensorProperties(faceProps, mConfig.mSensorIds), in AuthContainerView()
364 showLegacyPrompt(config, layoutInflater, fpProps, faceProps); in AuthContainerView()
386 @Nullable FaceSensorPropertiesInternal faceProps, in showPrompt() argument
395 new BiometricModalities(fpProps, faceProps)); in showPrompt()
418 @Nullable List<FaceSensorPropertiesInternal> faceProps in showLegacyPrompt() argument
425 Utils.findFirstSensorProperties(faceProps, mConfig.mSensorIds); in showLegacyPrompt()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
H A DAuthContainerViewTest.kt486 faceProps = faceSensorPropertiesInternal()
507 faceProps: List<FaceSensorPropertiesInternal> = listOf()
513 faceProps.map { it.sensorId }).toIntArray()
522 faceProps,
H A DAuthControllerTest.java259 final List<FaceSensorPropertiesInternal> faceProps = List.of( in setup() local
269 when(mFaceManager.getSensorPropertiesInternal()).thenReturn(faceProps); in setup()
280 mFaceAuthenticatorsRegisteredCaptor.getValue().onAllAuthenticatorsRegistered(faceProps); in setup()