Lines Matching refs:directive
1140 newdir->directive = cmd_name;
1194 "> directive missing closing '>'", NULL);
1200 (*curr_parent)->directive + 1) != 0) {
1203 (*curr_parent)->directive + 1, "> but saw ",
1277 char *dir = apr_pstrdup(parms->temp_pool, current->directive);
1287 APLOGNO(02296) "Unknown directive %s "
1294 current->directive,
1318 /* If the directive in error has already been set, don't
1345 parms->directive = current;
1426 curr_parent->directive);
1465 "Invalid value for directive %s, expected integer",
1466 cmd->directive->directive);
1602 AP_DECLARE(const char *) ap_soak_end_container(cmd_parms *cmd, char *directive)
1623 if (strcasecmp(cmd_name + 2, directive + 1) != 0) {
1625 directive + 1, "> but saw ",
1649 directive + 1, "> before end of configuration",
1765 return apr_pstrcat(p, "Syntax error in -C/-c directive: ", errmsg,
2487 * a particular directive is allowed to be used. This procedure prints
2488 * in English where the given (pc) directive can be used.
2507 /* Warn if the directive is allowed inside <Directory> or .htaccess
2563 * the directive arguments, in what module they are handled, and in
2610 static int count_directives_sub(const char *directive, ap_directive_t *current)
2615 count += count_directives_sub(directive, current->first_child);
2616 if (strcasecmp(current->directive, directive) == 0)
2628 AP_DECLARE(void) ap_reserve_module_slots_directive(const char *directive)
2630 ap_reserve_module_slots(count_directives_sub(directive, ap_conftree));