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

Function getParameterEntityDebug

ThirdParty/libxml2/vtklibxml2/runtest.c:752–763  ·  view source on GitHub ↗

* getParameterEntityDebug: * @ctxt: An XML parser context * @name: The entity name * * Get a parameter entity by name * * Returns the xmlParserInputPtr */

Source from the content-addressed store, hash-verified

750 * Returns the xmlParserInputPtr
751 */
752static xmlEntityPtr
753getParameterEntityDebug(void *ctx, const xmlChar *name)
754{
755 debugContext *ctxt = ctx;
756
757 callbacks++;
758 if (quiet)
759 return(NULL);
760 fprintf(SAXdebug, "SAX.getParameterEntity(%s)\n", name);
761
762 return(xmlHashLookup(ctxt->parameterEntities, name));
763}
764
765
766/**

Callers

nothing calls this directly

Calls 2

fprintfFunction · 0.85
xmlHashLookupFunction · 0.85

Tested by

no test coverage detected