Lines Matching refs:acl
193 acl_t acl; in acl_from_text() local
202 acl = acl_init(3); /* XXX: WTF, 3? */ in acl_from_text()
203 if (acl == NULL) { in acl_from_text()
222 if (_acl_brand(acl) == ACL_BRAND_UNKNOWN) { in acl_from_text()
224 _acl_brand_as(acl, ACL_BRAND_NFS4); in acl_from_text()
226 _acl_brand_as(acl, ACL_BRAND_POSIX); in acl_from_text()
229 switch (_acl_brand(acl)) { in acl_from_text()
231 error = _nfs4_acl_entry_from_text(acl, entry); in acl_from_text()
235 error = _posix1e_acl_entry_from_text(acl, entry); in acl_from_text()
251 if (acl_valid(acl) == -1) { in acl_from_text()
258 return(acl); in acl_from_text()
261 acl_free(acl); in acl_from_text()