Home | History | Annotate | Download | only in libxml2

Lines Matching defs:unescaped

930  * Wrapper around xmlFileOpen_real that try it with an unescaped
937 char *unescaped;
942 unescaped = xmlURIUnescapeString(filename, 0, NULL);
943 if (unescaped != NULL) {
944 retval = xmlFileOpen_real(unescaped);
945 xmlFree(unescaped);
1192 char *unescaped;
1197 unescaped = xmlURIUnescapeString(filename, 0, NULL);
1198 if (unescaped != NULL) {
1199 retval = xmlGzfileOpen_real(unescaped);
1201 xmlFree(unescaped);
1374 * Wrapper around xmlXzfileOpen_real that try it with an unescaped
1381 char *unescaped;
1386 unescaped = xmlURIUnescapeString(filename, 0, NULL);
1387 if (unescaped != NULL) {
1388 retval = xmlXzfileOpen_real(unescaped);
1390 xmlFree(unescaped);
2701 char *unescaped = NULL;
2723 unescaped = xmlURIUnescapeString(URI, 0, NULL);
2730 * try with an unescaped version of the URI
2732 if (unescaped != NULL) {
2735 context = xmlGzfileOpenW(unescaped, compression);
2743 xmlFree(unescaped);
2750 (xmlOutputCallbackTable[i].matchcallback(unescaped) != 0)) {
2754 context = xmlIOHTTPOpenW(unescaped, compression);
2757 context = xmlOutputCallbackTable[i].opencallback(unescaped);
2762 xmlFree(unescaped);
3462 * @in: a pointer to an array of unescaped UTF-8 bytes