|
libUPnP 1.18.5
|


Go to the source code of this file.
Data Structures | |
| struct | ixml_membuf |
| The ixml_membuf type. More... | |
Macros | |
| #define | MINVAL(a, b) |
| #define | MAXVAL(a, b) |
| #define | MEMBUF_DEF_SIZE_INC 20u |
Functions | |
| void | ixml_membuf_init (ixml_membuf *m) |
| ixml_membuf initialization routine. | |
| void | ixml_membuf_destroy (ixml_membuf *m) |
| ixml_membuf clearing routine. | |
| int | ixml_membuf_assign (ixml_membuf *m, const void *buf, size_t buf_len) |
| Copies the contents o a buffer to the designated ixml_membuf. | |
| int | ixml_membuf_assign_str (ixml_membuf *m, const char *c_str) |
| Copies a NULL terminated string to the ixml_buffer. | |
| int | ixml_membuf_append (ixml_membuf *m, const void *buf) |
| Appends one byte to the designated ixml_membuffer. | |
| int | ixml_membuf_append_str (ixml_membuf *m, const char *c_str) |
| Appends the contents of a NULL terminated string to the designated ixml_membuf. | |
| int | ixml_membuf_insert (ixml_membuf *m, const void *buf, size_t buf_len, size_t index) |
| #define MAXVAL | ( | a, | |
| b ) |
| #define MINVAL | ( | a, | |
| b ) |
| int ixml_membuf_append | ( | ixml_membuf * | m, |
| const void * | buf ) |
Appends one byte to the designated ixml_membuffer.
This is a convenience function that internally uses ixml_membuf_insert().
| [in,out] | m | The memory buffer on which to operate. |
| [in] | buf | The pointer to the byte to append. |
References ixml_membuf_insert().
Referenced by copy_with_escape(), and Parser_appendTokBufChar().
| int ixml_membuf_append_str | ( | ixml_membuf * | m, |
| const char * | c_str ) |
Appends the contents of a NULL terminated string to the designated ixml_membuf.
This is a convenience function that internally uses ixml_membuf_insert().
| [in,out] | m | The memory buffer on which to operate. |
| [in] | c_str | The input string to copy from. |
References ixml_membuf_insert().
Referenced by copy_with_escape(), ixmlDocumenttoString(), ixmlDomTreetoString(), ixmlPrintDocument(), ixmlPrintDomTree(), ixmlPrintDomTreeRecursive(), and Parser_appendTokBufStr().
| int ixml_membuf_assign | ( | ixml_membuf * | m, |
| const void * | buf, | ||
| size_t | buf_len ) |
Copies the contents o a buffer to the designated ixml_membuf.
The previous contents of the ixml_membuf are destroyed.
| [in,out] | m | The memory buffer on which to operate. |
| [in] | buf | The input buffer to copy from. |
| [in] | buf_len | The number of bytes to copy from the input buffer. |
References ixml_membuf_destroy(), and ixml_membuf_set_size().
Referenced by ixml_membuf_assign_str().
| int ixml_membuf_assign_str | ( | ixml_membuf * | m, |
| const char * | c_str ) |
Copies a NULL terminated string to the ixml_buffer.
This is a convenience function that internally uses ixml_membuf_assign().
| [in,out] | m | The memory buffer on which to operate. |
| [in] | c_str | The input string to copy from. |
References ixml_membuf_assign().
Referenced by Parser_setLastElem().
| void ixml_membuf_destroy | ( | ixml_membuf * | m | ) |
ixml_membuf clearing routine.
The internal buffer is deleted and ixml_membuf_init() is called in the end to reinitialize the buffer.
| [in,out] | m | The memory buffer to clear. |
References ixml_membuf_init().
Referenced by ixml_membuf_assign(), Parser_clearTokenBuf(), and Parser_free().
| void ixml_membuf_init | ( | ixml_membuf * | m | ) |
ixml_membuf initialization routine.
| [in,out] | m | The memory buffer to initializa. |
References MEMBUF_DEF_SIZE_INC.
Referenced by ixml_membuf_destroy(), ixmlDocumenttoString(), ixmlNodetoString(), ixmlPrintDocument(), ixmlPrintNode(), and Parser_init().
| int ixml_membuf_insert | ( | ixml_membuf * | m, |
| const void * | buf, | ||
| size_t | buf_len, | ||
| size_t | index ) |
| [in,out] | m | The memory buffer on which to operate. |
| [in] | buf | The pointer to the input buffer. |
| [in] | buf_len | The buffer length. |
| [in] | index | The point of insertion relative to the beggining of the ixml_membuf internal buffer. |
References ixml_membuf_set_size().
Referenced by ixml_membuf_append(), and ixml_membuf_append_str().