Lines Matching refs:uri
371 xmlURIPtr uri; in xsltCheckWrite() local
374 uri = xmlParseURI((const char *)URL); in xsltCheckWrite()
375 if (uri == NULL) { in xsltCheckWrite()
376 uri = xmlCreateURI(); in xsltCheckWrite()
377 if (uri == NULL) { in xsltCheckWrite()
382 uri->path = (char *)xmlStrdup(URL); in xsltCheckWrite()
384 if ((uri->scheme == NULL) || in xsltCheckWrite()
385 (xmlStrEqual(BAD_CAST uri->scheme, BAD_CAST "file"))) { in xsltCheckWrite()
388 if ((uri->path)&&(uri->path[0]=='/')&& in xsltCheckWrite()
389 (uri->path[1]!='\0')&&(uri->path[2]==':')) in xsltCheckWrite()
390 ret = xsltCheckWritePath(sec, ctxt, uri->path+1); in xsltCheckWrite()
397 ret = xsltCheckWritePath(sec, ctxt, uri->path); in xsltCheckWrite()
399 xmlFreeURI(uri); in xsltCheckWrite()
412 xmlFreeURI(uri); in xsltCheckWrite()
417 xmlFreeURI(uri); in xsltCheckWrite()
436 xmlURIPtr uri; in xsltCheckRead() local
439 uri = xmlParseURI((const char *)URL); in xsltCheckRead()
440 if (uri == NULL) { in xsltCheckRead()
446 if ((uri->scheme == NULL) || in xsltCheckRead()
447 (xmlStrEqual(BAD_CAST uri->scheme, BAD_CAST "file"))) { in xsltCheckRead()
454 ret = check(sec, ctxt, uri->path); in xsltCheckRead()
458 xmlFreeURI(uri); in xsltCheckRead()
472 xmlFreeURI(uri); in xsltCheckRead()
477 xmlFreeURI(uri); in xsltCheckRead()