Lines Matching refs:key
117 if (!elts[i].key) {
120 env[j] = apr_pstrcat(p, elts[i].key, "=", elts[i].val, NULL);
170 if (!hdrs[i].key) {
179 if (!strcasecmp(hdrs[i].key, "Content-type")) {
182 else if (!strcasecmp(hdrs[i].key, "Content-length")) {
191 else if (!strcasecmp(hdrs[i].key, "Authorization")
192 || !strcasecmp(hdrs[i].key, "Proxy-Authorization")) {
194 add_unless_null(e, http2env(r, hdrs[i].key), hdrs[i].val);
199 add_unless_null(e, http2env(r, hdrs[i].key), hdrs[i].val);
407 static int set_cookie_doo_doo(void *v, const char *key, const char *val)
409 apr_table_addn(v, key, val);
823 char *key;
831 key = apr_strtok(str, "&", &strtok_state);
832 while (key) {
833 value = strchr(key, '=');
841 ap_unescape_url(key);
843 apr_table_set(parms, key, value);
844 key = apr_strtok(NULL, "&", &strtok_state);