Searched refs:matches (Results 1 - 2 of 2) sorted by relevance

/httpd/server/
H A Drequest.c647 /* If we have a file already matches the path of r->filename,
734 int matches = cache->walked->nelts; local
735 int cached_matches = matches;
906 /* No more possible matches for this many segments?
935 if (matches) {
939 --matches;
944 * so truncate the remaining matches and reset remaining.
946 cache->walked->nelts -= matches;
947 matches = 0;
1003 if (matches) {
1410 int matches = cache->walked->nelts; local
1621 int matches = cache->walked->nelts; local
1755 int matches; local
[all...]
/httpd/modules/lua/
H A Dlua_request.c1135 ap_regmatch_t matches[MODLUA_MAX_REG_MATCH+1]; local
1158 "regcomp found %d matches; only %d allowed.",
1164 rv = ap_regexec(&regex, source, MODLUA_MAX_REG_MATCH, matches, 0);
1173 if (matches[i].rm_so >= 0 && matches[i].rm_eo >= 0)
1175 apr_pstrndup(r->pool, source + matches[i].rm_so,
1176 matches[i].rm_eo - matches[i].rm_so));
1649 * Determine if a string matches a patterm containing the wildcards '?' or '*'

Completed in 1019 milliseconds