Lines Matching defs:aclpp
50 static int get_acl_info(char *filep, aclent_t **aclpp);
192 get_acl_info(char *filep, aclent_t **aclpp)
217 if ((*aclpp = (aclent_t *)malloc(sizeof (aclent_t) * aclcnt)) == NULL) {
221 if (acl(filep, GETACL, aclcnt, *aclpp) < 0) {
374 parse_entry_list(aclent_t **aclpp, int *aclcntp, char *listp, int mode)
384 if (convert_to_aclent_t(listp, aclcntp, aclpp, mode) == -1)
391 if (convert_to_aclent_t(listp, aclcntp, aclpp, mode) == -1)
401 * aclpp that contains acl entries in acl format will be returned.
405 convert_to_aclent_t(char *entryp, int *cntp, aclent_t **aclpp, int mode)
418 new_aclp = (aclent_t *)realloc(*aclpp,
523 *aclpp = new_aclp; /* return new acl entries */