Home | History | Annotate | Download | only in isccfg

Lines Matching defs:clause

483  * A "category" clause in the "logging" statement.
896 /*% A list of keys, as in the "key" clause of the controls statement. */
2387 * Note: CFG_ZONE_* options indicate in which zone types this clause is
2549 * Note: CFG_ZONE_* options indicate in which zone types this clause is
2736 * exercise the new clause when adding new clauses.
2772 * Clauses that can be found in a 'channel' clause in the
2813 /*% A list of log destination, used in the "category" clause. */
3560 * Handle the special kludge syntax of the "keys" clause in the "server"
3680 * The "file" clause of the "channel" statement.
4053 const cfg_clausedef_t *clause;
4056 for (clause = zone_clauses; clause->name != NULL; clause++) {
4057 if ((clause->flags & ztype) == 0 ||
4058 strcmp(clause->name, name) != 0)
4064 for (clause = zone_only_clauses; clause->name != NULL; clause++) {
4065 if ((clause->flags & ztype) == 0 ||
4066 strcmp(clause->name, name) != 0)
4082 sizeof(clause[0])) - \
4086 cfg_clausedef_t *clause = NULL;
4097 qsort(clauses, NCLAUSES - 1, sizeof(clause[0]), cmp_clause);
4142 for (clause = clauses; clause->name != NULL; clause++) {
4144 (((clause->flags & CFG_CLAUSEFLAG_OBSOLETE) != 0) ||
4145 ((clause->flags & CFG_CLAUSEFLAG_TESTONLY) != 0)))
4149 if ((clause->flags & CFG_CLAUSEFLAG_ANCIENT) != 0 ||
4150 (clause->flags & CFG_CLAUSEFLAG_NODOC) != 0)
4155 if ((clause->flags & zonetype) == 0 ||
4156 strcasecmp(clause->name, "type") == 0)
4161 cfg_print_cstr(&pctx, clause->name);
4163 cfg_doc_obj(&pctx, clause->type);
4165 cfg_print_clauseflags(&pctx, clause->flags);