Lines Matching refs:rr

1717 	request_rec *rr = NULL;  in PHP_FUNCTION()  local
1723 if (!(rr = sub_req_lookup_uri (filename, ((request_rec *) SG(server_context))))) { in PHP_FUNCTION()
1725 if (rr) in PHP_FUNCTION()
1726 destroy_sub_req (rr); in PHP_FUNCTION()
1730 if (rr->status != 200) { in PHP_FUNCTION()
1732 if (rr) in PHP_FUNCTION()
1733 destroy_sub_req (rr); in PHP_FUNCTION()
1740 if (run_sub_req(rr)) { in PHP_FUNCTION()
1742 if (rr) in PHP_FUNCTION()
1743 destroy_sub_req (rr); in PHP_FUNCTION()
1747 if (rr) in PHP_FUNCTION()
1748 destroy_sub_req (rr); in PHP_FUNCTION()
1838 request_rec *rr=NULL; in PHP_FUNCTION() local
1844 if(!(rr = sub_req_lookup_uri(filename, ((request_rec *) SG(server_context))))) { in PHP_FUNCTION()
1850 add_property_long(return_value,"status", rr->status); in PHP_FUNCTION()
1852 if (rr->the_request) { in PHP_FUNCTION()
1853 add_property_string(return_value,"the_request", rr->the_request, 1); in PHP_FUNCTION()
1855 if (rr->status_line) { in PHP_FUNCTION()
1856 add_property_string(return_value,"status_line", (char *)rr->status_line, 1); in PHP_FUNCTION()
1858 if (rr->method) { in PHP_FUNCTION()
1859 add_property_string(return_value,"method", (char *)rr->method, 1); in PHP_FUNCTION()
1861 if (rr->content_type) { in PHP_FUNCTION()
1862 add_property_string(return_value,"content_type", (char *)rr->content_type, 1); in PHP_FUNCTION()
1864 if (rr->handler) { in PHP_FUNCTION()
1865 add_property_string(return_value,"handler", (char *)rr->handler, 1); in PHP_FUNCTION()
1867 if (rr->uri) { in PHP_FUNCTION()
1868 add_property_string(return_value,"uri", rr->uri, 1); in PHP_FUNCTION()
1870 if (rr->filename) { in PHP_FUNCTION()
1871 add_property_string(return_value,"filename", rr->filename, 1); in PHP_FUNCTION()
1873 if (rr->path_info) { in PHP_FUNCTION()
1874 add_property_string(return_value,"path_info", rr->path_info, 1); in PHP_FUNCTION()
1876 if (rr->args) { in PHP_FUNCTION()
1877 add_property_string(return_value,"args", rr->args, 1); in PHP_FUNCTION()
1879 if (rr->boundary) { in PHP_FUNCTION()
1880 add_property_string(return_value,"boundary", rr->boundary, 1); in PHP_FUNCTION()
1882 add_property_long(return_value,"no_cache", rr->no_cache); in PHP_FUNCTION()
1883 add_property_long(return_value,"no_local_copy", rr->no_local_copy); in PHP_FUNCTION()
1884 add_property_long(return_value,"allowed", rr->allowed); in PHP_FUNCTION()
1885 add_property_long(return_value,"sent_bodyct", rr->sent_bodyct); in PHP_FUNCTION()
1886 add_property_long(return_value,"bytes_sent", rr->bytes_sent); in PHP_FUNCTION()
1887 add_property_long(return_value,"byterange", rr->byterange); in PHP_FUNCTION()
1888 add_property_long(return_value,"clength", rr->clength); in PHP_FUNCTION()
1891 if (rr->unparsed_uri) { in PHP_FUNCTION()
1892 add_property_string(return_value,"unparsed_uri", rr->unparsed_uri, 1); in PHP_FUNCTION()
1894 if(rr->mtime) { in PHP_FUNCTION()
1895 add_property_long(return_value,"mtime", rr->mtime); in PHP_FUNCTION()
1898 if(rr->request_time) { in PHP_FUNCTION()
1899 add_property_long(return_value,"request_time", rr->request_time); in PHP_FUNCTION()
1902 destroy_sub_req(rr); in PHP_FUNCTION()
1915 request_rec *rr=NULL;
1922 …if(!(rr = ap_sub_req_lookup_uri((*filename)->value.str.val, ((request_rec *) SG(server_context))))…
1926 RETVAL_LONG(ap_run_sub_req(rr));
1927 ap_destroy_sub_req(rr);