Lines Matching refs:acl
46 acl_set_file(const char *path_p, acl_type_t type, acl_t acl) in acl_set_file() argument
50 if (acl_posix1e(acl, type)) { in acl_set_file()
51 error = acl_sort(acl); in acl_set_file()
58 return (__acl_set_file(path_p, type, acl)); in acl_set_file()
62 acl_set_fd(int fd, acl_t acl) in acl_set_fd() argument
66 error = acl_sort(acl); in acl_set_fd()
72 return (__acl_set_fd(fd, ACL_TYPE_ACCESS, acl)); in acl_set_fd()
76 acl_set_fd_np(int fd, acl_t acl, acl_type_t type) in acl_set_fd_np() argument
80 if (acl_posix1e(acl, type)) { in acl_set_fd_np()
81 error = acl_sort(acl); in acl_set_fd_np()
88 return (__acl_set_fd(fd, type, acl)); in acl_set_fd_np()