Lines Matching refs:KeyPermSet
52 use crate::permission::KeyPermSet;
2388 ) -> Result<(i64, KeyDescriptor, Option<KeyPermSet>)> { in load_access_tuple() argument
2465 let access_vector: Option<KeyPermSet> = in load_access_tuple()
2627 check_permission: impl Fn(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>, in load_key_entry()
2658 check_permission: &impl Fn(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>, in load_key_entry_internal()
2756 check_permission: impl Fn(&KeyDescriptor, Option<KeyPermSet>) -> Result<()>, in unbind_key()
3033 access_vector: KeyPermSet, in grant() argument
3034 check_permission: impl Fn(&KeyDescriptor, &KeyPermSet) -> Result<()>, in grant()
3219 use crate::permission::{KeyPerm, KeyPermSet};
3706 const PVEC1: KeyPermSet = key_perm_set![KeyPerm::use_(), KeyPerm::get_info()]; in test_grant_ungrant()
3707 const PVEC2: KeyPermSet = key_perm_set![KeyPerm::use_()]; in test_grant_ungrant()
3814 stmt.query_map::<(i64, u32, i64, KeyPermSet), _, _>(NO_PARAMS, |row| { in test_grant_ungrant()
3819 KeyPermSet::from(row.get::<_, i32>(3)?), in test_grant_ungrant()