Home
last modified time | relevance | path

Searched refs:FaceSensorProperties (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/java/android/hardware/face/
DFaceSensorProperties.java33 public class FaceSensorProperties extends SensorProperties { class
58 @FaceSensorProperties.SensorType
64 public static FaceSensorProperties from(FaceSensorPropertiesInternal internalProp) { in from()
69 return new FaceSensorProperties(internalProp.sensorId, in from()
77 public FaceSensorProperties(int sensorId, int sensorStrength, in FaceSensorProperties() method in FaceSensorProperties
79 @FaceSensorProperties.SensorType int sensorType) { in FaceSensorProperties()
88 @FaceSensorProperties.SensorType
DFaceSensorPropertiesInternal.java35 public final @FaceSensorProperties.SensorType int sensorType;
53 @FaceSensorProperties.SensorType int sensorType, boolean supportsFaceDetection, in FaceSensorPropertiesInternal()
DFaceManager.java723 public List<FaceSensorProperties> getSensorProperties() { in getSensorProperties()
724 final List<FaceSensorProperties> properties = new ArrayList<>(); in getSensorProperties()
728 properties.add(FaceSensorProperties.from(internalProp)); in getSensorProperties()
/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/sensors/face/
DFaceServiceRegistryTest.java34 import android.hardware.face.FaceSensorProperties;
85 List.of(), FaceSensorProperties.TYPE_RGB, in setup()
91 List.of(), FaceSensorProperties.TYPE_IR, in setup()
DFaceServiceTest.java21 import static android.hardware.face.FaceSensorProperties.TYPE_UNKNOWN;
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/biometrics/
DBiometricTestExtensions.kt26 import android.hardware.face.FaceSensorProperties in <lambda>()
94 FaceSensorProperties.TYPE_RGB, in faceSensorPropertiesInternal()
DAuthControllerTest.java62 import android.hardware.face.FaceSensorProperties;
246 FaceSensorProperties.TYPE_RGB, in setup()
/frameworks/base/services/tests/servicestests/src/com/android/server/
DBinaryTransparencyServiceTest.java36 import android.hardware.face.FaceSensorProperties;
239 FaceSensorProperties.TYPE_RGB, in testCollectBiometricProperties_enablesFeature_logsFaceProperties()
/frameworks/base/core/tests/coretests/src/android/hardware/face/
DFaceManagerTest.java112 FaceSensorProperties.STRENGTH_STRONG, in setUp()
115 FaceSensorProperties.TYPE_UNKNOWN, in setUp()
/frameworks/base/services/core/java/com/android/server/
DBinaryTransparencyService.java56 import android.hardware.face.FaceSensorProperties;
1324 private int toFaceSensorType(@FaceSensorProperties.SensorType int sensorType) { in toFaceSensorType()
1326 case FaceSensorProperties.TYPE_RGB: in toFaceSensorType()
1329 case FaceSensorProperties.TYPE_IR: in toFaceSensorType()
1450 final FaceSensorProperties prop = in collectBiometricProperties()
1451 FaceSensorProperties.from(propInternal); in collectBiometricProperties()
/frameworks/base/services/tests/mockingservicestests/src/com/android/server/trust/
DTrustManagerServiceTest.java64 import android.hardware.face.FaceSensorProperties;
773 FaceSensorProperties sensor = new FaceSensorProperties( in setupFace()
774 sensorId, strength, componentInfo, FaceSensorProperties.TYPE_RGB); in setupFace()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/deviceentry/data/repository/
DDeviceEntryFaceAuthRepositoryTest.kt32 import android.hardware.face.FaceSensorProperties
1277 FaceSensorProperties.STRENGTH_STRONG, in createFaceSensorProperties()
1280 FaceSensorProperties.TYPE_UNKNOWN, in createFaceSensorProperties()
/frameworks/base/services/core/java/com/android/server/biometrics/
DAuthService.java55 import android.hardware.face.FaceSensorProperties;
1024 componentInfo, FaceSensorProperties.TYPE_UNKNOWN, supportsFaceDetect, in getHidlFaceSensorProps()