Searched refs:app_key_exists (Results 1 – 1 of 1) sorted by relevance
/system/security/keystore2/src/ |
D | database.rs | 5070 fn app_key_exists(db: &mut KeystoreDB, nspace: i64, alias: &str) -> Result<bool> { in app_key_exists() function 5104 assert!(app_key_exists(&mut db, nspace, "noauth_noud")?); in test_unbind_auth_bound_keys_for_user() 5105 assert!(app_key_exists(&mut db, nspace, "noauth_ud")?); in test_unbind_auth_bound_keys_for_user() 5106 assert!(app_key_exists(&mut db, nspace, "auth_noud")?); in test_unbind_auth_bound_keys_for_user() 5107 assert!(app_key_exists(&mut db, nspace, "auth_ud")?); in test_unbind_auth_bound_keys_for_user() 5126 assert!(app_key_exists(&mut db, nspace, "noauth_noud")?); in test_unbind_auth_bound_keys_for_user() 5127 assert!(app_key_exists(&mut db, nspace, "noauth_ud")?); in test_unbind_auth_bound_keys_for_user() 5128 assert!(!app_key_exists(&mut db, nspace, "auth_noud")?); in test_unbind_auth_bound_keys_for_user() 5129 assert!(!app_key_exists(&mut db, nspace, "auth_ud")?); in test_unbind_auth_bound_keys_for_user() 5130 assert!(app_key_exists(&mut db, other_user_nspace, "auth_ud")?); in test_unbind_auth_bound_keys_for_user()
|