Lines Matching refs:KeyPermSet
54 use crate::permission::KeyPermSet;
2402 ) -> Result<(i64, KeyDescriptor, Option<KeyPermSet>)> { in load_access_tuple() argument
2479 let access_vector: Option<KeyPermSet> = in load_access_tuple()
2640 check_permission: impl Fn(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>, in load_key_entry()
2671 check_permission: &impl Fn(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>, in load_key_entry_internal()
2768 check_permission: impl Fn(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>, in unbind_key()
3088 access_vector: KeyPermSet, in grant() argument
3089 check_permission: impl Fn(&KeyDescriptor, &KeyPermSet) -> Result<()>, in grant()
3272 use crate::permission::{KeyPerm, KeyPermSet};
3776 const PVEC1: KeyPermSet = key_perm_set![KeyPerm::Use, KeyPerm::GetInfo]; in test_grant_ungrant()
3777 const PVEC2: KeyPermSet = key_perm_set![KeyPerm::Use]; in test_grant_ungrant()
3884 stmt.query_map::<(i64, u32, i64, KeyPermSet), _, _>(NO_PARAMS, |row| { in test_grant_ungrant()
3889 KeyPermSet::from(row.get::<_, i32>(3)?), in test_grant_ungrant()