Home | History | Annotate | Download | only in getfacl

Lines Matching defs:acl

45 #include <sys/acl.h>
94 * return an ACL corresponding to the permissions
100 acl_t acl;
104 /* create the ACL */
105 acl = acl_init(3);
106 if (!acl)
110 if (acl_create_entry(&acl, &entry) == -1)
134 if (acl_create_entry(&acl, &entry) == -1)
158 if (acl_create_entry(&acl, &entry) == -1)
181 return(acl);
189 acl_t acl;
228 acl = acl_get_link_np(path, type);
230 acl = acl_get_file(path, type);
231 if (!acl) {
239 acl = acl_from_stat(&sb);
240 if (!acl) {
255 acl_text = acl_to_text_np(acl, 0, flags);
263 (void)acl_free(acl);