Home
last modified time | relevance | path

Searched refs:find_auth_token_entry (Results 1 – 4 of 4) sorted by relevance

/system/security/keystore2/src/database/
Dperboot.rs96 pub fn find_auth_token_entry<P: Fn(&AuthTokenEntry) -> bool>( in find_auth_token_entry() method
/system/security/keystore2/src/
Denforcements.rs706 DB.with(|db| db.borrow().find_auth_token_entry(p)) in find_auth_token()
Dsuper_key.rs1017 if let Some((auth_token_entry, _)) = db.find_auth_token_entry(|entry| { in try_unlock_user_with_biometric()
Ddatabase.rs3165 pub fn find_auth_token_entry<F>(&self, p: F) -> Option<(AuthTokenEntry, MonotonicRawTime)> in find_auth_token_entry() method
3169 self.perboot.find_auth_token_entry(p).map(|entry| (entry, self.get_last_off_body())) in find_auth_token_entry()
5723 assert_eq!(db.find_auth_token_entry(|_| true).unwrap().0.auth_token.mac, b"mac2".to_vec()); in find_auth_token_entry_returns_latest()