File size: 26,162 Bytes
6baed57 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 |
[
{
"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"
}
] |