Searched refs:ap_regcomp (Results 1 - 7 of 7) sorted by relevance
/httpd/server/ |
H A D | util_regex.c | 69 if (ap_regcomp(&ret->rx, pattern, 0) == 0) { 108 if (ap_regcomp(&ret->rx, rxstr, ret->flags) == 0) {
|
H A D | util_pcre.c | 140 AP_DECLARE(int) ap_regcomp(ap_regex_t * preg, const char *pattern, int cflags) function
|
H A D | util.c | 265 * Here's a pool-based interface to the POSIX-esque ap_regcomp(). 282 int err = ap_regcomp(preg, pattern, cflags);
|
/httpd/include/ |
H A D | ap_regex.h | 66 /* Options for ap_regcomp, ap_regexec, and ap_rxplus versions: */ 128 AP_DECLARE(int) ap_regcomp(ap_regex_t *preg, const char *regex, int cflags); 204 * match-string is anything supported by ap_regcomp
|
/httpd/modules/lua/ |
H A D | lua_config.c | 68 if ((rv = ap_regcomp(uri_pattern, pattern, 0)) != APR_SUCCESS) { 103 if (ap_regcomp(uri_pattern, pattern, 0) != OK) {
|
H A D | lua_request.c | 1145 rv = ap_regcomp(®ex, pattern, flags);
|
H A D | mod_lua.c | 1145 if (ap_regcomp(regex, pattern,0)) {
|
Completed in 1820 milliseconds