• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching refs:URI

53     xmlChar              *URI; /* the fully resolved resource URL */
54 xmlChar *fragment; /* the fragment in the URI */
200 xmlGenericError(xmlGenericErrorContext, "Freeing doc %s\n", ref->URI);
204 if (ref->URI != NULL)
205 xmlFree(ref->URI);
216 * @URI: the resource URI
223 xmlXIncludeNewRef(xmlXIncludeCtxtPtr ctxt, const xmlChar *URI,
228 xmlGenericError(xmlGenericErrorContext, "New ref %s\n", URI);
236 if (URI == NULL)
237 ret->URI = NULL;
239 ret->URI = xmlStrdup(URI);
495 xmlChar *URI;
537 * compute the URI
541 URI = xmlBuildURI(href, ctxt->doc->URL);
543 URI = xmlBuildURI(href, base);
545 if (URI == NULL) {
553 URI = xmlBuildURI(eschref, escbase);
565 if (URI == NULL) {
575 uri = xmlParseURI((const char *)URI);
578 "invalid value URI %s\n", URI);
581 xmlFree(URI);
594 "Invalid fragment identifier in URI %s use the xpointer attribute\n",
595 URI);
599 xmlFree(URI);
606 xmlFree(URI);
609 "invalid value URI %s\n", URI);
1279 if (ent->URI != NULL)
1280 ret->URI = xmlStrdup(ent->URI);
1412 "invalid value URI %s\n", url);
1430 "invalid value URI %s\n", url);
1434 "invalid value URI %s\n", url);
1454 if ((xmlStrEqual(URL, ctxt->incTab[i]->URI)) &&
1504 if (xmlStrEqual(URL, ctxt->incTab[i]->URI)) {
1697 * URI base is different than (relative to) the context base
1703 "trying to build relative URI from %s\n", URL);
1705 /* If the URI doesn't contain a slash, it's not relative */
1725 * the specified xml:base or the relative URI
1800 "invalid value URI %s\n", url);
1814 "invalid value URI %s\n", url);
1997 xmlChar *URI;
2037 * compute the URI
2041 URI = xmlBuildURI(href, ctxt->doc->URL);
2043 URI = xmlBuildURI(href, base);
2045 if (URI == NULL) {
2053 URI = xmlBuildURI(eschref, escbase);
2059 if (URI == NULL) {
2073 xmlGenericError(xmlGenericErrorContext, "URI: %s\n", URI);
2083 ret = xmlXIncludeLoadDoc(ctxt, URI, nr);
2084 /* xmlXIncludeGetFragment(ctxt, cur, URI); */
2086 ret = xmlXIncludeLoadTxt(ctxt, URI, nr);
2121 URI);
2127 if (URI != NULL)
2128 xmlFree(URI);