Lines Matching defs:word
1226 AP_DECLARE(const char *) ap_resolve_env(apr_pool_t *p, const char * word)
1239 s = ap_strchr_c(word, '$');
1241 return word;
1245 ep = word + strlen(word);
1249 current->string = word;
1250 current->len = s - word;
1268 word = NULL;
1270 word = apr_table_get(server_config_defined_vars, name);
1271 if (!word)
1272 word = getenv(name);
1273 if (word) {
1274 current->string = word;
1275 current->len = strlen(word);
1296 word = s;
1298 current->string = word;
1299 current->len = s ? s - word : ep - word;