Lines Matching refs:KeyPermSet
51 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()
3035 access_vector: KeyPermSet, in grant() argument
3036 check_permission: impl Fn(&KeyDescriptor, &KeyPermSet) -> Result<()>, in grant()
3221 use crate::permission::{KeyPerm, KeyPermSet};
3708 const PVEC1: KeyPermSet = key_perm_set![KeyPerm::use_(), KeyPerm::get_info()]; in test_grant_ungrant()
3709 const PVEC2: KeyPermSet = key_perm_set![KeyPerm::use_()]; in test_grant_ungrant()
3816 stmt.query_map::<(i64, u32, i64, KeyPermSet), _, _>(NO_PARAMS, |row| { in test_grant_ungrant()
3821 KeyPermSet::from(row.get::<_, i32>(3)?), in test_grant_ungrant()