Searched refs:xmlReadMemory (Results 1 - 12 of 12) sorted by relevance

/vbox/src/libs/libxml2-2.6.31/doc/examples/
H A Dparse3.c4 * purpose: Demonstrate the use of xmlReadMemory() to read an XML file
33 doc = xmlReadMemory(content, length, "noname.xml", NULL, 0);
H A Dio1.c124 doc = xmlReadMemory(include, strlen(include), "include.xml", NULL, 0);
/vbox/src/libs/libxml2-2.6.31/
H A Drunsuite.c515 doc = xmlReadMemory((const char *)buf->content, buf->use,
572 doc = xmlReadMemory((const char *)buf->content, buf->use,
H A Dschematron.c1097 doc = xmlReadMemory(ctxt->buffer, ctxt->size, NULL, NULL,
H A Dxmllint.c2228 doc = xmlReadMemory((char *) base, info.st_size,
H A Delfgcchack.h7853 #undef xmlReadMemory macro
7854 extern __typeof (xmlReadMemory) xmlReadMemory __attribute((alias("xmlReadMemory__internal_alias")));
7856 #ifndef xmlReadMemory
7857 extern __typeof (xmlReadMemory) xmlReadMemory__internal_alias __attribute((visibility("hidden")));
7858 #define xmlReadMemory xmlReadMemory__internal_alias macro
H A Dparser.c13660 * xmlReadMemory:
13672 xmlReadMemory(const char *buffer, int size, const char *URL, const char *encoding, int options) function
H A Drelaxng.c7362 doc = xmlReadMemory(ctxt->buffer, ctxt->size,NULL,NULL,0);
H A Dtestapi.c62 api_doc = xmlReadMemory("<!DOCTYPE root [<!ELEMENT root EMPTY>]><root xmlns:h='http://example.com/' h:foo='bar'/>", 88, "root_test", NULL, 0);
500 if (no == 1) return(xmlReadMemory("<foo/>", 6, "test", NULL, 0));
14512 ret_val = xmlReadMemory((const char *)buffer, size, URL, (const char *)encoding, options);
14522 printf("Leak of %d blocks found in xmlReadMemory",
[all...]
/vbox/src/libs/libxml2-2.6.31/include/libxml/
H A Dparser.h1121 xmlReadMemory (const char *buffer,
/vbox/src/VBox/Runtime/common/misc/
H A Ds3.cpp394 *ppDoc = xmlReadMemory(pChunk->pszMem, (int)pChunk->cSize, "", "ISO-8859-1", XML_PARSE_NOBLANKS | XML_PARSE_NONET);
/vbox/src/libs/libxml2-2.6.31/python/
H A Dlibxml2-py.c9482 if (!PyArg_ParseTuple(args, (char *)"t#izzi:xmlReadMemory", &buffer, &py_buffsize0, &size, &URL, &encoding, &options))
9485 c_retval = xmlReadMemory(buffer, size, URL, encoding, options);

Completed in 351 milliseconds