Lines Matching refs:acl_new
89 acl_t acl_new; in merge_acl() local
106 acl_new = acl_dup(*prev_acl); in merge_acl()
107 if (acl_new == NULL) in merge_acl()
126 while (acl_get_entry(acl_new, entry_id_new, &entry_new) == 1) { in merge_acl()
205 if (acl_create_entry_np(&acl_new, &entry_new, entry_number) == -1) { in merge_acl()
207 acl_free(acl_new); in merge_acl()
218 if (acl_create_entry(&acl_new, &entry_new) == -1) { in merge_acl()
220 acl_free(acl_new); in merge_acl()
230 *prev_acl = acl_new; in merge_acl()
239 acl_t acl_new; in add_acl() local
258 acl_new = acl_dup(*prev_acl); in add_acl()
259 if (acl_new == NULL) in add_acl()
267 if (acl_create_entry_np(&acl_new, &entry_new, entry_number) == -1) { in add_acl()
269 acl_free(acl_new); in add_acl()
286 *prev_acl = acl_new; in add_acl()