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

Function xmlStopParser

ThirdParty/libxml2/vtklibxml2/parser.c:11755–11762  ·  view source on GitHub ↗

* xmlStopParser: * @ctxt: an XML parser context * * Blocks further parser processing */

Source from the content-addressed store, hash-verified

11753 * Blocks further parser processing
11754 */
11755void
11756xmlStopParser(xmlParserCtxtPtr ctxt) {
11757 if (ctxt == NULL)
11758 return;
11759 xmlHaltParser(ctxt);
11760 if (ctxt->errNo != XML_ERR_NO_MEMORY)
11761 ctxt->errNo = XML_ERR_USER_STOP;
11762}
11763
11764/**
11765 * xmlCreateIOParserCtxt:

Callers 6

xmlTextReaderCloseFunction · 0.85
xmlSchemaSAXHandleTextFunction · 0.85

Calls 1

xmlHaltParserFunction · 0.85

Tested by

no test coverage detected