Searched defs:regexp (Results 1 - 6 of 6) sorted by relevance

/httpd/modules/metadata/
H A Dmod_usertrack.c87 char *regexp_string; /* used to compile regexp; save for debugging */
88 ap_regex_t *regexp; /* used to find usertrack cookie in cookie header */ member in struct:__anon273
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
[all...]
/httpd/modules/mappers/
H A Dmod_alias.c44 ap_regex_t *regexp; member in struct:__anon228
141 new->regexp = ap_pregcomp(cmd->pool, fake, AP_REG_EXTENDED);
142 if (new->regexp == NULL)
164 if ( (!alias->regexp && alias_matches(fake, alias->fake) > 0)
165 || (alias->regexp && !ap_regexec(alias->regexp, fake, 0, NULL, 0))) {
173 alias->regexp ? "Match" : "");
356 new->regexp = regex;
533 if (alias->regexp) {
534 if (!ap_regexec(alias->regexp,
[all...]
H A Dmod_rewrite.c300 ap_regex_t *regexp; /* the precompiled regexp */ member in struct:__anon237
316 ap_regex_t *regexp; /* the RegExp pattern compilation */ member in struct:__anon238
3286 ap_regex_t *regexp; local
3434 regexp = ap_pregcomp(cmd->pool, a2,
3437 if (!regexp) {
3442 newcond->regexp = regexp;
3712 ap_regex_t *regexp; local
3752 * try to compile the regexp t
[all...]
/httpd/modules/filters/
H A Dmod_substitute.c49 const ap_regex_t *regexp; member in struct:subst_pattern_t
236 else if (script->regexp) {
241 while (!ap_regexec_len(script->regexp, pos, left,
628 nscript->regexp = NULL;
638 nscript->regexp = r;
/httpd/modules/aaa/
H A Dmod_authnz_ldap.c1666 ap_regex_t *regexp; local
1668 regexp = ap_pregcomp(cmd->pool, exp, AP_REG_EXTENDED);
1670 if (!regexp) {
1675 sec->bind_regex = regexp;
/httpd/modules/proxy/
H A Dmod_proxy.h102 ap_regex_t *regexp; /* compiled regex (if any) for the remote */ member in struct:proxy_remote

Completed in 52 milliseconds