Home | History | Annotate | Download | only in core

Lines Matching refs:buffer

25     The RBuffer is given the buffer to read from, with either a specified size
59 /** Return true if the buffer has read to the end of the data pointer.
65 /** Read the specified number of bytes from the data pointer. If buffer is not
66 null, copy those bytes into buffer.
68 void read(void* buffer, size_t size) { if (size) this->readNoSizeCheck(buffer, size); }
82 void readNoSizeCheck(void* buffer, size_t size);
92 The WBuffer is given the buffer to write into, with either a specified size
122 void write(const void* buffer, size_t size) { if (size) this->writeNoSizeCheck(buffer, size); }
133 void writeNoSizeCheck(const void* buffer, size_t size);