|
| VectorStream (std::vector< uint8_t > data) |
|
| VectorStream ()=delete |
|
| VectorStream (const VectorStream &)=delete |
|
VectorStream & | operator= (const VectorStream &)=delete |
|
| VectorStream (VectorStream &&other) noexcept=default |
|
VectorStream & | operator= (VectorStream &&other) noexcept=default |
|
uint64_t | size () const override |
|
const std::vector< uint8_t > & | content () const |
|
std::vector< uint8_t > && | move_content () |
|
const uint8_t * | p () const override |
|
const uint8_t * | start () const override |
|
const uint8_t * | end () const override |
|
std::unique_ptr< SpanStream > | slice (uint32_t offset, size_t size) const |
|
std::unique_ptr< SpanStream > | slice (uint32_t offset) const |
|
virtual uint8_t * | p () |
|
virtual uint8_t * | end () |
|
virtual uint8_t * | start () |
|
| BinaryStream (STREAM_TYPE type) |
|
virtual | ~BinaryStream ()=default |
|
STREAM_TYPE | type () const |
|
result< uint64_t > | read_uleb128 () const |
|
result< uint64_t > | read_sleb128 () const |
|
result< int64_t > | read_dwarf_encoded (uint8_t encoding) const |
|
result< std::string > | read_string (size_t maxsize=~static_cast< size_t >(0)) const |
|
result< std::string > | peek_string (size_t maxsize=~static_cast< size_t >(0)) const |
|
result< std::string > | peek_string_at (size_t offset, size_t maxsize=~static_cast< size_t >(0)) const |
|
result< std::u16string > | read_u16string () const |
|
result< std::u16string > | peek_u16string () const |
|
result< std::string > | read_mutf8 (size_t maxsize=~static_cast< size_t >(0)) const |
|
result< std::u16string > | read_u16string (size_t length) const |
|
result< std::u16string > | peek_u16string (size_t length) const |
|
result< std::u16string > | peek_u16string_at (size_t offset, size_t length) const |
|
virtual ok_error_t | peek_data (std::vector< uint8_t > &container, uint64_t offset, uint64_t size, uint64_t virtual_address=0) |
|
virtual ok_error_t | read_data (std::vector< uint8_t > &container, uint64_t size) |
|
template<class T > |
ok_error_t | read_objects (std::vector< T > &container, uint64_t count) |
|
template<class T > |
ok_error_t | peek_objects (std::vector< T > &container, uint64_t count) |
|
template<class T > |
ok_error_t | peek_objects_at (uint64_t offset, std::vector< T > &container, uint64_t count) |
|
void | setpos (size_t pos) const |
|
void | increment_pos (size_t value) const |
|
void | decrement_pos (size_t value) const |
|
size_t | pos () const |
|
| operator bool () const |
|
template<class T > |
const T * | read_array (size_t size) const |
|
template<class T > |
result< T > | peek () const |
|
template<class T > |
result< T > | peek (size_t offset) const |
|
template<class T > |
const T * | peek_array (size_t size) const |
|
template<class T > |
const T * | peek_array (size_t offset, size_t size) const |
|
template<class T > |
result< T > | read () const |
|
template<typename T > |
bool | can_read () const |
|
template<typename T > |
bool | can_read (size_t offset) const |
|
bool | can_read (int64_t offset, int64_t size) const |
|
size_t | align (size_t align_on) const |
|
void | set_endian_swap (bool swap) |
|
bool | should_swap () const |
|