Lines Matching defs:clause
445 * A "category" clause in the "logging" statement.
756 /*% A list of keys, as in the "key" clause of the controls statement. */
2179 * Note: CFG_ZONE_* options indicate in which zone types this clause is
2318 * Note: CFG_ZONE_* options indicate in which zone types this clause is
2513 * Clauses that can be found in a 'channel' clause in the
2554 /*% A list of log destination, used in the "category" clause. */
3274 * Handle the special kludge syntax of the "keys" clause in the "server"
3394 * The "file" clause of the "channel" statement.
3775 const cfg_clausedef_t *clause;
3778 for (clause = zone_clauses; clause->name != NULL; clause++) {
3779 if ((clause->flags & ztype) == 0 ||
3780 strcmp(clause->name, name) != 0)
3786 for (clause = zone_only_clauses; clause->name != NULL; clause++) {
3787 if ((clause->flags & ztype) == 0 ||
3788 strcmp(clause->name, name) != 0)
3804 sizeof(clause[0])) - \
3808 cfg_clausedef_t *clause = NULL;
3819 qsort(clauses, NCLAUSES - 1, sizeof(clause[0]), cmp_clause);
3868 for (clause = clauses; clause->name != NULL; clause++) {
3870 (((clause->flags & CFG_CLAUSEFLAG_OBSOLETE) != 0) ||
3871 ((clause->flags & CFG_CLAUSEFLAG_ANCIENT) != 0) ||
3872 ((clause->flags & CFG_CLAUSEFLAG_NYI) != 0) ||
3873 ((clause->flags & CFG_CLAUSEFLAG_TESTONLY) != 0)))
3877 if ((clause->flags & zonetype) == 0 ||
3878 strcasecmp(clause->name, "type") == 0)
3883 cfg_print_cstr(&pctx, clause->name);
3885 cfg_doc_obj(&pctx, clause->type);
3887 cfg_print_clauseflags(&pctx, clause->flags);