Lines Matching defs:rr
1055 request_rec *rr = ap_sub_req_lookup_uri(s, r, f->next);
1058 if (rr->status != HTTP_OK) {
1059 ap_destroy_sub_req(rr);
1064 if ((rr->path_info && rr->path_info[0]) || rr->args) {
1065 ap_destroy_sub_req(rr);
1068 if (rr->finfo.filetype != APR_REG) {
1069 ap_destroy_sub_req(rr);
1074 rr->path_info = r->path_info; /* hard to get right; see mod_cgi.c */
1075 rr->args = r->args;
1080 ap_set_content_type(rr, CGI_MAGIC_TYPE);
1083 rr_status = ap_run_sub_req(rr);
1085 const char *location = apr_table_get(rr->headers_out, "Location");
1090 location = ap_escape_html(rr->pool, location);
1100 ap_destroy_sub_req(rr);