Searched refs:acl_int (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/lib/libc/posix1e/
H A Dacl_entry.c44 struct acl *acl_int; local
51 acl_int = &(*acl_p)->ats_acl;
57 if (acl_int->acl_cnt + 1 >= ACL_MAX_ENTRIES) {
62 *entry_p = &acl_int->acl_entry[acl_int->acl_cnt++];
79 struct acl *acl_int; local
86 acl_int = &(*acl_p)->ats_acl;
88 if (acl_int->acl_cnt + 1 >= ACL_MAX_ENTRIES) {
93 if (offset < 0 || offset > acl_int->acl_cnt) {
99 for (i = acl_int
124 struct acl *acl_int; local
[all...]
H A Dacl_calc_mask.c48 struct acl *acl_int, *acl_int_new; local
70 acl_int = &(*acl_p)->ats_acl;
71 if ((acl_int->acl_cnt < 3) || (acl_int->acl_cnt > ACL_MAX_ENTRIES)) {
H A Dacl_support.c132 struct acl *acl_int; local
134 acl_int = &acl->ats_acl;
136 qsort(&acl_int->acl_entry[0], acl_int->acl_cnt,
172 struct acl *acl_int; local
180 acl_int = &acl->ats_acl;
184 while (i < acl_int->acl_cnt) {
185 entry = &acl_int->acl_entry[i];
346 struct acl *acl_int; local
349 acl_int
[all...]
H A Dacl_to_text.c57 struct acl *acl_int; local
71 acl_int = &acl->ats_acl;
74 for (i = 0; i < acl_int->acl_cnt; i++)
75 if (acl_int->acl_entry[i].ae_tag == ACL_MASK)
76 mask_perm = acl_int->acl_entry[i].ae_perm;
78 for (i = 0; i < acl_int->acl_cnt; i++) {
79 ae_tag = acl_int->acl_entry[i].ae_tag;
80 ae_id = acl_int->acl_entry[i].ae_id;
81 ae_perm = acl_int->acl_entry[i].ae_perm;
H A Dacl_delete_entry.c126 struct acl *acl_int; local
134 acl_int = &acl->ats_acl;
136 if (offset < 0 || offset >= acl_int->acl_cnt) {

Completed in 116 milliseconds