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

Function xmlHaltParser

ThirdParty/libxml2/vtklibxml2/parserInternals.c:410–416  ·  view source on GitHub ↗

* xmlHaltParser: * @ctxt: an XML parser context * * Blocks further parser processing don't override error * for internal use */

Source from the content-addressed store, hash-verified

408 * for internal use
409 */
410void
411xmlHaltParser(xmlParserCtxtPtr ctxt) {
412 if (ctxt == NULL)
413 return;
414 ctxt->instate = XML_PARSER_EOF; /* TODO: Remove after refactoring */
415 ctxt->disableSAX = 2;
416}
417
418/**
419 * xmlParserInputRead:

Callers 15

xmlSAX2TextFunction · 0.85
htmlParseChunkFunction · 0.85
xmlParserGrowFunction · 0.85
xmlSwitchInputEncodingFunction · 0.85
xmlParserEntityCheckFunction · 0.85
nodePushFunction · 0.85
xmlPushInputFunction · 0.85
xmlCheckEntityInAttValueFunction · 0.85
xmlParseEntityDeclFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected