Home | History | Annotate | Download | only in posix1e

Lines Matching refs:acl

38 #include <sys/acl.h>
44 * acl_create_entry() (23.4.7): create a new ACL entry in the ACL pointed
50 struct acl *acl_int;
85 struct acl *acl_int;
124 * acl_get_entry() (23.4.14): returns an ACL entry from an ACL
128 acl_get_entry(acl_t acl, int entry_id, acl_entry_t *entry_p)
130 struct acl *acl_int;
132 if (acl == NULL) {
136 acl_int = &acl->ats_acl;
140 acl->ats_cur_entry = 0;
143 if (acl->ats_cur_entry >= acl->ats_acl.acl_cnt)
145 *entry_p = &acl_int->acl_entry[acl->ats_cur_entry++];