Lines Matching defs:uri
132 apr_uri_t uri;
134 rv = apr_uri_parse(p, lu, &uri);
136 if (!uri.scheme
137 || !uri.hostname
138 || !uri.path) {
144 if (strcmp(uri.scheme, "http")) {
149 lu, uri.scheme);
152 if (strcmp(uri.path, "/")) {
156 lu, uri.path);
161 *puri = uri;
195 apr_uri_t uri;
262 rv = parse_log_url(p, url, &uri);
297 newconf->uri = uri;
298 newconf->uri_str = apr_uri_unparse(p, &uri, 0);