Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d9bd37ae authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Updated the comments where the status code is used in other types." am:...

Merge "Updated the comments where the status code is used in other types." am: 77373d57 am: a8f2cc08 am: 0a197d86

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/2401295



Change-Id: I8ff311d50827e2ce331be2634bf4c89e860e505a
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 51dd95d5 0a197d86
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -22,11 +22,12 @@ package android.hardware.gatekeeper;
@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;
+3 −2
Original line number Diff line number Diff line
@@ -24,11 +24,12 @@ import android.hardware.security.keymint.HardwareAuthToken;
@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;