Home | History | Annotate | Download | only in libxml2

Lines Matching refs:unescaped

852  * Wrapper around xmlFileOpen_real that try it with an unescaped
859 char *unescaped;
864 unescaped = xmlURIUnescapeString(filename, 0, NULL);
865 if (unescaped != NULL) {
866 retval = xmlFileOpen_real(unescaped);
867 xmlFree(unescaped);
1121 char *unescaped;
1126 unescaped = xmlURIUnescapeString(filename, 0, NULL);
1127 if (unescaped != NULL) {
1128 retval = xmlGzfileOpen_real(unescaped);
1130 xmlFree(unescaped);
1308 * Wrapper around xmlXzfileOpen_real that try it with an unescaped
1315 char *unescaped;
1320 unescaped = xmlURIUnescapeString(filename, 0, NULL);
1321 if (unescaped != NULL) {
1322 retval = xmlXzfileOpen_real(unescaped);
1324 xmlFree(unescaped);
2630 char *unescaped = NULL;
2652 unescaped = xmlURIUnescapeString(URI, 0, NULL);
2659 * try with an unescaped version of the URI
2661 if (unescaped != NULL) {
2664 context = xmlGzfileOpenW(unescaped, compression);
2672 xmlFree(unescaped);
2679 (xmlOutputCallbackTable[i].matchcallback(unescaped) != 0)) {
2683 context = xmlIOHTTPOpenW(unescaped, compression);
2686 context = xmlOutputCallbackTable[i].opencallback(unescaped);
2691 xmlFree(unescaped);
3425 * @in: a pointer to an array of unescaped UTF-8 bytes