Lines Matching refs:var
33 * SetEnvIf name regex var ...
42 * environment variables listed as var ... are set. Each var can
43 * be in one of three formats: var, which sets the named variable
44 * (the value value "1"); var=value, which sets the variable to
45 * the given value; or !var, which unsets the variable is it has
253 char *var;
262 var = ap_getword(cmd->pool, &feature, '=');
264 apr_table_setn(new->features, var, feature);
266 else if (*var == '!') {
267 apr_table_setn(new->features, var + 1, "!");
270 apr_table_setn(new->features, var, "1");