Lines Matching defs:subreq
872 request_rec *subreq;
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);
1243 subreq = ap_sub_req_lookup_uri(test_uri, r, NULL);
1245 info->cchMatchingPath = apr_cpystrn(info->lpszPath, subreq->filename,
1252 if (subreq->path_info && *subreq->path_info) {
1254 subreq->path_info,
1256 info->cchMatchingURL -= strlen(subreq->path_info);
1257 if (subreq->finfo.filetype == APR_DIR
1264 else if (subreq->finfo.filetype == APR_DIR
1272 if (subreq->finfo.filetype == APR_NOFILE) {
1301 info->dwFlags = (subreq->finfo.protection & APR_UREAD ? 0x001 : 0)
1302 | (subreq->finfo.protection & APR_UWRITE ? 0x002 : 0)
1303 | (subreq->finfo.protection & APR_UEXECUTE ? 0x204 : 0);