Lines Matching refs:val
214 const char *val = header_ssl_lookup(r->pool, r->server,
216 if (val && val[0])
217 return unwrap_header(r->pool, val);
568 const char *val;
583 val = *args ? ap_getword_conf(cmd->pool, &args) : NULL;
592 return header_inout_cmd(cmd, indirconf, action, hdr, val, subs, envclause);
613 const char *val;
614 val = ap_expr_str_exec(r, hdr->expr_out, &err);
620 return apr_pstrdup(r->pool, val);
669 static int echo_header(echo_do *v, const char *key, const char *val)
675 apr_table_add(v->r->headers_out, key, val);
681 static int edit_header(void *v, const char *key, const char *val)
684 const char *repl = process_regexp(ed->hdr, val, ed->r);
692 static int add_them_all(void *v, const char *key, const char *val)
696 apr_table_addn(headers, key, val);
705 const char *val;
752 val = apr_table_get(headers, hdr->header);
753 if (val == NULL) {
761 while (*val) {
764 while (apr_isspace(*val))
765 ++val;
767 tok_start = val;
769 while (*val && *val != ',') {
770 if (*val++ == '"')
771 while (*val)
772 if (*val++ == '"')
776 if (new_val_len == (apr_size_t)(val - tok_start)
782 if (*val)
783 ++val;