Home
last modified time | relevance | path

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

/aosp12/system/security/keystore2/src/
H A Ddatabase.rs2751 pub fn unbind_key( in unbind_key() method
3912 db.unbind_key( in test_insert_and_load_full_keyentry_domain_app()
3983 db.unbind_key( in test_insert_and_load_certificate_entry_domain_app()
4040 db.unbind_key( in test_insert_and_load_full_keyentry_domain_selinux()
4093 db.unbind_key( in test_insert_and_load_full_keyentry_domain_key_id()
4200 db.unbind_key(&granted_key, KeyType::Client, 2, |_, _| Ok(())).unwrap(); in test_insert_and_load_full_keyentry_from_grant()
4284 db.unbind_key(&id_descriptor, KeyType::Client, OWNER_UID, |_, _| Ok(())).unwrap(); in test_insert_and_load_full_keyentry_from_grant_by_key_id()
4785 db.unbind_key(&key, KeyType::Client, 2, |_, _| Ok(())).expect("Unbind Failed."); in test_large_number_of_concurrent_db_manipulations()
4805 db.unbind_key(&key, KeyType::Client, 1, |_, _| Ok(())).expect("Unbind Failed."); in test_large_number_of_concurrent_db_manipulations()
4832 db.unbind_key(&key, KeyType::Client, 3, |_, _| Ok(())).expect("Unbind Failed."); in test_large_number_of_concurrent_db_manipulations()
H A Dservice.rs313 db.borrow_mut().unbind_key(&key, KeyType::Client, caller_uid, |k, av| { in delete_key()