Home
last modified time | relevance | path

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

/system/security/keystore2/src/database/
Dtests.rs2195 fn app_key_exists(db: &mut KeystoreDB, nspace: i64, alias: &str) -> Result<bool> { in app_key_exists() function
2229 assert!(app_key_exists(&mut db, nspace, "noauth_noud")?); in test_unbind_auth_bound_keys_for_user()
2230 assert!(app_key_exists(&mut db, nspace, "noauth_ud")?); in test_unbind_auth_bound_keys_for_user()
2231 assert!(app_key_exists(&mut db, nspace, "auth_noud")?); in test_unbind_auth_bound_keys_for_user()
2232 assert!(app_key_exists(&mut db, nspace, "auth_ud")?); in test_unbind_auth_bound_keys_for_user()
2244 assert!(app_key_exists(&mut db, nspace, "noauth_noud")?); in test_unbind_auth_bound_keys_for_user()
2245 assert!(app_key_exists(&mut db, nspace, "noauth_ud")?); in test_unbind_auth_bound_keys_for_user()
2246 assert!(!app_key_exists(&mut db, nspace, "auth_noud")?); in test_unbind_auth_bound_keys_for_user()
2247 assert!(!app_key_exists(&mut db, nspace, "auth_ud")?); in test_unbind_auth_bound_keys_for_user()
2248 assert!(app_key_exists(&mut db, other_user_nspace, "auth_ud")?); in test_unbind_auth_bound_keys_for_user()