/src/lib/libc/posix1e/ |
acl_init.c | 84 acl_t acl_new; local in function:acl_dup 86 acl_new = acl_init(ACL_MAX_ENTRIES); 87 if (acl_new != NULL) { 88 *acl_new = *acl; 90 acl_new->ats_cur_entry = 0; 93 return (acl_new);
|
acl_calc_mask.c | 56 acl_t acl_new; local in function:acl_calc_mask 84 acl_new = acl_dup(*acl_p); 85 if (acl_new == NULL) 87 acl_int_new = &acl_new->ats_acl; 114 acl_free(acl_new); 126 if (acl_valid(acl_new) == -1) { 128 acl_free(acl_new); 132 **acl_p = *acl_new; 133 acl_free(acl_new);
|
acl_strip.c | 67 acl_t acl_new, acl_old; local in function:_posix1e_acl_strip_np 81 acl_new = acl_init(ACL_MAX_ENTRIES); 82 if (acl_new == NULL) { 102 if (acl_create_entry(&acl_new, &entry_new) == -1) 116 assert(_acl_brand(acl_new) == ACL_BRAND_POSIX); 119 if (acl_calc_mask(&acl_new) == -1) 123 return (acl_new); 126 acl_free(acl_new);
|
/src/bin/setfacl/ |
remove.c | 53 acl_t acl_new; local in function:remove_acl 71 acl_new = acl_dup(*prev_acl); 72 if (acl_new == NULL) 85 if (acl_delete_entry(acl_new, entry) == -1) { 93 *prev_acl = acl_new; 105 acl_t acl_new; local in function:remove_by_number 112 acl_new = acl_dup(*prev_acl); 113 if (acl_new == NULL) 126 while (acl_get_entry(acl_new, entry_id, &entry) == 1) { 136 if (acl_delete_entry_np(acl_new, entry_number) == -1) 171 acl_t acl_new; local in function:remove_ext [all...] |
merge.c | 99 acl_t acl_new; local in function:merge_acl 116 acl_new = acl_dup(*prev_acl); 117 if (acl_new == NULL) 136 while (acl_get_entry(acl_new, entry_id_new, &entry_new) == 1) { 215 if (acl_create_entry_np(&acl_new, &entry_new, entry_number) == -1) { 217 acl_free(acl_new); 228 if (acl_create_entry(&acl_new, &entry_new) == -1) { 230 acl_free(acl_new); 240 *prev_acl = acl_new; 249 acl_t acl_new; local in function:add_acl [all...] |