Searched defs:acl2 (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsec/common/
H A Daclutils.c484 int (*acl_match)(void *acl1, void *acl2);
598 * Add acl2 entries into acl1. The where argument specifies where
602 acl_addentries(acl_t *acl1, acl_t *acl2, int where) argument
610 if (acl1 == NULL || acl2 == NULL)
613 if (acl1->acl_type != acl2->acl_type)
623 newsize = (acl2->acl_entry_size * acl2->acl_cnt) +
634 ((where + acl2->acl_cnt) * acl1->acl_entry_size));
648 (void) memmove(start, acl2->acl_aclp,
649 acl2
[all...]

Completed in 72 milliseconds