Lines Matching defs:acl
37 #include <sys/acl.h>
47 /* set the appropriate mask the given ACL's */
52 acl_t acl;
60 * entry in the resulting ACL shall be set to the permissions in the
61 * specified ACL mask entry.
66 acl = acl_dup(*prev_acl);
67 if (acl == NULL)
73 * specified, then the permissions of the resulting ACL mask
76 * class in the resulting ACL
78 if (acl_calc_mask(&acl)) {
80 acl_free(acl);
86 * specified, then the permissions of the resulting ACL
92 while (acl_get_entry(acl, entry_id, &entry) == 1) {
99 acl_free(acl);
106 * and no ACL mask entry exists in the ACL associated with the
111 acl_free(acl);
116 *prev_acl = acl_dup(acl);
117 acl_free(acl);