commit | a8f2cc08af3be189337df4fdfe18667935b89b56 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Wed Jan 25 01:33:29 2023 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Wed Jan 25 01:33:29 2023 +0000 |
tree | 33aa7595d7e7cd38e4cb113cbd683226815d8139 | |
parent | c5884f92f4c0860018b6ebc877e987420e323fbf [diff] | |
parent | 77373d5774c173c5e74d6045d1730b01e7112037 [diff] |
Merge "Updated the comments where the status code is used in other types." am: 77373d5774 Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2401295 Change-Id: I76149995a678000c672e287ca383f4fdb33ea7da Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
diff --git a/gatekeeper/aidl/android/hardware/gatekeeper/GatekeeperEnrollResponse.aidl b/gatekeeper/aidl/android/hardware/gatekeeper/GatekeeperEnrollResponse.aidl index 04bacf0..227210b 100644 --- a/gatekeeper/aidl/android/hardware/gatekeeper/GatekeeperEnrollResponse.aidl +++ b/gatekeeper/aidl/android/hardware/gatekeeper/GatekeeperEnrollResponse.aidl
@@ -22,11 +22,12 @@ @VintfStability parcelable GatekeeperEnrollResponse { /** - * Request completion status + * Request completion status. The status code can be IGatekeeper::STATUS_OK + * or IGatekeeper::ERROR_RETRY_TIMEOUT. */ int statusCode; /** - * Retry timeout in ms, if code == ERROR_RETRY_TIMEOUT + * Retry timeout in ms, if code == IGatekeeper::ERROR_RETRY_TIMEOUT * otherwise unused (0) */ int timeoutMs;
diff --git a/gatekeeper/aidl/android/hardware/gatekeeper/GatekeeperVerifyResponse.aidl b/gatekeeper/aidl/android/hardware/gatekeeper/GatekeeperVerifyResponse.aidl index bcf2d76..f8dbeeb 100644 --- a/gatekeeper/aidl/android/hardware/gatekeeper/GatekeeperVerifyResponse.aidl +++ b/gatekeeper/aidl/android/hardware/gatekeeper/GatekeeperVerifyResponse.aidl
@@ -24,11 +24,12 @@ @VintfStability parcelable GatekeeperVerifyResponse { /** - * Request completion status + * Request completion status. The status code can be IGatekeeper::STATUS_OK + * or IGatekeeper::ERROR_RETRY_TIMEOUT or IGatekeeper::STATUS_REENROLL. */ int statusCode; /** - * Retry timeout in ms, if code == ERROR_RETRY_TIMEOUT + * Retry timeout in ms, if code == IGatekeeper::ERROR_RETRY_TIMEOUT * otherwise unused (0) */ int timeoutMs;