Lines Matching defs:parsed_uri
231 scheme = r->parsed_uri.scheme;
630 apr_uri_t parsed_uri;
654 if ((rv = apr_uri_parse(r->pool, uri, &parsed_uri)) != APR_SUCCESS
655 || !parsed_uri.path) {
660 /* note that parsed_uri.path is allocated; we can trash it */
663 ap_getparents(parsed_uri.path);
666 if (ap_unescape_url(parsed_uri.path) != OK) {
673 uri_len = strlen(parsed_uri.path);
674 if (uri_len > 1 && parsed_uri.path[uri_len - 1] == '/') {
675 parsed_uri.path[--uri_len] = '\0';
678 uri = parsed_uri.path;