Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/sys/
H A Dkauth.h585 struct kauth_ace { struct
616 typedef struct kauth_ace *kauth_ace_t;
625 struct kauth_ace acl_ace[1];
660 …uth_acl, acl_ace) + ((u_int32_t)(c) != KAUTH_FILESEC_NOACL ? ((c) * sizeof(struct kauth_ace)) : 0))
704 … kauth_filesec, fsec_acl) + __offsetof(struct kauth_acl, acl_ace) + (c) * sizeof(struct kauth_ace))
706 #define KAUTH_FILESEC_COUNT(s) (((s) - KAUTH_FILESEC_SIZE(0)) / sizeof(struct kauth_ace))
707 … ((s) >= KAUTH_FILESEC_SIZE(0) && (((s) - KAUTH_FILESEC_SIZE(0)) % sizeof(struct kauth_ace)) == 0)
H A Dkernel_types.h195 struct kauth_ace;
196 typedef struct kauth_ace * kauth_ace_t;
/xnu-12377.41.6/bsd/vfs/
H A Dvfs_subr.c11338 sizeof(struct kauth_ace) * vap->va_acl->acl_entrycount)) { in vnode_authattr()