Lines Matching defs:found
158 * and throw a warning if found one
455 char *found = apr_pstrdup(r->pool,
468 * and merge to whatever part of the found path was already
472 found = ap_server_root_relative(r->pool, found);
473 return found;
488 char *found = "";
492 found = apr_pstrdup(r->pool,
500 apr_uri_parse(r->pool, found, &uri);
502 found = apr_uri_unparse(r->pool, &uri, APR_URI_UNP_OMITQUERY);
503 found = ap_escape_uri(r->pool, found);
505 found = apr_pstrcat(r->pool, found, "?", uri.query, NULL);
508 found = apr_pstrcat(r->pool, found, "#", uri.fragment, NULL);
514 return found;
526 char *found = NULL;
536 found = ap_pregsub(r->pool, alias->real, r->uri,
538 if (found) {
541 apr_uri_parse(r->pool, found, &uri);
543 found = apr_uri_unparse(r->pool, &uri,
545 found = ap_escape_uri(r->pool, found);
547 found = apr_pstrcat(r->pool, found, "?",
551 found = apr_pstrcat(r->pool, found, "#",
565 found = "";
578 found = apr_pstrcat(r->pool, alias->real, escurl, NULL);
581 found = apr_pstrcat(r->pool, alias->real, r->uri + l, NULL);
585 if (found) {
591 * and merge to whatever part of the found path was already
596 found = ap_server_root_relative(r->pool, found);
598 if (found) {
601 return found;