Lines Matching +refs:val +refs:context
90 (apr_pool_t *p, const char *val, apr_hash_t *ht),
91 (p, val, ht), OK, DECLINED)
446 /* A mapping only makes sense in the global context */
464 /* initialization, no special case for global context */
1346 return apr_pstrcat(cmd->pool, cmd->cmd->name, " is not valid in ", cmd->parent->directive, " context", NULL);
1373 return apr_pstrcat(cmd->pool, cmd->cmd->name, " is not valid in ", cmd->parent->directive, " context", NULL);
2176 errmsg = ap_walk_config(cmd->directive->first_child, cmd, cmd->context);
3502 int val = 0;
3505 val = AP_MAXRANGES_NORANGES;
3508 val = AP_MAXRANGES_DEFAULT;
3511 val = AP_MAXRANGES_UNLIMITED;
3514 val = atoi(arg);
3515 if (val <= 0)
3520 conf->max_ranges = val;
3528 int val = 0;
3531 val = AP_MAXRANGES_NORANGES;
3534 val = AP_MAXRANGES_DEFAULT;
3537 val = AP_MAXRANGES_UNLIMITED;
3540 val = atoi(arg);
3541 if (val <= 0)
3546 conf->max_overlaps = val;
3554 int val = 0;
3557 val = AP_MAXRANGES_NORANGES;
3560 val = AP_MAXRANGES_DEFAULT;
3563 val = AP_MAXRANGES_UNLIMITED;
3566 val = atoi(arg);
3567 if (val <= 0)
3572 conf->max_reversals = val;
5201 const char *val = NULL;
5203 val = apr_table_get(server_config_defined_vars, name);
5204 if (val)
5205 apr_file_printf(out, "Define: %s=%s\n", name, val);