Lines Matching refs:SAXdebug

772 static FILE *SAXdebug = NULL;  variable
830 fprintf(SAXdebug, "SAX.isStandalone()\n"); in isStandaloneDebug()
848 fprintf(SAXdebug, "SAX.hasInternalSubset()\n"); in hasInternalSubsetDebug()
866 fprintf(SAXdebug, "SAX.hasExternalSubset()\n"); in hasExternalSubsetDebug()
883 fprintf(SAXdebug, "SAX.internalSubset(%s,", name); in internalSubsetDebug()
885 fprintf(SAXdebug, " ,"); in internalSubsetDebug()
887 fprintf(SAXdebug, " %s,", ExternalID); in internalSubsetDebug()
889 fprintf(SAXdebug, " )\n"); in internalSubsetDebug()
891 fprintf(SAXdebug, " %s)\n", SystemID); in internalSubsetDebug()
907 fprintf(SAXdebug, "SAX.externalSubset(%s,", name); in externalSubsetDebug()
909 fprintf(SAXdebug, " ,"); in externalSubsetDebug()
911 fprintf(SAXdebug, " %s,", ExternalID); in externalSubsetDebug()
913 fprintf(SAXdebug, " )\n"); in externalSubsetDebug()
915 fprintf(SAXdebug, " %s)\n", SystemID); in externalSubsetDebug()
941 fprintf(SAXdebug, "SAX.resolveEntity("); in resolveEntityDebug()
943 fprintf(SAXdebug, "%s", (char *)publicId); in resolveEntityDebug()
945 fprintf(SAXdebug, " "); in resolveEntityDebug()
947 fprintf(SAXdebug, ", %s)\n", (char *)systemId); in resolveEntityDebug()
949 fprintf(SAXdebug, ", )\n"); in resolveEntityDebug()
973 fprintf(SAXdebug, "SAX.getEntity(%s)\n", name); in getEntityDebug()
992 fprintf(SAXdebug, "SAX.getParameterEntity(%s)\n", name); in getParameterEntityDebug()
1023 fprintf(SAXdebug, "SAX.entityDecl(%s, %d, %s, %s, %s)\n", in entityDeclDebug()
1044 fprintf(SAXdebug, "SAX.attributeDecl(%s, %s, %d, %d, NULL, ...)\n", in attributeDeclDebug()
1047 fprintf(SAXdebug, "SAX.attributeDecl(%s, %s, %d, %d, %s, ...)\n", in attributeDeclDebug()
1068 fprintf(SAXdebug, "SAX.elementDecl(%s, %d, ...)\n", in elementDeclDebug()
1088 fprintf(SAXdebug, "SAX.notationDecl(%s, %s, %s)\n", in notationDeclDebug()
1118 fprintf(SAXdebug, "SAX.unparsedEntityDecl(%s, %s, %s, %s)\n", in unparsedEntityDeclDebug()
1137 fprintf(SAXdebug, "SAX.setDocumentLocator()\n"); in setDocumentLocatorDebug()
1152 fprintf(SAXdebug, "SAX.startDocument()\n"); in startDocumentDebug()
1167 fprintf(SAXdebug, "SAX.endDocument()\n"); in endDocumentDebug()
1185 fprintf(SAXdebug, "SAX.startElement(%s", (char *) name); in startElementDebug()
1188 fprintf(SAXdebug, ", %s='", atts[i++]); in startElementDebug()
1190 fprintf(SAXdebug, "%s'", atts[i]); in startElementDebug()
1193 fprintf(SAXdebug, ")\n"); in startElementDebug()
1209 fprintf(SAXdebug, "SAX.endElement(%s)\n", (char *) name); in endElementDebug()
1234 fprintf(SAXdebug, "SAX.characters(%s, %d)\n", output, len); in charactersDebug()
1250 fprintf(SAXdebug, "SAX.reference(%s)\n", name); in referenceDebug()
1275 fprintf(SAXdebug, "SAX.ignorableWhitespace(%s, %d)\n", output, len); in ignorableWhitespaceDebug()
1295 fprintf(SAXdebug, "SAX.processingInstruction(%s, %s)\n", in processingInstructionDebug()
1298 fprintf(SAXdebug, "SAX.processingInstruction(%s, NULL)\n", in processingInstructionDebug()
1316 fprintf(SAXdebug, "SAX.pcdata(%.20s, %d)\n", in cdataBlockDebug()
1333 fprintf(SAXdebug, "SAX.comment(%s)\n", value); in commentDebug()
1354 fprintf(SAXdebug, "SAX.warning: "); in warningDebug()
1355 vfprintf(SAXdebug, msg, args); in warningDebug()
1377 fprintf(SAXdebug, "SAX.error: "); in errorDebug()
1378 vfprintf(SAXdebug, msg, args); in errorDebug()
1400 fprintf(SAXdebug, "SAX.fatalError: "); in fatalErrorDebug()
1401 vfprintf(SAXdebug, msg, args); in fatalErrorDebug()
1468 fprintf(SAXdebug, "SAX.startElementNs(%s", (char *) localname); in startElementNsDebug()
1470 fprintf(SAXdebug, ", NULL"); in startElementNsDebug()
1472 fprintf(SAXdebug, ", %s", (char *) prefix); in startElementNsDebug()
1474 fprintf(SAXdebug, ", NULL"); in startElementNsDebug()
1476 fprintf(SAXdebug, ", '%s'", (char *) URI); in startElementNsDebug()
1477 fprintf(SAXdebug, ", %d", nb_namespaces); in startElementNsDebug()
1481 fprintf(SAXdebug, ", xmlns"); in startElementNsDebug()
1483 fprintf(SAXdebug, ":%s", namespaces[i]); in startElementNsDebug()
1485 fprintf(SAXdebug, "='%s'", namespaces[i]); in startElementNsDebug()
1488 fprintf(SAXdebug, ", %d, %d", nb_attributes, nb_defaulted); in startElementNsDebug()
1492 fprintf(SAXdebug, ", %s:%s='", attributes[i + 1], attributes[i]); in startElementNsDebug()
1494 fprintf(SAXdebug, ", %s='", attributes[i]); in startElementNsDebug()
1495 fprintf(SAXdebug, "%.4s...', %d", attributes[i + 3], in startElementNsDebug()
1499 fprintf(SAXdebug, ")\n"); in startElementNsDebug()
1518 fprintf(SAXdebug, "SAX.endElementNs(%s", (char *) localname); in endElementNsDebug()
1520 fprintf(SAXdebug, ", NULL"); in endElementNsDebug()
1522 fprintf(SAXdebug, ", %s", (char *) prefix); in endElementNsDebug()
1524 fprintf(SAXdebug, ", NULL)\n"); in endElementNsDebug()
1526 fprintf(SAXdebug, ", '%s')\n", (char *) URI); in endElementNsDebug()
1579 fprintf(SAXdebug, "SAX.startElement(%s", (char *) name); in htmlstartElementDebug()
1582 fprintf(SAXdebug, ", %s", atts[i++]); in htmlstartElementDebug()
1587 fprintf(SAXdebug, "='"); in htmlstartElementDebug()
1592 fprintf(SAXdebug, "%s", (char *) output); in htmlstartElementDebug()
1595 fprintf(SAXdebug, "'"); in htmlstartElementDebug()
1599 fprintf(SAXdebug, ")\n"); in htmlstartElementDebug()
1620 fprintf(SAXdebug, "SAX.characters(%s, %d)\n", output, len); in htmlcharactersDebug()
1641 fprintf(SAXdebug, "SAX.cdata(%s, %d)\n", output, len); in htmlcdataDebug()
1705 SAXdebug = fopen(temp, "wb"); in saxParseTest()
1706 if (SAXdebug == NULL) { in saxParseTest()
1732 fprintf(SAXdebug, "xmlSAXUserParseFile returned error %d\n", ret); in saxParseTest()
1761 fprintf(SAXdebug, "xmlSAXUserParseFile returned error %d\n", ret); in saxParseTest()
1764 fclose(SAXdebug); in saxParseTest()