Lines Matching defs:regexp
87 char *regexp_string; /* used to compile regexp; save for debugging */
88 ap_regex_t *regexp; /* used to find usertrack cookie in cookie header */
154 /* dcfg->regexp is "^cookie_name=([^;]+)|;[ \t]+cookie_name=([^;]+)",
165 /* The goal is to end up with this regexp,
201 dcfg->regexp = ap_pregcomp(p, dcfg->regexp_string, AP_REG_EXTENDED);
202 ap_assert(dcfg->regexp != NULL);
218 if (!ap_regexec(dcfg->regexp, cookie_header, NUM_SUBS, regm, 0)) {
221 /* Our regexp,
275 * we need to compile the regexp for the default cookie name. */
366 if (dcfg->regexp == NULL) {
369 if (dcfg->regexp->re_nsub + 1 != NUM_SUBS) {