From 35a201cc8ef0c3f5b2df88d2e528aabee1048348 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Fri, 30 Apr 2021 18:47:09 +0200 Subject: Initial/Final commit --- libxml2-2.9.10/doc/html/libxml-globals.html | 152 ++++++++++++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 libxml2-2.9.10/doc/html/libxml-globals.html (limited to 'libxml2-2.9.10/doc/html/libxml-globals.html') diff --git a/libxml2-2.9.10/doc/html/libxml-globals.html b/libxml2-2.9.10/doc/html/libxml-globals.html new file mode 100644 index 0000000..3366de0 --- /dev/null +++ b/libxml2-2.9.10/doc/html/libxml-globals.html @@ -0,0 +1,152 @@ + + +Module globals from libxml2
Action against software patentsGnome2 LogoW3C LogoRed Hat Logo
Made with Libxml2 Logo

Module globals from libxml2

API Menu
API Indexes
Related links

all the global variables and thread handling for those variables is handled by this module. The bottom of this file is automatically generated by build_glob.py based on the description file global.data

Table of Contents

Structure xmlGlobalState
struct _xmlGlobalState +
Typedef xmlGlobalState * xmlGlobalStatePtr
+
void	xmlCleanupGlobals		(void)
+
xmlDeregisterNodeFunc	xmlDeregisterNodeDefault	(xmlDeregisterNodeFunc func)
+
Function type: xmlDeregisterNodeFunc
+void	xmlDeregisterNodeFunc		(xmlNodePtr node)
+
+
void	xmlInitGlobals			(void)
+
void	xmlInitializeGlobalState	(xmlGlobalStatePtr gs)
+
xmlOutputBufferCreateFilenameFunc	xmlOutputBufferCreateFilenameDefault	(xmlOutputBufferCreateFilenameFunc func)
+
Function type: xmlOutputBufferCreateFilenameFunc
+xmlOutputBufferPtr	xmlOutputBufferCreateFilenameFunc	(const char * URI, 
xmlCharEncodingHandlerPtr encoder,
int compression) +
+
xmlParserInputBufferCreateFilenameFunc	xmlParserInputBufferCreateFilenameDefault	(xmlParserInputBufferCreateFilenameFunc func)
+
Function type: xmlParserInputBufferCreateFilenameFunc
+xmlParserInputBufferPtr	xmlParserInputBufferCreateFilenameFunc	(const char * URI, 
xmlCharEncoding enc) +
+
xmlRegisterNodeFunc	xmlRegisterNodeDefault	(xmlRegisterNodeFunc func)
+
Function type: xmlRegisterNodeFunc
+void	xmlRegisterNodeFunc		(xmlNodePtr node)
+
+
xmlBufferAllocationScheme	xmlThrDefBufferAllocScheme	(xmlBufferAllocationScheme v)
+
int	xmlThrDefDefaultBufferSize	(int v)
+
xmlDeregisterNodeFunc	xmlThrDefDeregisterNodeDefault	(xmlDeregisterNodeFunc func)
+
int	xmlThrDefDoValidityCheckingDefaultValue	(int v)
+
int	xmlThrDefGetWarningsDefaultValue	(int v)
+
int	xmlThrDefIndentTreeOutput	(int v)
+
int	xmlThrDefKeepBlanksDefaultValue	(int v)
+
int	xmlThrDefLineNumbersDefaultValue	(int v)
+
int	xmlThrDefLoadExtDtdDefaultValue	(int v)
+
xmlOutputBufferCreateFilenameFunc	xmlThrDefOutputBufferCreateFilenameDefault	(xmlOutputBufferCreateFilenameFunc func)
+
int	xmlThrDefParserDebugEntities	(int v)
+
xmlParserInputBufferCreateFilenameFunc	xmlThrDefParserInputBufferCreateFilenameDefault	(xmlParserInputBufferCreateFilenameFunc func)
+
int	xmlThrDefPedanticParserDefaultValue	(int v)
+
xmlRegisterNodeFunc	xmlThrDefRegisterNodeDefault	(xmlRegisterNodeFunc func)
+
int	xmlThrDefSaveNoEmptyTags	(int v)
+
void	xmlThrDefSetGenericErrorFunc	(void * ctx, 
xmlGenericErrorFunc handler)
+
void	xmlThrDefSetStructuredErrorFunc	(void * ctx, 
xmlStructuredErrorFunc handler)
+
int	xmlThrDefSubstituteEntitiesDefaultValue	(int v)
+
const char *	xmlThrDefTreeIndentString	(const char * v)
+

Description

+

Structure xmlGlobalState

Structure xmlGlobalState
struct _xmlGlobalState { + const char * xmlParserVersion + xmlSAXLocator xmlDefaultSAXLocator + xmlSAXHandlerV1 xmlDefaultSAXHandler + xmlSAXHandlerV1 docbDefaultSAXHandler + xmlSAXHandlerV1 htmlDefaultSAXHandler + xmlFreeFunc xmlFree + xmlMallocFunc xmlMalloc + xmlStrdupFunc xmlMemStrdup + xmlReallocFunc xmlRealloc + xmlGenericErrorFunc xmlGenericError + xmlStructuredErrorFunc xmlStructuredError + void * xmlGenericErrorContext + int oldXMLWDcompatibility + xmlBufferAllocationScheme xmlBufferAllocScheme + int xmlDefaultBufferSize + int xmlSubstituteEntitiesDefaultValue + int xmlDoValidityCheckingDefaultValue + int xmlGetWarningsDefaultValue + int xmlKeepBlanksDefaultValue + int xmlLineNumbersDefaultValue + int xmlLoadExtDtdDefaultValue + int xmlParserDebugEntities + int xmlPedanticParserDefaultValue + int xmlSaveNoEmptyTags + int xmlIndentTreeOutput + const char * xmlTreeIndentString + xmlRegisterNodeFunc xmlRegisterNodeDefaultValue + xmlDeregisterNodeFunc xmlDeregisterNodeDefaultValue + xmlMallocFunc xmlMallocAtomic + xmlError xmlLastError + xmlParserInputBufferCreateFilenameFunc xmlParserInputBufferCreateFilenameValue + xmlOutputBufferCreateFilenameFunc xmlOutputBufferCreateFilenameValue + void * xmlStructuredErrorContext +}

Function: xmlCleanupGlobals

void	xmlCleanupGlobals		(void)
+

Additional cleanup for multi-threading

+

Function: xmlDeregisterNodeDefault

xmlDeregisterNodeFunc	xmlDeregisterNodeDefault	(xmlDeregisterNodeFunc func)
+

Registers a callback for node destruction

+
func:function pointer to the new DeregisterNodeFunc
Returns:the previous value of the deregistration function

Function type: xmlDeregisterNodeFunc

Function type: xmlDeregisterNodeFunc
+void	xmlDeregisterNodeFunc		(xmlNodePtr node)
+

Signature for the deregistration callback of a discarded node

node:the current node

+

Function: xmlInitGlobals

void	xmlInitGlobals			(void)
+

Additional initialisation for multi-threading

+

Function: xmlInitializeGlobalState

void	xmlInitializeGlobalState	(xmlGlobalStatePtr gs)
+

xmlInitializeGlobalState() initialize a global state with all the default values of the library.

+
gs:a pointer to a newly allocated global state

Function: xmlOutputBufferCreateFilenameDefault

xmlOutputBufferCreateFilenameFunc	xmlOutputBufferCreateFilenameDefault	(xmlOutputBufferCreateFilenameFunc func)
+

Registers a callback for URI output file handling

+
func:function pointer to the new OutputBufferCreateFilenameFunc
Returns:the old value of the registration function

Function type: xmlOutputBufferCreateFilenameFunc

Function type: xmlOutputBufferCreateFilenameFunc
+xmlOutputBufferPtr	xmlOutputBufferCreateFilenameFunc	(const char * URI, 
xmlCharEncodingHandlerPtr encoder,
int compression) +

Signature for the function doing the lookup for a suitable output method corresponding to an URI.

URI:the URI to write to
encoder:
compression:
Returns:the new xmlOutputBufferPtr in case of success or NULL if no method was found.

+

Function: xmlParserInputBufferCreateFilenameDefault

xmlParserInputBufferCreateFilenameFunc	xmlParserInputBufferCreateFilenameDefault	(xmlParserInputBufferCreateFilenameFunc func)
+

Registers a callback for URI input file handling

+
func:function pointer to the new ParserInputBufferCreateFilenameFunc
Returns:the old value of the registration function

Function type: xmlParserInputBufferCreateFilenameFunc

Function type: xmlParserInputBufferCreateFilenameFunc
+xmlParserInputBufferPtr	xmlParserInputBufferCreateFilenameFunc	(const char * URI, 
xmlCharEncoding enc) +

Signature for the function doing the lookup for a suitable input method corresponding to an URI.

URI:the URI to read from
enc:the requested source encoding
Returns:the new xmlParserInputBufferPtr in case of success or NULL if no method was found.

+

Function: xmlRegisterNodeDefault

xmlRegisterNodeFunc	xmlRegisterNodeDefault	(xmlRegisterNodeFunc func)
+

Registers a callback for node creation

+
func:function pointer to the new RegisterNodeFunc
Returns:the old value of the registration function

Function type: xmlRegisterNodeFunc

Function type: xmlRegisterNodeFunc
+void	xmlRegisterNodeFunc		(xmlNodePtr node)
+

Signature for the registration callback of a created node

node:the current node

+

Function: xmlThrDefBufferAllocScheme

xmlBufferAllocationScheme	xmlThrDefBufferAllocScheme	(xmlBufferAllocationScheme v)
+

+
v:
Returns:

Function: xmlThrDefDefaultBufferSize

int	xmlThrDefDefaultBufferSize	(int v)
+

+
v:
Returns:

Function: xmlThrDefDeregisterNodeDefault

xmlDeregisterNodeFunc	xmlThrDefDeregisterNodeDefault	(xmlDeregisterNodeFunc func)
+

+
func:
Returns:

Function: xmlThrDefDoValidityCheckingDefaultValue

int	xmlThrDefDoValidityCheckingDefaultValue	(int v)
+

+
v:
Returns:

Function: xmlThrDefGetWarningsDefaultValue

int	xmlThrDefGetWarningsDefaultValue	(int v)
+

+
v:
Returns:

Function: xmlThrDefIndentTreeOutput

int	xmlThrDefIndentTreeOutput	(int v)
+

+
v:
Returns:

Function: xmlThrDefKeepBlanksDefaultValue

int	xmlThrDefKeepBlanksDefaultValue	(int v)
+

+
v:
Returns:

Function: xmlThrDefLineNumbersDefaultValue

int	xmlThrDefLineNumbersDefaultValue	(int v)
+

+
v:
Returns:

Function: xmlThrDefLoadExtDtdDefaultValue

int	xmlThrDefLoadExtDtdDefaultValue	(int v)
+

+
v:
Returns:

Function: xmlThrDefOutputBufferCreateFilenameDefault

xmlOutputBufferCreateFilenameFunc	xmlThrDefOutputBufferCreateFilenameDefault	(xmlOutputBufferCreateFilenameFunc func)
+

+
func:
Returns:

Function: xmlThrDefParserDebugEntities

int	xmlThrDefParserDebugEntities	(int v)
+

+
v:
Returns:

Function: xmlThrDefParserInputBufferCreateFilenameDefault

xmlParserInputBufferCreateFilenameFunc	xmlThrDefParserInputBufferCreateFilenameDefault	(xmlParserInputBufferCreateFilenameFunc func)
+

+
func:
Returns:

Function: xmlThrDefPedanticParserDefaultValue

int	xmlThrDefPedanticParserDefaultValue	(int v)
+

+
v:
Returns:

Function: xmlThrDefRegisterNodeDefault

xmlRegisterNodeFunc	xmlThrDefRegisterNodeDefault	(xmlRegisterNodeFunc func)
+

+
func:
Returns:

Function: xmlThrDefSaveNoEmptyTags

int	xmlThrDefSaveNoEmptyTags	(int v)
+

+
v:
Returns:

Function: xmlThrDefSetGenericErrorFunc

void	xmlThrDefSetGenericErrorFunc	(void * ctx, 
xmlGenericErrorFunc handler)
+

+
ctx:
handler:

Function: xmlThrDefSetStructuredErrorFunc

void	xmlThrDefSetStructuredErrorFunc	(void * ctx, 
xmlStructuredErrorFunc handler)
+

+
ctx:
handler:

Function: xmlThrDefSubstituteEntitiesDefaultValue

int	xmlThrDefSubstituteEntitiesDefaultValue	(int v)
+

+
v:
Returns:

Function: xmlThrDefTreeIndentString

const char *	xmlThrDefTreeIndentString	(const char * v)
+

+
v:
Returns:

Daniel Veillard

-- cgit v1.2.3