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/cpanel/ea-libxml2/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 xmlOutputBufferCreateFilenameFuncxmlOutputBufferPtr xmlOutputBufferCreateFilenameFunc (const char * URI, Signature for the function doing the lookup for a suitable output method corresponding to an URI.
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
Function type xmlParserInputBufferCreateFilenameFuncxmlParserInputBufferPtr xmlParserInputBufferCreateFilenameFunc (const char * URI, Signature for the function doing the lookup for a suitable input method corresponding to an URI.
xmlAllocOutputBuffer ()xmlOutputBufferPtr xmlAllocOutputBuffer (xmlCharEncodingHandlerPtr encoder) Create a buffered parser output
xmlAllocParserInputBuffer ()xmlParserInputBufferPtr xmlAllocParserInputBuffer (xmlCharEncoding enc) Create a buffered parser input for progressive parsing. The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.
xmlCheckFilename ()int xmlCheckFilename (const char * path) DEPRECATED: Internal function, don't use. if stat is not available on the target machine,
xmlCheckHTTPInput ()xmlParserInputPtr xmlCheckHTTPInput (xmlParserCtxtPtr ctxt, DEPRECATED: Internal function, don't use. 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) DEPRECATED: Internal function, don't use.
xmlFileMatch ()int xmlFileMatch (const char * filename) DEPRECATED: Internal function, don't use.
xmlFileOpen ()void * xmlFileOpen (const char * filename) DEPRECATED: Internal function, don't use.
xmlFileRead ()int xmlFileRead (void * context, DEPRECATED: Internal function, don't use.
xmlFreeParserInputBuffer ()void xmlFreeParserInputBuffer (xmlParserInputBufferPtr in) Free up the memory used by a buffered parser input
xmlIOFTPClose ()int xmlIOFTPClose (void * context) DEPRECATED: Internal function, don't use. Close an FTP I/O channel
xmlIOFTPMatch ()int xmlIOFTPMatch (const char * filename) DEPRECATED: Internal function, don't use. check if the URI matches an FTP one
xmlIOFTPOpen ()void * xmlIOFTPOpen (const char * filename) DEPRECATED: Internal function, don't use. open an FTP I/O channel
xmlIOFTPRead ()int xmlIOFTPRead (void * context, DEPRECATED: Internal function, don't use. Read @len bytes to @buffer from the I/O channel.
xmlIOHTTPClose ()int xmlIOHTTPClose (void * context) DEPRECATED: Internal function, don't use. Close an HTTP I/O channel
xmlIOHTTPMatch ()int xmlIOHTTPMatch (const char * filename) DEPRECATED: Internal function, don't use. check if the URI matches an HTTP one
xmlIOHTTPOpen ()void * xmlIOHTTPOpen (const char * filename) DEPRECATED: Internal function, don't use. open an HTTP I/O channel
xmlIOHTTPOpenW ()void * xmlIOHTTPOpenW (const char * post_uri, DEPRECATED: Support for HTTP POST has been removed.
xmlIOHTTPRead ()int xmlIOHTTPRead (void * context, DEPRECATED: Internal function, don't use. 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) DEPRECATED: This never really worked.
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.
xmlOutputBufferCreateFilenameDefault ()xmlOutputBufferCreateFilenameFunc xmlOutputBufferCreateFilenameDefault (xmlOutputBufferCreateFilenameFunc func) Registers a callback for URI output file handling
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 The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.
xmlParserInputBufferCreateFile ()xmlParserInputBufferPtr xmlParserInputBufferCreateFile (FILE * file, Create a buffered parser input for the progressive parsing of a FILE * buffered C I/O The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.
xmlParserInputBufferCreateFilename ()xmlParserInputBufferPtr xmlParserInputBufferCreateFilename (const char * URI, Create a buffered parser input for the progressive parsing of a file 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
xmlParserInputBufferCreateFilenameDefault ()xmlParserInputBufferCreateFilenameFunc xmlParserInputBufferCreateFilenameDefault (xmlParserInputBufferCreateFilenameFunc func) Registers a callback for URI input file handling
xmlParserInputBufferCreateIO ()xmlParserInputBufferPtr xmlParserInputBufferCreateIO (xmlInputReadCallback ioread, Create a buffered parser input for the progressive parsing for the input from an I/O handler The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.
xmlParserInputBufferCreateMem ()xmlParserInputBufferPtr xmlParserInputBufferCreateMem (const char * mem, Create a parser input buffer for parsing from a memory area. This function makes a copy of the whole input buffer. If you are sure that the contents of the buffer will remain valid until the document was parsed, you can avoid the copy by using xmlParserInputBufferCreateStatic. The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.
xmlParserInputBufferCreateStatic ()xmlParserInputBufferPtr xmlParserInputBufferCreateStatic (const char * mem, Create a parser input buffer for parsing from a memory area. This functions assumes that the contents of the input buffer remain valid until the document was parsed. Use xmlParserInputBufferCreateMem otherwise. The encoding argument is deprecated and should be set to XML_CHAR_ENCODING_NONE. The encoding can be changed with xmlSwitchEncoding or xmlSwitchEncodingName later on.
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) DEPRECATED: Support for HTTP POST has been removed. 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.
xmlThrDefOutputBufferCreateFilenameDefault ()xmlOutputBufferCreateFilenameFunc xmlThrDefOutputBufferCreateFilenameDefault (xmlOutputBufferCreateFilenameFunc func)
xmlThrDefParserInputBufferCreateFilenameDefault ()xmlParserInputBufferCreateFilenameFunc xmlThrDefParserInputBufferCreateFilenameDefault (xmlParserInputBufferCreateFilenameFunc func)
|
:: Command execute :: | |
--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0044 ]-- |