Lines Matching refs:new
439 header_entry *new;
447 new = (header_entry *) apr_array_push(fixup);
450 new->action = hdr_set;
452 new->action = hdr_setifempty;
454 new->action = hdr_add;
456 new->action = hdr_append;
458 new->action = hdr_merge;
460 new->action = hdr_unset;
462 new->action = hdr_echo;
464 new->action = hdr_edit;
466 new->action = hdr_edit_r;
468 new->action = hdr_note;
473 if (new->action == hdr_edit || new->action == hdr_edit_r) {
477 new->regex = ap_pregcomp(cmd->pool, value, AP_REG_EXTENDED);
478 if (new->regex == NULL) {
481 new->subs = subs;
490 if (new->action == hdr_unset) {
499 else if (new->action == hdr_echo) {
518 new->regex = regex;
555 new->header = hdr;
556 new->condition_var = condition_var;
557 new->expr = expr;
559 return parse_format_string(cmd, new, value);