summaryrefslogtreecommitdiffstats
path: root/authsecret
diff options
context:
space:
mode:
authorZhuoyao Zhang <zhuoyao@google.com>2018-02-15 01:46:25 +0000
committerAndrew Scull <ascull@google.com>2018-02-19 11:47:38 +0000
commitd23938666e0531953fff40e11b4a1624b9ce5a8b (patch)
treee7c4daa33f12c2ec8de91629f2618c5ade4ec120 /authsecret
parent18a30defad0438ceea417e0004a36d94b565fb5e (diff)
downloadandroid_hardware_interfaces-d23938666e0531953fff40e11b4a1624b9ce5a8b.tar.gz
android_hardware_interfaces-d23938666e0531953fff40e11b4a1624b9ce5a8b.tar.bz2
android_hardware_interfaces-d23938666e0531953fff40e11b4a1624b9ce5a8b.zip
AuthSecret: make method oneway
There is not result from the method and the called does not need to wait for it to complete. Test: AuthSecretHidlTest Bug: 71527305 Change-Id: Ib1ba3a2993ac31fb9706c90e87d8f731c2c5d025
Diffstat (limited to 'authsecret')
-rw-r--r--authsecret/1.0/IAuthSecret.hal2
1 files changed, 1 insertions, 1 deletions
diff --git a/authsecret/1.0/IAuthSecret.hal b/authsecret/1.0/IAuthSecret.hal
index 6b573b3a6..9a0fd5fd5 100644
--- a/authsecret/1.0/IAuthSecret.hal
+++ b/authsecret/1.0/IAuthSecret.hal
@@ -42,5 +42,5 @@ interface IAuthSecret {
*
* @param secret blob derived from the primary user's credential.
*/
- primaryUserCredential(vec<uint8_t> secret);
+ oneway primaryUserCredential(vec<uint8_t> secret);
};