Home
last modified time | relevance | path

Searched refs:fpProps (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/
H A DAuthContainerView.java275 @Nullable List<FingerprintSensorPropertiesInternal> fpProps, in AuthContainerView() argument
288 this(config, featureFlags, applicationCoroutineScope, fpProps, faceProps, in AuthContainerView()
299 @Nullable List<FingerprintSensorPropertiesInternal> fpProps, in AuthContainerView() argument
360 Utils.findFirstSensorProperties(fpProps, mConfig.mSensorIds), in AuthContainerView()
364 showLegacyPrompt(config, layoutInflater, fpProps, faceProps); in AuthContainerView()
385 @Nullable FingerprintSensorPropertiesInternal fpProps, in showPrompt() argument
395 new BiometricModalities(fpProps, faceProps)); in showPrompt()
406 if (fpProps != null && fpProps.isAnyUdfpsType()) { in showPrompt()
407 view.setUdfpsAdapter(new UdfpsDialogMeasureAdapter(view, fpProps), in showPrompt()
417 @Nullable List<FingerprintSensorPropertiesInternal> fpProps, in showLegacyPrompt() argument
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/
H A DAuthControllerTest.java249 final List<FingerprintSensorPropertiesInternal> fpProps = List.of( in setup() local
257 when(mFingerprintManager.getSensorPropertiesInternal()).thenReturn(fpProps); in setup()
279 mFpAuthenticatorsRegisteredCaptor.getValue().onAllAuthenticatorsRegistered(fpProps); in setup()