Home
last modified time | relevance | path

Searched refs:sensorLocations (Results 1 – 8 of 8) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/data/repository/
H A DFingerprintRepositoryImplTest.kt81 val sensorLocations by collectLastValue(repository.sensorLocations) regex
129 assertThat(sensorLocations?.size).isEqualTo(2)
130 assertThat(sensorLocations).containsKey("display_id_1")
131 with(sensorLocations?.get("display_id_1")!!) {
137 assertThat(sensorLocations).containsKey("")
138 with(sensorLocations?.get("")!!) {
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/biometrics/data/repository/
H A DFakeFingerprintPropertyRepository.kt40 override val sensorLocations = _sensorLocations.asStateFlow()
46 sensorLocations: Map<String, SensorLocationInternal>
51 _sensorLocations.value = sensorLocations
/aosp14/frameworks/base/core/java/android/hardware/fingerprint/
H A DFingerprintSensorPropertiesInternal.java52 @NonNull List<SensorLocationInternal> sensorLocations) { in FingerprintSensorPropertiesInternal() argument
61 this.mSensorLocations = List.copyOf(sensorLocations); in FingerprintSensorPropertiesInternal()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/data/repository/
H A DFingerprintPropertyRepository.kt62 val sensorLocations: Flow<Map<String, SensorLocationInternal>>
112 override val sensorLocations: Flow<Map<String, SensorLocationInternal>> =
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/domain/interactor/
H A DSideFpsOverlayInteractor.kt51 combine(displayId, fingerprintPropertyRepository.sensorLocations) { displayId, offsets ->
/aosp14/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/sensors/fingerprint/aidl/
H A DFingerprintProviderTest.java102 sensor1.sensorLocations = new SensorLocation[]{new SensorLocation()}; in setUp()
106 sensor2.sensorLocations = new SensorLocation[]{new SensorLocation()}; in setUp()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/domain/interactor/
H A DSideFpsOverlayInteractorTest.kt61 sensorLocations =
/aosp14/frameworks/base/services/core/java/com/android/server/biometrics/sensors/fingerprint/aidl/
H A DFingerprintProvider.java213 Arrays.stream(prop.sensorLocations).map(location -> in FingerprintProvider()
820 final List<SensorLocationInternal> sensorLocations = new ArrayList<>(); in getWorkaroundSensorProps() local
830 sensorLocations.add(location); in getWorkaroundSensorProps()
836 return sensorLocations; in getWorkaroundSensorProps()