Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
DAuthContainerView.java307 @Nullable List<FaceSensorPropertiesInternal> faceProps, in AuthContainerView() argument
318 this(config, applicationCoroutineScope, fpProps, faceProps, in AuthContainerView()
329 @Nullable List<FaceSensorPropertiesInternal> faceProps, in AuthContainerView() argument
359 mFaceProps = faceProps; in AuthContainerView()
362 Utils.findFirstSensorProperties(faceProps, mConfig.mSensorIds)); in AuthContainerView()
416 Utils.findFirstSensorProperties(faceProps, mConfig.mSensorIds), in AuthContainerView()
438 @Nullable FaceSensorPropertiesInternal faceProps, in showPrompt() argument
442 addBiometricView(config, layoutInflater, viewModel, fpProps, faceProps, vibratorHelper); in showPrompt()
455 @Nullable FaceSensorPropertiesInternal faceProps, in addBiometricView() argument
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
DAuthContainerViewTest.kt632 faceProps = faceSensorPropertiesInternal() in <lambda>()
653 faceProps: List<FaceSensorPropertiesInternal> = listOf(), in <lambda>()
662 (fingerprintProps.map { it.sensorId } + faceProps.map { it.sensorId }) in <lambda>()
678 faceProps, in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/biometrics/
DAuthControllerTest.java240 final List<FaceSensorPropertiesInternal> faceProps = List.of( in setup() local
250 when(mFaceManager.getSensorPropertiesInternal()).thenReturn(faceProps); in setup()
261 mFaceAuthenticatorsRegisteredCaptor.getValue().onAllAuthenticatorsRegistered(faceProps); in setup()