Lines Matching defs:deny

574 	       | ALLOW allow-deny-keyword
575 | DENY allow-deny-keyword
985 * \brief Parse allow and deny statements
987 * This function handles the common processing code for permit and deny
990 * The allow or deny token should already be consumed, this function expects
1132 * Pool statements are used to group declarations and permit & deny information
1135 * Each pool may have a different set of permit or deny options.
2805 (strcmp(handle->key, "deny") == 0) ||
2846 (strcmp(handle->key, "deny") == 0)) {
3165 mapSet(pool, permit, "deny");
3461 * Pool statements are used to group declarations and permit & deny information
3464 * Each pool may have a different set of permit or deny options.
3702 /* allow-deny-keyword :== BOOTP
3719 value = "deny";
3767 parse_error(cfile, "expecting allow/deny key");
3776 parse_error(cfile, "unknown allow/deny keyword (%s)", name);
4734 /* Generate a class from allow/deny member lists */
4738 struct element *allow, struct element *deny)
4754 if ((listSize(allow) == 0) && (listSize(deny) == 0))
4781 for (i = 0; i < listSize(deny); i++) {
4784 elem = listGet(deny, i);
4790 msg = makeString(-1, "/// deny ");
4796 TAILQ_CONCAT(&comments, &deny->comments);
4831 for (i = 0; i < listSize(deny); i++) {
4832 elem = listGet(deny, i);
4843 listRemove(deny, i);
4851 if (listSize(deny) > 1) {
4852 listRemove(deny, i);
4853 resetList(deny);
4854 listPush(deny, elem);
4864 if ((listSize(allow) == 0) && (listSize(deny) == 0)) {
4873 if ((listSize(allow) == 1) && (listSize(deny) == 0) &&
4874 !allow->skip && !deny->skip) {
4907 if (listSize(deny) > 0) {
4909 for (i = 0; i < listSize(deny); i++) {
4910 elem = listGet(deny, i);
4947 if ((listSize(allow) > 0) && (listSize(deny) > 0))
4967 if ((listSize(allow) > 0) && (listSize(deny) > 0))
4970 for (i = 0; i < listSize(deny); i++) {
4975 elem = listGet(deny, i);
4991 class->skip |= allow->skip || deny->skip;