Lines Matching refs:aclp
74 aclent_t *aclp; /* used by -m -d */ in main() local
163 aclcnt = get_acl_info(filep, &aclp); in main()
166 if (mod_entries(aclp, aclcnt, work_mp, in main()
241 mod_entries(aclent_t *aclp, int cnt, char *modp, char *delp, in mod_entries() argument
245 if (parse_entry_list(&aclp, &cnt, modp, MODIFY) == -1) in mod_entries()
249 if (parse_entry_list(&aclp, &cnt, delp, DELETE) == -1) in mod_entries()
252 if (aclsort(cnt, rfg, aclp) == -1) { in mod_entries()
253 (void) err_handle(cnt, aclp); in mod_entries()
259 if (acl(fnamep, SETACL, cnt, aclp) < 0) { in mod_entries()
279 aclent_t *aclp; in set_file_entries() local
316 if (convert_to_aclent_t(buf, &aclcnt, &aclp, SET) == -1) in set_file_entries()
320 if (aclsort(aclcnt, rflag, aclp) == -1) { in set_file_entries()
321 (void) err_handle(aclcnt, aclp); in set_file_entries()
327 if (acl(fnamep, SETACL, aclcnt, aclp) < 0) { in set_file_entries()
345 aclent_t *aclp; in set_online_entries() local
348 if (parse_entry_list(&aclp, &aclcnt, setp, SET) == -1) in set_online_entries()
351 if (aclsort(aclcnt, rflag, aclp) == -1) { in set_online_entries()
352 (void) err_handle(aclcnt, aclp); in set_online_entries()
358 if (acl(fnamep, SETACL, aclcnt, aclp) < 0) { in set_online_entries()