MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlParserInputBufferRead

Function xmlParserInputBufferRead

ThirdParty/libxml2/vtklibxml2/xmlIO.c:2420–2423  ·  view source on GitHub ↗

* xmlParserInputBufferRead: * @in: a buffered parser input * @len: indicative value of the amount of chars to read * * Refresh the content of the input buffer, the old data are considered * consumed * This routine handle the I18N transcoding to internal UTF-8 * * Returns the number of chars read and stored in the buffer, or -1 * in case of error. */

Source from the content-addressed store, hash-verified

2418 * in case of error.
2419 */
2420int
2421xmlParserInputBufferRead(xmlParserInputBufferPtr in, int len) {
2422 return(xmlParserInputBufferGrow(in, len));
2423}
2424
2425#ifdef LIBXML_OUTPUT_ENABLED
2426/**

Callers 5

xmlTextReaderPushDataFunction · 0.85
xmlNewTextReaderFunction · 0.85
xmlTextReaderSetupFunction · 0.85
xmlParserInputShrinkFunction · 0.85
xmlXIncludeLoadTxtFunction · 0.85

Calls 1

xmlParserInputBufferGrowFunction · 0.85

Tested by

no test coverage detected