diff options
| author | 2023-07-06 16:22:05 +0000 | |
|---|---|---|
| committer | 2023-07-06 16:22:05 +0000 | |
| commit | 482c676e7999a7edab78def2b7ab329170157337 (patch) | |
| tree | acd1bbb7c896f45ffeda683319a0949f14fe003b | |
| parent | bd2caf6ac1f74bde073cf0dbcef1dfa53873d82e (diff) | |
| parent | 4dc3655cd03ff71c2e0298084fee3a65e8cb6444 (diff) | |
Merge "Make scheduleWatchdog oneway" into udc-qpr-dev
| -rw-r--r-- | core/java/android/hardware/face/IFaceService.aidl | 2 | ||||
| -rw-r--r-- | core/java/android/hardware/fingerprint/IFingerprintService.aidl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/hardware/face/IFaceService.aidl b/core/java/android/hardware/face/IFaceService.aidl index 9d5073e43957..7080133dc597 100644 --- a/core/java/android/hardware/face/IFaceService.aidl +++ b/core/java/android/hardware/face/IFaceService.aidl @@ -177,5 +177,5 @@ interface IFaceService { // Internal operation used to clear face biometric scheduler. // Ensures that the scheduler is not stuck. @EnforcePermission("USE_BIOMETRIC_INTERNAL") - void scheduleWatchdog(); + oneway void scheduleWatchdog(); } diff --git a/core/java/android/hardware/fingerprint/IFingerprintService.aidl b/core/java/android/hardware/fingerprint/IFingerprintService.aidl index 99758525e5ff..e2840ec20ff9 100644 --- a/core/java/android/hardware/fingerprint/IFingerprintService.aidl +++ b/core/java/android/hardware/fingerprint/IFingerprintService.aidl @@ -213,5 +213,5 @@ interface IFingerprintService { // Internal operation used to clear fingerprint biometric scheduler. // Ensures that the scheduler is not stuck. @EnforcePermission("USE_BIOMETRIC_INTERNAL") - void scheduleWatchdog(); + oneway void scheduleWatchdog(); } |