Searched defs:subreq (Results 1 - 2 of 2) sorted by relevance

/httpd/modules/dav/main/
H A Dprops.c186 /* if we ever run a GET subreq, it will be stored here */
187 request_rec *subreq; member in struct:dav_propdb
331 propdb->subreq = ap_sub_req_lookup_uri(e_uri, propdb->r, NULL);
389 if (propdb->subreq == NULL) {
392 if (propdb->subreq->content_type != NULL) {
393 value = propdb->subreq->content_type;
401 if (propdb->subreq == NULL) {
404 if ((lang = apr_table_get(propdb->subreq->headers_out,
670 /* if we didn't find these, then do the whole subreq thing. */
/httpd/modules/arch/win32/
H A Dmod_isapi.c872 request_rec *subreq; local
971 subreq = ap_sub_req_lookup_uri(
974 if (!subreq->filename) {
975 ap_destroy_sub_req(subreq);
981 if ((subreq->finfo.filetype == APR_DIR)
982 && (!subreq->path_info)
984 file = apr_pstrcat(cid->r->pool, subreq->filename, "/", NULL);
986 file = apr_pstrcat(cid->r->pool, subreq->filename,
987 subreq->path_info, NULL);
989 ap_destroy_sub_req(subreq);
[all...]

Completed in 15 milliseconds