Home | History | Annotate | Download | only in core

Lines Matching refs:buffer

18     The RBuffer is given the buffer to read from, with either a specified size
50 /** Return true if the buffer has read to the end of the data pointer.
56 /** Read the specified number of bytes from the data pointer. If buffer is not
57 null, copy those bytes into buffer.
59 void read(void* buffer, size_t size) {
61 this->readNoSizeCheck(buffer, size);
78 void readNoSizeCheck(void* buffer, size_t size);
88 The WBuffer is given the buffer to write into, with either a specified size
115 void write(const void* buffer, size_t size) {
117 this->writeNoSizeCheck(buffer, size);
131 void writeNoSizeCheck(const void* buffer, size_t size);