Lines Matching defs:rr
1722 request_rec *rr = ap_sub_req_lookup_uri(s, r, f->next);
1725 if (rr->status != HTTP_OK) {
1726 ap_destroy_sub_req(rr);
1731 if ((rr->path_info && rr->path_info[0]) || rr->args) {
1732 ap_destroy_sub_req(rr);
1735 if (rr->finfo.filetype != APR_REG) {
1736 ap_destroy_sub_req(rr);
1741 rr->path_info = r->path_info; /* hard to get right; see mod_cgi.c */
1742 rr->args = r->args;
1747 ap_set_content_type(rr, CGI_MAGIC_TYPE);
1750 rr_status = ap_run_sub_req(rr);
1752 const char *location = apr_table_get(rr->headers_out, "Location");
1757 location = ap_escape_html(rr->pool, location);
1767 ap_destroy_sub_req(rr);