/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ |
H A D | BiometricTestExtensions.kt | 24 import android.hardware.biometrics.SensorProperties 107 if (strong) SensorProperties.STRENGTH_STRONG else SensorProperties.STRENGTH_WEAK, 141 if (strong) SensorProperties.STRENGTH_STRONG else SensorProperties.STRENGTH_WEAK, 160 SensorProperties.STRENGTH_CONVENIENCE -> 162 SensorProperties.STRENGTH_WEAK -> Authenticators.BIOMETRIC_WEAK 163 SensorProperties.STRENGTH_STRONG -> Authenticators.BIOMETRIC_STRONG
|
H A D | UdfpsDialogMeasureAdapterTest.java | 23 import android.hardware.biometrics.SensorProperties; 64 0 /* sensorId */, SensorProperties.STRENGTH_STRONG, 5 /* maxEnrollmentsPerUser */, in testUdfpsBottomSpacerHeightForPortrait() 130 0 /* sensorId */, SensorProperties.STRENGTH_STRONG, 5 /* maxEnrollmentsPerUser */, in testUdfpsHorizontalSpacerWidthForLandscape()
|
H A D | AuthBiometricFingerprintIconControllerTest.kt | 20 import android.hardware.biometrics.SensorProperties 89 SensorProperties.STRENGTH_STRONG,
|
H A D | AuthControllerTest.java | 62 import android.hardware.biometrics.SensorProperties; 252 SensorProperties.STRENGTH_STRONG, in setup() 262 SensorProperties.STRENGTH_STRONG, in setup()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/shared/model/ |
H A D | SensorStrength.kt | 19 import android.hardware.biometrics.SensorProperties 31 SensorProperties.STRENGTH_CONVENIENCE -> SensorStrength.CONVENIENCE 32 SensorProperties.STRENGTH_WEAK -> SensorStrength.WEAK 33 SensorProperties.STRENGTH_STRONG -> SensorStrength.STRONG
|
/aosp14/frameworks/base/core/java/android/hardware/biometrics/ |
H A D | SensorProperties.java | 33 public class SensorProperties { class 144 public SensorProperties(int sensorId, @Strength int sensorStrength, in SensorProperties() method in SensorProperties 178 public static SensorProperties from(SensorPropertiesInternal internalProp) { in from() 183 return new SensorProperties(internalProp.sensorId, internalProp.sensorStrength, in from()
|
H A D | SensorPropertiesInternal.java | 35 @SensorProperties.Strength public final int sensorStrength; 47 public SensorPropertiesInternal(int sensorId, @SensorProperties.Strength int sensorStrength, in SensorPropertiesInternal()
|
H A D | BiometricManager.java | 357 public List<SensorProperties> getSensorProperties() { in getSensorProperties() 361 final List<SensorProperties> properties = new ArrayList<>(); in getSensorProperties() 363 properties.add(SensorProperties.from(internalProp)); in getSensorProperties()
|
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/ |
H A D | Utils.java | 53 import android.hardware.biometrics.SensorProperties; 538 public static @SensorProperties.Strength int authenticatorStrengthToPropertyStrength( in authenticatorStrengthToPropertyStrength() 542 return SensorProperties.STRENGTH_CONVENIENCE; in authenticatorStrengthToPropertyStrength() 544 return SensorProperties.STRENGTH_WEAK; in authenticatorStrengthToPropertyStrength() 546 return SensorProperties.STRENGTH_STRONG; in authenticatorStrengthToPropertyStrength() 553 @SensorProperties.Strength int strength) { in propertyStrengthToAuthenticatorStrength() 555 case SensorProperties.STRENGTH_CONVENIENCE: in propertyStrengthToAuthenticatorStrength() 557 case SensorProperties.STRENGTH_WEAK: in propertyStrengthToAuthenticatorStrength() 559 case SensorProperties.STRENGTH_STRONG: in propertyStrengthToAuthenticatorStrength()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/domain/model/ |
H A D | BiometricModalities.kt | 19 import android.hardware.biometrics.SensorProperties 54 get() = faceProperties?.sensorStrength == SensorProperties.STRENGTH_STRONG
|
/aosp14/frameworks/base/core/java/android/hardware/fingerprint/ |
H A D | FingerprintSensorPropertiesInternal.java | 27 import android.hardware.biometrics.SensorProperties; 47 @SensorProperties.Strength int strength, int maxEnrollmentsPerUser, in FingerprintSensorPropertiesInternal() 68 @SensorProperties.Strength int strength, int maxEnrollmentsPerUser, in FingerprintSensorPropertiesInternal()
|
H A D | FingerprintSensorProperties.java | 22 import android.hardware.biometrics.SensorProperties; 33 public class FingerprintSensorProperties extends SensorProperties {
|
/aosp14/frameworks/base/core/java/android/hardware/face/ |
H A D | FaceSensorProperties.java | 22 import android.hardware.biometrics.SensorProperties; 33 public class FaceSensorProperties extends SensorProperties {
|
H A D | FaceSensorPropertiesInternal.java | 21 import android.hardware.biometrics.SensorProperties; 51 public FaceSensorPropertiesInternal(int sensorId, @SensorProperties.Strength int strength, in FaceSensorPropertiesInternal()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/data/repository/ |
H A D | FacePropertyRepositoryImplTest.kt | 20 import android.hardware.biometrics.SensorProperties 82 listOf(createSensorProperties(1, SensorProperties.STRENGTH_STRONG))
|
H A D | FingerprintRepositoryImplTest.kt | 21 import android.hardware.biometrics.SensorProperties 92 SensorProperties.STRENGTH_STRONG,
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/data/repository/ |
H A D | FingerprintPropertyRepository.kt | 23 import android.hardware.biometrics.SensorProperties 124 SensorProperties.STRENGTH_CONVENIENCE,
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/ |
H A D | BinaryTransparencyServiceTest.java | 34 import android.hardware.biometrics.SensorProperties; 191 SensorProperties.STRENGTH_STRONG, in testCollectBiometricProperties_enablesFeature_logsFingerprintProperties() 233 SensorProperties.STRENGTH_CONVENIENCE, in testCollectBiometricProperties_enablesFeature_logsFaceProperties()
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/sensors/fingerprint/ |
H A D | FingerprintServiceRegistryTest.java | 22 import static android.hardware.biometrics.SensorProperties.STRENGTH_STRONG; 23 import static android.hardware.biometrics.SensorProperties.STRENGTH_WEAK;
|
H A D | BiometricStateCallbackTest.java | 19 import static android.hardware.biometrics.SensorProperties.STRENGTH_STRONG;
|
H A D | FingerprintServiceTest.java | 23 import static android.hardware.biometrics.SensorProperties.STRENGTH_STRONG;
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/sensors/face/ |
H A D | FaceServiceRegistryTest.java | 22 import static android.hardware.biometrics.SensorProperties.STRENGTH_STRONG; 23 import static android.hardware.biometrics.SensorProperties.STRENGTH_WEAK;
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/sensors/face/hidl/ |
H A D | Face10Test.java | 31 import android.hardware.biometrics.SensorProperties; 113 SensorProperties.STRENGTH_STRONG, maxEnrollmentsPerUser, componentInfo, in setUp()
|
/aosp14/frameworks/base/services/core/java/com/android/server/ |
H A D | BinaryTransparencyService.java | 53 import android.hardware.biometrics.SensorProperties; 54 import android.hardware.biometrics.SensorProperties.ComponentInfo; 1344 private int toSensorStrength(@SensorProperties.Strength int sensorStrength) { in toSensorStrength() 1346 case SensorProperties.STRENGTH_CONVENIENCE: in toSensorStrength() 1349 case SensorProperties.STRENGTH_WEAK: in toSensorStrength() 1352 case SensorProperties.STRENGTH_STRONG: in toSensorStrength() 1368 private void logBiometricProperties(SensorProperties prop, int modality, int sensorType) { in logBiometricProperties()
|
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/ |
H A D | AuthSessionTest.java | 61 import android.hardware.biometrics.SensorProperties; 667 SensorProperties.STRENGTH_STRONG, in setupFingerprint()
|