Lines Matching defs:aclp
65 acl_t aclp;
68 aclp = acl_init(ACL_MAX_ENTRIES);
69 if (aclp == NULL)
73 error = __acl_get_file(path_p, type, &aclp->ats_acl);
75 acl_free(aclp);
79 aclp->ats_acl.acl_maxcnt = ACL_MAX_ENTRIES;
80 _acl_brand_from_type(aclp, type);
82 return (aclp);
88 acl_t aclp;
91 aclp = acl_init(ACL_MAX_ENTRIES);
92 if (aclp == NULL)
96 error = __acl_get_link(path_p, type, &aclp->ats_acl);
98 acl_free(aclp);
102 aclp->ats_acl.acl_maxcnt = ACL_MAX_ENTRIES;
103 _acl_brand_from_type(aclp, type);
105 return (aclp);
120 acl_t aclp;
123 aclp = acl_init(ACL_MAX_ENTRIES);
124 if (aclp == NULL)
128 error = __acl_get_fd(fd, type, &aclp->ats_acl);
130 acl_free(aclp);
134 aclp->ats_acl.acl_maxcnt = ACL_MAX_ENTRIES;
135 _acl_brand_from_type(aclp, type);
137 return (aclp);