Lines Matching defs:where
547 * in newentries. The where argument specifies where to begin
548 * the replacement. If the where argument is 1 greater than the
550 * where argument is 2+ greater than the number of acl entries then
554 acl_modifyentries(acl_t *acl1, acl_t *newentries, int where)
565 if (where < 0 || where >= acl1->acl_cnt)
571 slot = where;
598 * Add acl2 entries into acl1. The where argument specifies where
602 acl_addentries(acl_t *acl1, acl_t *acl2, int where)
617 * allow where to specify 1 past last slot for an append operation
620 if (where < 0 || where > acl1->acl_cnt)
630 * first push down entries where new ones will be inserted
634 ((where + acl2->acl_cnt) * acl1->acl_entry_size));
637 where * acl1->acl_entry_size);
639 if (where < acl1->acl_cnt) {
640 len = (acl1->acl_cnt - where) * acl1->acl_entry_size;