Lines Matching refs:auth_token
109 fn add_auth_token(&self, auth_token: &HardwareAuthToken) -> Result<()> { in add_auth_token()
116 auth_token.challenge, in add_auth_token()
117 auth_token.userId, in add_auth_token()
118 auth_token.authenticatorId, in add_auth_token()
119 auth_token.authenticatorType.0, in add_auth_token()
120 auth_token.timestamp.milliSeconds, in add_auth_token()
123 ENFORCEMENTS.add_auth_token(auth_token.clone()); in add_auth_token()
218 let (auth_token, ts_token) = in get_auth_tokens_for_credstore()
220 Ok(AuthorizationTokens { authToken: auth_token, timestampToken: ts_token }) in get_auth_tokens_for_credstore()
253 fn addAuthToken(&self, auth_token: &HardwareAuthToken) -> BinderResult<()> { in addAuthToken()
255 self.add_auth_token(auth_token).map_err(into_logged_binder) in addAuthToken()