Home
last modified time | relevance | path

Searched refs:token_ (Results 1 – 2 of 2) sorted by relevance

/system/security/keystore/
Dauth_token_table.h103 token_ = std::move(rhs.token_);
118 uint64_t ts = token_.timestamp; in is_newer_than()
119 uint64_t other_ts = entry->token_.timestamp; in is_newer_than()
129 const HardwareAuthToken& token() const & { return token_; } in token()
135 return (sid == token_.userId || sid == token_.authenticatorId) && in SatisfiesAuth()
136 (auth_type & token_.authenticatorType) != 0; in SatisfiesAuth()
139 HardwareAuthToken token_; variable
Dauth_token_table.cpp212 : token_(std::move(token)), time_received_(current_time), last_use_(current_time), in Entry()
213 operation_completed_(token_.challenge == 0) {} in Entry()
230 return (token_.userId == entry.token_.userId && in Supersedes()
231 token_.authenticatorType == entry.token_.authenticatorType && in Supersedes()
232 token_.authenticatorId == entry.token_.authenticatorId && is_newer_than(&entry)); in Supersedes()