Rizin
unix-like reverse engineering framework and cli tools
|
Output buffer for a single thread. More...
#include <outqueue.h>
Public Attributes | |
uint8_t * | buf |
Pointer to the output buffer of lzma_outq.buf_size_max bytes. More... | |
size_t | size |
Amount of data written to buf. More... | |
lzma_vli | unpadded_size |
Additional size information. More... | |
lzma_vli | uncompressed_size |
bool | finished |
Output buffer for a single thread.
Definition at line 17 of file outqueue.h.
uint8_t* lzma_outbuf::buf |
Pointer to the output buffer of lzma_outq.buf_size_max bytes.
Definition at line 19 of file outqueue.h.
Referenced by lzma_outq_get_buf(), and worker_encode().
bool lzma_outbuf::finished |
True when no more data will be written into this buffer.
Definition at line 32 of file outqueue.h.
Referenced by lzma_outq_is_readable(), and worker_start().
size_t lzma_outbuf::size |
Amount of data written to buf.
Definition at line 22 of file outqueue.h.
Referenced by worker_encode(), and worker_start().
lzma_vli lzma_outbuf::uncompressed_size |
Definition at line 26 of file outqueue.h.
Referenced by worker_encode(), and worker_start().
lzma_vli lzma_outbuf::unpadded_size |
Additional size information.
Definition at line 25 of file outqueue.h.
Referenced by worker_encode().