Lines Matching defs:add
236 [OP_ADD] = "add",
455 unsigned int add;
458 add = rules->token_max;
459 if (add < 8)
460 add = 8;
462 tokens = realloc(rules->tokens, (rules->token_max + add ) * sizeof(struct token));
466 rules->token_max += add;
498 unsigned int add;
501 add = rules->uids_max;
502 if (add < 1)
503 add = 8;
505 uids = realloc(rules->uids, (rules->uids_max + add ) * sizeof(struct uid_gid));
509 rules->uids_max += add;
545 unsigned int add;
548 add = rules->gids_max;
549 if (add < 1)
550 add = 8;
552 gids = realloc(rules->gids, (rules->gids_max + add ) * sizeof(struct uid_gid));
556 rules->gids_max += add;
1033 /* add token and mark done */
1584 /* add rule token */
1589 /* add tokens to list, sorted by type */
1715 * The offset value in the rules strct is limited; add all
2800 if (match_key(rules, cur, "add") != 0)