Home | History | Annotate | Download | only in lib

Lines Matching refs:acl

1 /* Return the number of entries in an ACL.
22 #include "acl-internal.h"
27 /* Return the number of entries in ACL.
31 acl_entries (acl_t acl)
35 if (acl != NULL)
44 for (got_one = acl_get_entry (acl, ACL_FIRST_ENTRY, &ace);
46 got_one = acl_get_entry (acl, ACL_NEXT_ENTRY, &ace))
54 for (got_one = acl_get_entry (acl, ACL_FIRST_ENTRY, &ace);
56 got_one = acl_get_entry (acl, ACL_NEXT_ENTRY, &ace))
64 count = acl->acl_cnt;
69 count = acl->acl_num;