From 4dc3655cd03ff71c2e0298084fee3a65e8cb6444 Mon Sep 17 00:00:00 2001 From: Diya Bera Date: Wed, 5 Jul 2023 12:22:42 -0700 Subject: Make scheduleWatchdog oneway Test: N/A Fixes: 289988404 Change-Id: Ifc645b320a0803f6c916e7e79d894ef773b4dec9 --- core/java/android/hardware/face/IFaceService.aidl | 2 +- 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 ec5749ed4f05..fa1507b757fc 100644 --- a/core/java/android/hardware/fingerprint/IFingerprintService.aidl +++ b/core/java/android/hardware/fingerprint/IFingerprintService.aidl @@ -218,5 +218,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(); } -- cgit v1.2.3-59-g8ed1b