Lines Matching defs:pmatch
1202 ap_regmatch_t *pmatch = NULL;
1216 pmatch = apr_palloc(rxpool, nmatch*sizeof(ap_regmatch_t));
1219 if (ap_regexec(entry_core->r, r->filename, nmatch, pmatch, 0)) {
1224 if (pmatch[i].rm_so >= 0 && pmatch[i].rm_eo >= 0 &&
1229 r->filename + pmatch[i].rm_so,
1230 pmatch[i].rm_eo - pmatch[i].rm_so));
1439 ap_regmatch_t *pmatch = NULL;
1446 pmatch = apr_palloc(rxpool, nmatch*sizeof(ap_regmatch_t));
1449 if (ap_regexec(entry_core->r, r->uri, nmatch, pmatch, 0)) {
1454 if (pmatch[i].rm_so >= 0 && pmatch[i].rm_eo >= 0 &&
1459 r->uri + pmatch[i].rm_so,
1460 pmatch[i].rm_eo - pmatch[i].rm_so));
1641 ap_regmatch_t *pmatch = NULL;
1648 pmatch = apr_palloc(rxpool, nmatch*sizeof(ap_regmatch_t));
1651 if (ap_regexec(entry_core->r, cache->cached, nmatch, pmatch, 0)) {
1656 if (pmatch[i].rm_so >= 0 && pmatch[i].rm_eo >= 0 &&
1661 cache->cached + pmatch[i].rm_so,
1662 pmatch[i].rm_eo - pmatch[i].rm_so));