summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorKevin Chyn <kchyn@google.com>2020-12-03 19:20:29 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-12-03 19:20:29 +0000
commit10a7843d338c033ecc0755ca11393fafe3d2aa8a (patch)
treeb4d61312df8034f9350bc3d914cf0f82d084a2a8 /core/java/android
parent8405d546eafdb0b84cf368fe123b80779f6f99d2 (diff)
parent1c0d722a91c903ded711553add6fec604b5f0877 (diff)
Merge "Add sensorId to biometric sensor proto dumpsys"
Diffstat (limited to 'core/java/android')
-rw-r--r--core/java/android/hardware/biometrics/IBiometricAuthenticator.aidl2
-rw-r--r--core/java/android/hardware/face/IFaceService.aidl4
-rw-r--r--core/java/android/hardware/fingerprint/IFingerprintService.aidl4
3 files changed, 5 insertions, 5 deletions
diff --git a/core/java/android/hardware/biometrics/IBiometricAuthenticator.aidl b/core/java/android/hardware/biometrics/IBiometricAuthenticator.aidl
index cb43943f4864..cc12125c13f0 100644
--- a/core/java/android/hardware/biometrics/IBiometricAuthenticator.aidl
+++ b/core/java/android/hardware/biometrics/IBiometricAuthenticator.aidl
@@ -36,7 +36,7 @@ interface IBiometricAuthenticator {
// Retrieve static sensor properties
SensorPropertiesInternal getSensorProperties(String opPackageName);
- // Requests a proto dump of the service. See biometrics.proto
+ // Requests a proto dump of the sensor. See biometrics.proto
byte[] dumpSensorServiceStateProto();
// This method prepares the service to start authenticating, but doesn't start authentication.
diff --git a/core/java/android/hardware/face/IFaceService.aidl b/core/java/android/hardware/face/IFaceService.aidl
index c5c51e4661c5..468157a19971 100644
--- a/core/java/android/hardware/face/IFaceService.aidl
+++ b/core/java/android/hardware/face/IFaceService.aidl
@@ -33,8 +33,8 @@ interface IFaceService {
// Creates a test session with the specified sensorId
ITestSession createTestSession(int sensorId, String opPackageName);
- // Requests a proto dump of the service to the specified fd
- byte[] dumpSensorServiceStateProto();
+ // Requests a proto dump of the specified sensor
+ byte[] dumpSensorServiceStateProto(int sensorId);
// Retrieve static sensor properties for all face sensors
List<FaceSensorPropertiesInternal> getSensorPropertiesInternal(String opPackageName);
diff --git a/core/java/android/hardware/fingerprint/IFingerprintService.aidl b/core/java/android/hardware/fingerprint/IFingerprintService.aidl
index a4ce29ba4ea0..64abbea12de0 100644
--- a/core/java/android/hardware/fingerprint/IFingerprintService.aidl
+++ b/core/java/android/hardware/fingerprint/IFingerprintService.aidl
@@ -34,8 +34,8 @@ interface IFingerprintService {
// Creates a test session with the specified sensorId
ITestSession createTestSession(int sensorId, String opPackageName);
- // Requests a proto dump of the service to the specified fd
- byte[] dumpSensorServiceStateProto();
+ // Requests a proto dump of the specified sensor
+ byte[] dumpSensorServiceStateProto(int sensorId);
// Retrieve static sensor properties for all fingerprint sensors
List<FingerprintSensorPropertiesInternal> getSensorPropertiesInternal(String opPackageName);