Lines Matching defs:key
148 ap_regkey_t *key;
163 /* Open the key associated with the script filetype extension */
174 /* Open the key associated with the script filetype extension */
179 /* Open the key for the script command path by:
181 * 1) the 'named' filetype key for ExecCGI/Command
182 * 2) the extension's type key for ExecCGI/Command
186 * 3) the 'named' filetype key for Open/Command
187 * 4) the extension's type key for Open/Command
191 if ((rv = ap_regkey_open(&key, name_key, execcgi_path, APR_READ, p))
193 rv = ap_regkey_value_get(&buffer, key, "", p);
199 if ((rv = ap_regkey_open(&key, type_key, execcgi_path, APR_READ, p))
201 rv = ap_regkey_value_get(&buffer, key, "", p);
207 if ((rv = ap_regkey_open(&key, name_key, execopen_path, APR_READ, p))
209 rv = ap_regkey_value_get(&buffer, key, "", p);
215 if ((rv = ap_regkey_open(&key, type_key, execopen_path, APR_READ, p))
217 rv = ap_regkey_value_get(&buffer, key, "", p);
527 if (elts[i].key && *elts[i].key && *elts[i].val
528 && !(strncmp(elts[i].key, "REMOTE_", 7) == 0
529 || strcmp(elts[i].key, "GATEWAY_INTERFACE") == 0
530 || strcmp(elts[i].key, "REQUEST_METHOD") == 0
531 || strcmp(elts[i].key, "SERVER_ADDR") == 0
532 || strcmp(elts[i].key, "SERVER_PORT") == 0
533 || strcmp(elts[i].key, "SERVER_PROTOCOL") == 0)) {