Software: Apache. PHP/7.3.33 uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) Safe-mode: OFF (not secure) /opt/alt/libxml2/usr/share/gtk-doc/html/libxml2/ drwxr-xr-x |
Viewing file: Select action/file-type:
xmlIOxmlIO - interface for the I/O interfaces used by the parser interface for the I/O interfaces used by the parser Author(s): Daniel Veillard SynopsisxmlOutputBufferPtr xmlAllocOutputBuffer (xmlCharEncodingHandlerPtr encoder); xmlParserInputBufferPtr xmlAllocParserInputBuffer (xmlCharEncoding enc); int xmlCheckFilename (const char * path); xmlParserInputPtr xmlCheckHTTPInput (xmlParserCtxtPtr ctxt, DescriptionDetailsFunction type xmlInputCloseCallbackint xmlInputCloseCallback (void * context) Callback used in the I/O Input API to close the resource
Function type xmlInputMatchCallbackint xmlInputMatchCallback (char const * filename) Callback used in the I/O Input API to detect if the current handler can provide input functionality for this resource.
Function type xmlInputOpenCallbackvoid * xmlInputOpenCallback (char const * filename) Callback used in the I/O Input API to open the resource
Function type xmlInputReadCallbackint xmlInputReadCallback (void * context, Callback used in the I/O Input API to read the resource
Function type xmlOutputCloseCallbackint xmlOutputCloseCallback (void * context) Callback used in the I/O Output API to close the resource
Function type xmlOutputMatchCallbackint xmlOutputMatchCallback (char const * filename) Callback used in the I/O Output API to detect if the current handler can provide output functionality for this resource.
Function type xmlOutputOpenCallbackvoid * xmlOutputOpenCallback (char const * filename) Callback used in the I/O Output API to open the resource
Function type xmlOutputWriteCallbackint xmlOutputWriteCallback (void * context, Callback used in the I/O Output API to write to the resource
xmlAllocOutputBuffer ()xmlOutputBufferPtr xmlAllocOutputBuffer (xmlCharEncodingHandlerPtr encoder) Create a buffered parser output
xmlAllocParserInputBuffer ()xmlParserInputBufferPtr xmlAllocParserInputBuffer (xmlCharEncoding enc) Create a buffered parser input for progressive parsing
xmlCheckFilename ()int xmlCheckFilename (const char * path) function checks to see if @path is a valid source (file, socket...) for XML. if stat is not available on the target machine,
xmlCheckHTTPInput ()xmlParserInputPtr xmlCheckHTTPInput (xmlParserCtxtPtr ctxt, Check an input in case it was created from an HTTP stream, in that case it will handle encoding and update of the base URL in case of redirection. It also checks for HTTP errors in which case the input is cleanly freed up and an appropriate error is raised in context
xmlCleanupInputCallbacks ()void xmlCleanupInputCallbacks (void) clears the entire input callback table. this includes the compiled-in I/O. xmlCleanupOutputCallbacks ()void xmlCleanupOutputCallbacks (void) clears the entire output callback table. this includes the compiled-in I/O callbacks. xmlFileClose ()int xmlFileClose (void * context) Close an I/O channel
xmlFileMatch ()int xmlFileMatch (const char * filename) input from FILE *
xmlFileOpen ()void * xmlFileOpen (const char * filename) Wrapper around xmlFileOpen_real that try it with an unescaped version of @filename, if this fails fallback to @filename
xmlFileRead ()int xmlFileRead (void * context, Read @len bytes to @buffer from the I/O channel.
xmlFreeParserInputBuffer ()void xmlFreeParserInputBuffer (xmlParserInputBufferPtr in) Free up the memory used by a buffered parser input
xmlIOFTPClose ()int xmlIOFTPClose (void * context) Close an FTP I/O channel
xmlIOFTPMatch ()int xmlIOFTPMatch (const char * filename) check if the URI matches an FTP one
xmlIOFTPOpen ()void * xmlIOFTPOpen (const char * filename) open an FTP I/O channel
xmlIOFTPRead ()int xmlIOFTPRead (void * context, Read @len bytes to @buffer from the I/O channel.
xmlIOHTTPClose ()int xmlIOHTTPClose (void * context) Close an HTTP I/O channel
xmlIOHTTPMatch ()int xmlIOHTTPMatch (const char * filename) check if the URI matches an HTTP one
xmlIOHTTPOpen ()void * xmlIOHTTPOpen (const char * filename) open an HTTP I/O channel
xmlIOHTTPOpenW ()void * xmlIOHTTPOpenW (const char * post_uri, Open a temporary buffer to collect the document for a subsequent HTTP POST request. Non-static as is called from the output buffer creation routine.
xmlIOHTTPRead ()int xmlIOHTTPRead (void * context, Read @len bytes to @buffer from the I/O channel.
xmlNoNetExternalEntityLoader ()xmlParserInputPtr xmlNoNetExternalEntityLoader (const char * URL, A specific entity loader disabling network accesses, though still allowing local catalog accesses for resolution.
xmlNormalizeWindowsPath ()xmlChar * xmlNormalizeWindowsPath (const xmlChar * path) This function is obsolete. Please see xmlURIFromPath in uri.c for a better solution.
xmlOutputBufferClose ()int xmlOutputBufferClose (xmlOutputBufferPtr out) flushes and close the output I/O channel and free up all the associated resources
xmlOutputBufferCreateBuffer ()xmlOutputBufferPtr xmlOutputBufferCreateBuffer (xmlBufferPtr buffer, Create a buffered output for the progressive saving to a xmlBuffer
xmlOutputBufferCreateFd ()xmlOutputBufferPtr xmlOutputBufferCreateFd (int fd, Create a buffered output for the progressive saving to a file descriptor
xmlOutputBufferCreateFile ()xmlOutputBufferPtr xmlOutputBufferCreateFile (FILE * file, Create a buffered output for the progressive saving to a FILE * buffered C I/O
xmlOutputBufferCreateFilename ()xmlOutputBufferPtr xmlOutputBufferCreateFilename (const char * URI, Create a buffered output for the progressive saving of a file If filename is "-' then we use stdout as the output. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. TODO: currently if compression is set, the library only support writing to a local file.
xmlOutputBufferCreateIO ()xmlOutputBufferPtr xmlOutputBufferCreateIO (xmlOutputWriteCallback iowrite, Create a buffered output for the progressive saving to an I/O handler
xmlOutputBufferFlush ()int xmlOutputBufferFlush (xmlOutputBufferPtr out) flushes the output I/O channel
xmlOutputBufferGetContent ()const xmlChar * xmlOutputBufferGetContent (xmlOutputBufferPtr out) Gives a pointer to the data currently held in the output buffer
xmlOutputBufferGetSize ()size_t xmlOutputBufferGetSize (xmlOutputBufferPtr out) Gives the length of the data currently held in the output buffer
xmlOutputBufferWrite ()int xmlOutputBufferWrite (xmlOutputBufferPtr out, Write the content of the array in the output I/O buffer This routine handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.
xmlOutputBufferWriteEscape ()int xmlOutputBufferWriteEscape (xmlOutputBufferPtr out, Write the content of the string in the output I/O buffer This routine escapes the characters and then handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.
xmlOutputBufferWriteString ()int xmlOutputBufferWriteString (xmlOutputBufferPtr out, Write the content of the string in the output I/O buffer This routine handle the I18N transcoding from internal UTF-8 The buffer is lossless, i.e. will store in case of partial or delayed writes.
xmlParserGetDirectory ()char * xmlParserGetDirectory (const char * filename) lookup the directory for that file
xmlParserInputBufferCreateFd ()xmlParserInputBufferPtr xmlParserInputBufferCreateFd (int fd, Create a buffered parser input for the progressive parsing for the input from a file descriptor
xmlParserInputBufferCreateFile ()xmlParserInputBufferPtr xmlParserInputBufferCreateFile (FILE * file, Create a buffered parser input for the progressive parsing of a FILE * buffered C I/O
xmlParserInputBufferCreateFilename ()xmlParserInputBufferPtr xmlParserInputBufferCreateFilename (const char * URI, Create a buffered parser input for the progressive parsing of a file If filename is "-' then we use stdin as the input. Automatic support for ZLIB/Compress compressed document is provided by default if found at compile-time. Do an encoding check if enc == XML_CHAR_ENCODING_NONE
xmlParserInputBufferCreateIO ()xmlParserInputBufferPtr xmlParserInputBufferCreateIO (xmlInputReadCallback ioread, Create a buffered parser input for the progressive parsing for the input from an I/O handler
xmlParserInputBufferCreateMem ()xmlParserInputBufferPtr xmlParserInputBufferCreateMem (const char * mem, Create a buffered parser input for the progressive parsing for the input from a memory area.
xmlParserInputBufferCreateStatic ()xmlParserInputBufferPtr xmlParserInputBufferCreateStatic (const char * mem, Create a buffered parser input for the progressive parsing for the input from an immutable memory area. This will not copy the memory area to the buffer, but the memory is expected to be available until the end of the parsing, this is useful for example when using mmap'ed file.
xmlParserInputBufferGrow ()int xmlParserInputBufferGrow (xmlParserInputBufferPtr in, Grow up the content of the input buffer, the old data are preserved This routine handle the I18N transcoding to internal UTF-8 This routine is used when operating the parser in normal (pull) mode TODO: one should be able to remove one extra copy by copying directly onto in->buffer or in->raw
xmlParserInputBufferPush ()int xmlParserInputBufferPush (xmlParserInputBufferPtr in, Push the content of the arry in the input buffer This routine handle the I18N transcoding to internal UTF-8 This is used when operating the parser in progressive (push) mode.
xmlParserInputBufferRead ()int xmlParserInputBufferRead (xmlParserInputBufferPtr in, Refresh the content of the input buffer, the old data are considered consumed This routine handle the I18N transcoding to internal UTF-8
xmlPopInputCallbacks ()int xmlPopInputCallbacks (void) Clear the top input callback from the input stack. this includes the compiled-in I/O.
xmlPopOutputCallbacks ()int xmlPopOutputCallbacks (void) Remove the top output callbacks from the output stack. This includes the compiled-in I/O.
xmlRegisterDefaultInputCallbacks ()void xmlRegisterDefaultInputCallbacks (void) Registers the default compiled-in I/O handlers. xmlRegisterDefaultOutputCallbacks ()void xmlRegisterDefaultOutputCallbacks (void) Registers the default compiled-in I/O handlers. xmlRegisterHTTPPostCallbacks ()void xmlRegisterHTTPPostCallbacks (void) By default, libxml submits HTTP output requests using the "PUT" method. Calling this method changes the HTTP output method to use the "POST" method instead. xmlRegisterInputCallbacks ()int xmlRegisterInputCallbacks (xmlInputMatchCallback matchFunc, Register a new set of I/O callback for handling parser input.
xmlRegisterOutputCallbacks ()int xmlRegisterOutputCallbacks (xmlOutputMatchCallback matchFunc, Register a new set of I/O callback for handling output.
|
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0923 ]-- |