Searched defs:InputStreamBuffer (Results 1 - 2 of 2) sorted by relevance

/system/nvram/messages/
H A Dio.cpp52 bool DecodeVarint(InputStreamBuffer* stream_buffer, uint64_t* value) {
74 InputStreamBuffer::InputStreamBuffer(const void* data, size_t size) function in class:nvram::InputStreamBuffer
75 : InputStreamBuffer(data, static_cast<const uint8_t*>(data) + size) {}
77 InputStreamBuffer::InputStreamBuffer(const void* start, const void* end) function in class:nvram::InputStreamBuffer
83 bool InputStreamBuffer::Done() {
87 bool InputStreamBuffer::Read(void* data, size_t size) {
105 bool InputStreamBuffer::ReadByte(uint8_t* byte) {
117 bool InputStreamBuffer
[all...]
/system/nvram/messages/include/nvram/messages/
H A Dio.h31 // |InputStreamBuffer| maintains a window of the data to be read. Access to the
37 class NVRAM_EXPORT InputStreamBuffer { class in namespace:nvram
39 InputStreamBuffer() = default;
40 InputStreamBuffer(const void* data, size_t size);
41 InputStreamBuffer(const void* start, const void* end);
42 virtual ~InputStreamBuffer() = default;
67 // Pointers to the buffer to read from. |InputStreamBuffer| only advances
78 // An |InputStreamBuffer| implementation that pulls its data from a delegate,
80 class NVRAM_EXPORT NestedInputStreamBuffer : public InputStreamBuffer {
85 NestedInputStreamBuffer(InputStreamBuffer* delegat
[all...]

Completed in 60 milliseconds