|
ReactOS 0.4.16-dev-2207-geb15453
|
#include <stdio.h>#include <libxml/xmlversion.h>#include <libxml/encoding.h>#include <libxml/tree.h>

Go to the source code of this file.
Classes | |
| struct | _xmlParserInputBuffer |
Macros | |
| #define | XML_TREE_INTERNALS |
| #define | XML_GLOBALS_IO |
| #define | XML_OP XML_DECLARE_GLOBAL |
Typedefs | |
| typedef int(* | xmlInputMatchCallback) (char const *filename) |
| typedef void *(* | xmlInputOpenCallback) (char const *filename) |
| typedef int(* | xmlInputReadCallback) (void *context, char *buffer, int len) |
| typedef int(* | xmlInputCloseCallback) (void *context) |
| typedef xmlParserInputBufferPtr(* | xmlParserInputBufferCreateFilenameFunc) (const char *URI, xmlCharEncoding enc) |
| typedef xmlOutputBufferPtr(* | xmlOutputBufferCreateFilenameFunc) (const char *URI, xmlCharEncodingHandlerPtr encoder, int compression) |
| #define XML_GLOBALS_IO |
DOC_DISABLE
| #define XML_OP XML_DECLARE_GLOBAL |
| typedef xmlOutputBufferPtr(* xmlOutputBufferCreateFilenameFunc) (const char *URI, xmlCharEncodingHandlerPtr encoder, int compression) |
xmlOutputBufferCreateFilenameFunc: @URI: the URI to write to @enc: the requested target encoding
Signature for the function doing the lookup for a suitable output method corresponding to an URI.
Returns the new xmlOutputBufferPtr in case of success or NULL if no method was found.
| typedef xmlParserInputBufferPtr(* xmlParserInputBufferCreateFilenameFunc) (const char *URI, xmlCharEncoding enc) |
xmlParserInputBufferCreateFilenameFunc: @URI: the URI to read from @enc: the requested source encoding
Signature for the function doing the lookup for a suitable input method corresponding to an URI.
Returns the new xmlParserInputBufferPtr in case of success or NULL if no method was found.
| xmlParserInputBufferPtr __xmlParserInputBufferCreateFilename | ( | const char * | URI, |
| xmlCharEncoding | enc | ||
| ) |
Referenced by xmlThrDefParserInputBufferCreateFilenameDefault().
| XMLPUBFUN xmlParserInputBufferPtr xmlAllocParserInputBuffer | ( | xmlCharEncoding | enc | ) |
Referenced by xmlCtxtResetPush().
| XMLPUBFUN xmlParserInputPtr xmlCheckHTTPInput | ( | xmlParserCtxtPtr | ctxt, |
| xmlParserInputPtr | ret | ||
| ) |
Referenced by xmlNewInputFromFile().
| XML_GLOBALS_IO XMLPUBFUN void xmlCleanupInputCallbacks | ( | void | ) |
DOC_ENABLE
Referenced by DllMain(), and xmlCleanupParser().
Referenced by import_loader_onDataAvailable(), xmlCreateDocParserCtxt(), xmlCreateIOParserCtxt(), xmlCreateMemoryParserCtxt(), xmlCtxtReadDoc(), xmlCtxtReadFd(), xmlCtxtReadIO(), xmlCtxtReadMemory(), xmlCtxtResetPush(), xmlFreeInputStream(), xmlHaltParser(), xmlNewInputFromFile(), xmlNewStringInputStream(), xmlReadFd(), and xmlReadIO().
| XMLPUBFUN xmlParserInputPtr xmlNoNetExternalEntityLoader | ( | const char * | URL, |
| const char * | ID, | ||
| xmlParserCtxtPtr | ctxt | ||
| ) |
| XMLPUBFUN xmlOutputBufferCreateFilenameFunc xmlOutputBufferCreateFilenameDefault | ( | xmlOutputBufferCreateFilenameFunc | func | ) |
| XMLPUBFUN xmlParserInputBufferPtr xmlParserInputBufferCreateFd | ( | int | fd, |
| xmlCharEncoding | enc | ||
| ) |
Referenced by xmlCtxtReadFd(), and xmlReadFd().
| XMLPUBFUN xmlParserInputBufferPtr xmlParserInputBufferCreateFile | ( | FILE * | file, |
| xmlCharEncoding | enc | ||
| ) |
| XMLPUBFUN xmlParserInputBufferPtr xmlParserInputBufferCreateFilename | ( | const char * | URI, |
| xmlCharEncoding | enc | ||
| ) |
Referenced by xmlNewInputFromFile().
| XMLPUBFUN xmlParserInputBufferCreateFilenameFunc xmlParserInputBufferCreateFilenameDefault | ( | xmlParserInputBufferCreateFilenameFunc | func | ) |
| XMLPUBFUN xmlParserInputBufferPtr xmlParserInputBufferCreateIO | ( | xmlInputReadCallback | ioread, |
| xmlInputCloseCallback | ioclose, | ||
| void * | ioctx, | ||
| xmlCharEncoding | enc | ||
| ) |
Referenced by import_loader_onDataAvailable(), xmlCreateIOParserCtxt(), xmlCtxtReadIO(), and xmlReadIO().
| XMLPUBFUN xmlParserInputBufferPtr xmlParserInputBufferCreateMem | ( | const char * | mem, |
| int | size, | ||
| xmlCharEncoding | enc | ||
| ) |
Referenced by xmlCreateMemoryParserCtxt().
| XMLPUBFUN xmlParserInputBufferPtr xmlParserInputBufferCreateStatic | ( | const char * | mem, |
| int | size, | ||
| xmlCharEncoding | enc | ||
| ) |
Referenced by xmlCtxtReadMemory().
Referenced by xmlLoadEntityContent(), xmlParserGrow(), and xmlParserInputGrow().
Referenced by xmlCtxtResetPush().
Referenced by xmlParserInputShrink().
Referenced by DllMain(), and xmlInitParser().
| XMLPUBFUN int xmlRegisterInputCallbacks | ( | xmlInputMatchCallback | matchFunc, |
| xmlInputOpenCallback | openFunc, | ||
| xmlInputReadCallback | readFunc, | ||
| xmlInputCloseCallback | closeFunc | ||
| ) |
Referenced by DllMain().
| XMLPUBFUN xmlOutputBufferCreateFilenameFunc xmlThrDefOutputBufferCreateFilenameDefault | ( | xmlOutputBufferCreateFilenameFunc | func | ) |
Definition at line 1193 of file globals.c.
| XMLPUBFUN xmlParserInputBufferCreateFilenameFunc xmlThrDefParserInputBufferCreateFilenameDefault | ( | xmlParserInputBufferCreateFilenameFunc | func | ) |
Definition at line 1176 of file globals.c.