Lines Matching defs:clause
434 * A "category" clause in the "logging" statement.
628 /*% A list of keys, as in the "key" clause of the controls statement. */
1851 * Note: CFG_ZONE_* options indicate in which zone types this clause is
2060 * Note: CFG_ZONE_* options indicate in which zone types this clause is
2286 * Clauses that can be found in a 'channel' clause in the
2319 /*% A list of log destination, used in the "category" clause. */
3310 * Handle the special kludge syntax of the "keys" clause in the "server"
3432 * The "file" clause of the "channel" statement.
3900 const cfg_clausedef_t *clause;
3903 for (clause = zone_clauses; clause->name != NULL; clause++) {
3904 if ((clause->flags & ztype) == 0 ||
3905 strcmp(clause->name, name) != 0)
3911 for (clause = zone_only_clauses; clause->name != NULL; clause++) {
3912 if ((clause->flags & ztype) == 0 ||
3913 strcmp(clause->name, name) != 0)
3930 sizeof(clause[0])) - 1)
3933 cfg_clausedef_t *clause = NULL;
3944 qsort(clauses, NCLAUSES - 1, sizeof(clause[0]), cmp_clause);
3989 for (clause = clauses; clause->name != NULL; clause++) {
3990 if ((clause->flags & zonetype) == 0 ||
3991 strcasecmp(clause->name, "type") == 0) {
3995 cfg_print_cstr(&pctx, clause->name);
3997 cfg_doc_obj(&pctx, clause->type);
3999 cfg_print_clauseflags(&pctx, clause->flags);