* getParameterEntityDebug: * @ctxt: An XML parser context * @name: The entity name * * Get a parameter entity by name * * Returns the xmlParserInputPtr */
| 750 | * Returns the xmlParserInputPtr |
| 751 | */ |
| 752 | static xmlEntityPtr |
| 753 | getParameterEntityDebug(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 | /** |
nothing calls this directly
no test coverage detected