| [ | |
| { | |
| "function_name": "xmlWriterErrMsg", | |
| "function_signature": "static void xmlWriterErrMsg(xmlTextWriterPtr ctxt, xmlParserErrors error,\n const char *msg)", | |
| "test_filename": "tests_xmlwriter_xmlWriterErrMsg.c" | |
| }, | |
| { | |
| "function_name": "LIBXML_ATTR_FORMAT", | |
| "function_signature": "static void LIBXML_ATTR_FORMAT(3,0) xmlWriterErrMsgInt(xmlTextWriterPtr ctxt, xmlParserErrors error,\n const char *msg, int val)\n{\n xmlParserCtxtPtr pctxt = NULL; if (ctxt != NULL)\n pctxt = ctxt->ctxt; xmlRaiseError(NULL, NULL, NULL, pctxt,\n\t NULL, XML_FROM_WRITER, error, XML_ERR_FATAL,\n\t\t NULL, 0, NULL, NULL, NULL, val, 0, msg, val);\n}\n\n/**\n * Create a new xmlTextWriter structure using an xmlOutputBuffer\n * NOTE: the `out` parameter will be deallocated when the writer is closed\n * (if the call succeed.)\n *\n * @param out an xmlOutputBuffer\n * @returns the new xmlTextWriter or NULL in case of error\n */\nxmlTextWriter *\nxmlNewTextWriter(xmlOutputBuffer *out)\n{\n xmlTextWriterPtr ret; ret = (xmlTextWriterPtr) xmlMalloc(sizeof(xmlTextWriter)); if (ret == NULL)", | |
| "test_filename": "tests_xmlwriter_LIBXML_ATTR_FORMAT.c" | |
| }, | |
| { | |
| "function_name": "xmlFreeTextWriter", | |
| "function_signature": "void xmlFreeTextWriter(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlFreeTextWriter.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartDocument", | |
| "function_signature": "int xmlTextWriterStartDocument(xmlTextWriter *writer, const char *version,\n const char *encoding, const char *standalone)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartDocument.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterEndDocument", | |
| "function_signature": "int xmlTextWriterEndDocument(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterEndDocument.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartComment", | |
| "function_signature": "int xmlTextWriterStartComment(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartComment.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterEndComment", | |
| "function_signature": "int xmlTextWriterEndComment(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterEndComment.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatComment", | |
| "function_signature": "int xmlTextWriterWriteFormatComment(xmlTextWriter *writer,\n const char *format, ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatComment.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatComment", | |
| "function_signature": "int xmlTextWriterWriteVFormatComment(xmlTextWriter *writer,\n const char *format, va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatComment.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteComment", | |
| "function_signature": "int xmlTextWriterWriteComment(xmlTextWriter *writer, const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteComment.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartElement", | |
| "function_signature": "int xmlTextWriterStartElement(xmlTextWriter *writer, const xmlChar * name)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartElement.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartElementNS", | |
| "function_signature": "int xmlTextWriterStartElementNS(xmlTextWriter *writer,\n const xmlChar * prefix, const xmlChar * name,\n const xmlChar * namespaceURI)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartElementNS.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterEndElement", | |
| "function_signature": "int xmlTextWriterEndElement(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterEndElement.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterFullEndElement", | |
| "function_signature": "int xmlTextWriterFullEndElement(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterFullEndElement.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatRaw", | |
| "function_signature": "int xmlTextWriterWriteFormatRaw(xmlTextWriter *writer, const char *format,\n ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatRaw.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatRaw", | |
| "function_signature": "int xmlTextWriterWriteVFormatRaw(xmlTextWriter *writer, const char *format,\n va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatRaw.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteRawLen", | |
| "function_signature": "int xmlTextWriterWriteRawLen(xmlTextWriter *writer, const xmlChar * content,\n int len)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteRawLen.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatString", | |
| "function_signature": "int xmlTextWriterWriteFormatString(xmlTextWriter *writer, const char *format,\n ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatString.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatString", | |
| "function_signature": "int xmlTextWriterWriteVFormatString(xmlTextWriter *writer,\n const char *format, va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatString.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteString", | |
| "function_signature": "int xmlTextWriterWriteString(xmlTextWriter *writer, const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteString.c" | |
| }, | |
| { | |
| "function_name": "xmlOutputBufferWriteBase64", | |
| "function_signature": "static int xmlOutputBufferWriteBase64(xmlOutputBufferPtr out, int len,\n const unsigned char *data)", | |
| "test_filename": "tests_xmlwriter_xmlOutputBufferWriteBase64.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteBase64", | |
| "function_signature": "int xmlTextWriterWriteBase64(xmlTextWriter *writer, const char *data,\n int start, int len)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteBase64.c" | |
| }, | |
| { | |
| "function_name": "xmlOutputBufferWriteBinHex", | |
| "function_signature": "static int xmlOutputBufferWriteBinHex(xmlOutputBufferPtr out,\n int len, const unsigned char *data)", | |
| "test_filename": "tests_xmlwriter_xmlOutputBufferWriteBinHex.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteBinHex", | |
| "function_signature": "int xmlTextWriterWriteBinHex(xmlTextWriter *writer, const char *data,\n int start, int len)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteBinHex.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartAttribute", | |
| "function_signature": "int xmlTextWriterStartAttribute(xmlTextWriter *writer, const xmlChar * name)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartAttribute.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartAttributeNS", | |
| "function_signature": "int xmlTextWriterStartAttributeNS(xmlTextWriter *writer,\n const xmlChar * prefix, const xmlChar * name,\n const xmlChar * namespaceURI)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartAttributeNS.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterEndAttribute", | |
| "function_signature": "int xmlTextWriterEndAttribute(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterEndAttribute.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatAttribute", | |
| "function_signature": "int xmlTextWriterWriteFormatAttribute(xmlTextWriter *writer,\n const xmlChar * name, const char *format,\n ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatAttribute.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatAttribute", | |
| "function_signature": "int xmlTextWriterWriteVFormatAttribute(xmlTextWriter *writer,\n const xmlChar * name,\n const char *format, va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatAttribute.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteAttribute", | |
| "function_signature": "int xmlTextWriterWriteAttribute(xmlTextWriter *writer, const xmlChar * name,\n const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteAttribute.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatAttributeNS", | |
| "function_signature": "int xmlTextWriterWriteFormatAttributeNS(xmlTextWriter *writer,\n const xmlChar * prefix,\n const xmlChar * name,\n const xmlChar * namespaceURI,\n const char *format, ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatAttributeNS.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatAttributeNS", | |
| "function_signature": "int xmlTextWriterWriteVFormatAttributeNS(xmlTextWriter *writer,\n const xmlChar * prefix,\n const xmlChar * name,\n const xmlChar * namespaceURI,\n const char *format, va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatAttributeNS.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteAttributeNS", | |
| "function_signature": "int xmlTextWriterWriteAttributeNS(xmlTextWriter *writer,\n const xmlChar * prefix, const xmlChar * name,\n const xmlChar * namespaceURI,\n const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteAttributeNS.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatElement", | |
| "function_signature": "int xmlTextWriterWriteFormatElement(xmlTextWriter *writer,\n const xmlChar * name, const char *format,\n ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatElement.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatElement", | |
| "function_signature": "int xmlTextWriterWriteVFormatElement(xmlTextWriter *writer,\n const xmlChar * name, const char *format,\n va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatElement.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteElement", | |
| "function_signature": "int xmlTextWriterWriteElement(xmlTextWriter *writer, const xmlChar * name,\n const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteElement.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatElementNS", | |
| "function_signature": "int xmlTextWriterWriteFormatElementNS(xmlTextWriter *writer,\n const xmlChar * prefix,\n const xmlChar * name,\n const xmlChar * namespaceURI,\n const char *format, ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatElementNS.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatElementNS", | |
| "function_signature": "int xmlTextWriterWriteVFormatElementNS(xmlTextWriter *writer,\n const xmlChar * prefix,\n const xmlChar * name,\n const xmlChar * namespaceURI,\n const char *format, va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatElementNS.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteElementNS", | |
| "function_signature": "int xmlTextWriterWriteElementNS(xmlTextWriter *writer,\n const xmlChar * prefix, const xmlChar * name,\n const xmlChar * namespaceURI,\n const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteElementNS.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartPI", | |
| "function_signature": "int xmlTextWriterStartPI(xmlTextWriter *writer, const xmlChar * target)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartPI.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterEndPI", | |
| "function_signature": "int xmlTextWriterEndPI(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterEndPI.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatPI", | |
| "function_signature": "int xmlTextWriterWriteFormatPI(xmlTextWriter *writer, const xmlChar * target,\n const char *format, ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatPI.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatPI", | |
| "function_signature": "int xmlTextWriterWriteVFormatPI(xmlTextWriter *writer,\n const xmlChar * target, const char *format,\n va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatPI.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWritePI", | |
| "function_signature": "int xmlTextWriterWritePI(xmlTextWriter *writer, const xmlChar * target,\n const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWritePI.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartCDATA", | |
| "function_signature": "int xmlTextWriterStartCDATA(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartCDATA.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterEndCDATA", | |
| "function_signature": "int xmlTextWriterEndCDATA(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterEndCDATA.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatCDATA", | |
| "function_signature": "int xmlTextWriterWriteFormatCDATA(xmlTextWriter *writer, const char *format,\n ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatCDATA.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatCDATA", | |
| "function_signature": "int xmlTextWriterWriteVFormatCDATA(xmlTextWriter *writer, const char *format,\n va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatCDATA.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteCDATA", | |
| "function_signature": "int xmlTextWriterWriteCDATA(xmlTextWriter *writer, const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteCDATA.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartDTD", | |
| "function_signature": "int xmlTextWriterStartDTD(xmlTextWriter *writer,\n const xmlChar * name,\n const xmlChar * pubid, const xmlChar * sysid)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartDTD.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterEndDTD", | |
| "function_signature": "int xmlTextWriterEndDTD(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterEndDTD.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatDTD", | |
| "function_signature": "int xmlTextWriterWriteFormatDTD(xmlTextWriter *writer,\n const xmlChar * name,\n const xmlChar * pubid,\n const xmlChar * sysid, const char *format, ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatDTD.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatDTD", | |
| "function_signature": "int xmlTextWriterWriteVFormatDTD(xmlTextWriter *writer,\n const xmlChar * name,\n const xmlChar * pubid,\n const xmlChar * sysid,\n const char *format, va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatDTD.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteDTD", | |
| "function_signature": "int xmlTextWriterWriteDTD(xmlTextWriter *writer,\n const xmlChar * name,\n const xmlChar * pubid,\n const xmlChar * sysid, const xmlChar * subset)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteDTD.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartDTDElement", | |
| "function_signature": "int xmlTextWriterStartDTDElement(xmlTextWriter *writer, const xmlChar * name)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartDTDElement.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterEndDTDElement", | |
| "function_signature": "int xmlTextWriterEndDTDElement(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterEndDTDElement.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatDTDElement", | |
| "function_signature": "int xmlTextWriterWriteFormatDTDElement(xmlTextWriter *writer,\n const xmlChar * name,\n const char *format, ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatDTDElement.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatDTDElement", | |
| "function_signature": "int xmlTextWriterWriteVFormatDTDElement(xmlTextWriter *writer,\n const xmlChar * name,\n const char *format, va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatDTDElement.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteDTDElement", | |
| "function_signature": "int xmlTextWriterWriteDTDElement(xmlTextWriter *writer,\n const xmlChar * name, const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteDTDElement.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartDTDAttlist", | |
| "function_signature": "int xmlTextWriterStartDTDAttlist(xmlTextWriter *writer, const xmlChar * name)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartDTDAttlist.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterEndDTDAttlist", | |
| "function_signature": "int xmlTextWriterEndDTDAttlist(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterEndDTDAttlist.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatDTDAttlist", | |
| "function_signature": "int xmlTextWriterWriteFormatDTDAttlist(xmlTextWriter *writer,\n const xmlChar * name,\n const char *format, ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatDTDAttlist.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatDTDAttlist", | |
| "function_signature": "int xmlTextWriterWriteVFormatDTDAttlist(xmlTextWriter *writer,\n const xmlChar * name,\n const char *format, va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatDTDAttlist.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteDTDAttlist", | |
| "function_signature": "int xmlTextWriterWriteDTDAttlist(xmlTextWriter *writer,\n const xmlChar * name, const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteDTDAttlist.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartDTDEntity", | |
| "function_signature": "int xmlTextWriterStartDTDEntity(xmlTextWriter *writer,\n int pe, const xmlChar * name)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartDTDEntity.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterEndDTDEntity", | |
| "function_signature": "int xmlTextWriterEndDTDEntity(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterEndDTDEntity.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteFormatDTDInternalEntity", | |
| "function_signature": "int xmlTextWriterWriteFormatDTDInternalEntity(xmlTextWriter *writer,\n int pe,\n const xmlChar * name,\n const char *format, ...)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteFormatDTDInternalEntity.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteVFormatDTDInternalEntity", | |
| "function_signature": "int xmlTextWriterWriteVFormatDTDInternalEntity(xmlTextWriter *writer,\n int pe,\n const xmlChar * name,\n const char *format,\n va_list argptr)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteVFormatDTDInternalEntity.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteDTDEntity", | |
| "function_signature": "int xmlTextWriterWriteDTDEntity(xmlTextWriter *writer,\n int pe,\n const xmlChar * name,\n const xmlChar * pubid,\n const xmlChar * sysid,\n const xmlChar * ndataid,\n const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteDTDEntity.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteDTDInternalEntity", | |
| "function_signature": "int xmlTextWriterWriteDTDInternalEntity(xmlTextWriter *writer,\n int pe,\n const xmlChar * name,\n const xmlChar * content)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteDTDInternalEntity.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteDTDExternalEntity", | |
| "function_signature": "int xmlTextWriterWriteDTDExternalEntity(xmlTextWriter *writer,\n int pe,\n const xmlChar * name,\n const xmlChar * pubid,\n const xmlChar * sysid,\n const xmlChar * ndataid)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteDTDExternalEntity.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteDTDExternalEntityContents", | |
| "function_signature": "int xmlTextWriterWriteDTDExternalEntityContents(xmlTextWriter *writer,\n const xmlChar * pubid,\n const xmlChar * sysid,\n const xmlChar * ndataid)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteDTDExternalEntityContents.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteDTDNotation", | |
| "function_signature": "int xmlTextWriterWriteDTDNotation(xmlTextWriter *writer,\n const xmlChar * name,\n const xmlChar * pubid, const xmlChar * sysid)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteDTDNotation.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterFlush", | |
| "function_signature": "int xmlTextWriterFlush(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterFlush.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterClose", | |
| "function_signature": "int xmlTextWriterClose(xmlTextWriter *writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterClose.c" | |
| }, | |
| { | |
| "function_name": "xmlFreeTextWriterStackEntry", | |
| "function_signature": "static void xmlFreeTextWriterStackEntry(xmlLinkPtr lk)", | |
| "test_filename": "tests_xmlwriter_xmlFreeTextWriterStackEntry.c" | |
| }, | |
| { | |
| "function_name": "xmlCmpTextWriterStackEntry", | |
| "function_signature": "static int xmlCmpTextWriterStackEntry(const void *data0, const void *data1)", | |
| "test_filename": "tests_xmlwriter_xmlCmpTextWriterStackEntry.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterOutputNSDecl", | |
| "function_signature": "static int xmlTextWriterOutputNSDecl(xmlTextWriterPtr writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterOutputNSDecl.c" | |
| }, | |
| { | |
| "function_name": "xmlFreeTextWriterNsStackEntry", | |
| "function_signature": "static void xmlFreeTextWriterNsStackEntry(xmlLinkPtr lk)", | |
| "test_filename": "tests_xmlwriter_xmlFreeTextWriterNsStackEntry.c" | |
| }, | |
| { | |
| "function_name": "xmlCmpTextWriterNsStackEntry", | |
| "function_signature": "static int xmlCmpTextWriterNsStackEntry(const void *data0, const void *data1)", | |
| "test_filename": "tests_xmlwriter_xmlCmpTextWriterNsStackEntry.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteDocCallback", | |
| "function_signature": "static int xmlTextWriterWriteDocCallback(void *context, const char *str, int len)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteDocCallback.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterCloseDocCallback", | |
| "function_signature": "static int xmlTextWriterCloseDocCallback(void *context)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterCloseDocCallback.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterStartDocumentCallback", | |
| "function_signature": "static void xmlTextWriterStartDocumentCallback(void *ctx)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterStartDocumentCallback.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterSetIndentString", | |
| "function_signature": "int xmlTextWriterSetIndentString(xmlTextWriter *writer, const xmlChar * str)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterSetIndentString.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterWriteIndent", | |
| "function_signature": "static int xmlTextWriterWriteIndent(xmlTextWriterPtr writer)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterWriteIndent.c" | |
| }, | |
| { | |
| "function_name": "xmlTextWriterHandleStateDependencies", | |
| "function_signature": "static int xmlTextWriterHandleStateDependencies(xmlTextWriterPtr writer,\n xmlTextWriterStackEntry * p)", | |
| "test_filename": "tests_xmlwriter_xmlTextWriterHandleStateDependencies.c" | |
| } | |
| ] |