summaryrefslogtreecommitdiffstats
path: root/gatekeeper
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2017-03-28 16:19:16 -0700
committerAndreas Huber <andih@google.com>2017-03-29 08:53:58 -0700
commit40d3a9bd8c62714ee58f9363c4456f764aa5a95d (patch)
treeda47e5b4448e44385919af0effbd49a5d1b415e8 /gatekeeper
parent2f44ec6c868b220be1b566e7ccfbb251beec70ec (diff)
downloadandroid_hardware_interfaces-40d3a9bd8c62714ee58f9363c4456f764aa5a95d.tar.gz
android_hardware_interfaces-40d3a9bd8c62714ee58f9363c4456f764aa5a95d.tar.bz2
android_hardware_interfaces-40d3a9bd8c62714ee58f9363c4456f764aa5a95d.zip
Convert all comments into "doxygen-ready" comments.
Bug: 36453077 Test: mma Change-Id: I0b1f77dfae5d2258969e33d85ecf45401ffbdfaa
Diffstat (limited to 'gatekeeper')
-rw-r--r--gatekeeper/1.0/IGatekeeper.hal4
-rw-r--r--gatekeeper/1.0/types.hal7
2 files changed, 6 insertions, 5 deletions
diff --git a/gatekeeper/1.0/IGatekeeper.hal b/gatekeeper/1.0/IGatekeeper.hal
index c19347768..59dd7d161 100644
--- a/gatekeeper/1.0/IGatekeeper.hal
+++ b/gatekeeper/1.0/IGatekeeper.hal
@@ -91,7 +91,7 @@ verify(uint32_t uid, uint64_t challenge,
vec<uint8_t> providedPassword)
generates (GatekeeperResponse response);
-/*
+/**
* Deletes the enrolledPasswordHandle associated with the uid. Once deleted
* the user cannot be verified anymore.
* This is an optional method.
@@ -107,7 +107,7 @@ verify(uint32_t uid, uint64_t challenge,
*/
deleteUser(uint32_t uid) generates (GatekeeperResponse response);
-/*
+/**
* Deletes all the enrolled_password_handles for all uid's. Once called,
* no users must be enrolled on the device.
* This is an optional method.
diff --git a/gatekeeper/1.0/types.hal b/gatekeeper/1.0/types.hal
index 59076e005..f243675ea 100644
--- a/gatekeeper/1.0/types.hal
+++ b/gatekeeper/1.0/types.hal
@@ -31,12 +31,13 @@ enum GatekeeperStatusCode : int32_t {
* Gatekeeper response to any/all requests has this structure as mandatory part
*/
struct GatekeeperResponse {
- /* request completion status */
+ /** request completion status */
GatekeeperStatusCode code;
- /* retry timeout in ms, if code == ERROR_RETRY_TIMEOUT
+ /**
+ * retry timeout in ms, if code == ERROR_RETRY_TIMEOUT
* otherwise unused (0)
*/
uint32_t timeout;
- /* optional crypto blob. Opaque to Android system. */
+ /** optional crypto blob. Opaque to Android system. */
vec<uint8_t> data;
};