Lines Matching defs:read
24 size_t read(void* buffer, size_t size) override;
44 // Amount that has been buffered by calls to read. Will always be less than
154 const size_t buffered = fStream->read(buffer, bytesToBuffer);
160 // Copy the buffer to the destination buffer and update the amount read.
173 const size_t bytesReadDirectly = fStream->read(dst, size);
176 // If we have read past the end of the buffer, rewinding is no longer
197 const size_t bytesRead = nonConstThis->read(dst, size);
202 size_t FrontBufferedStream::read(void* voidDst, size_t size) {
208 // First, read any data that was previously buffered.
212 // Update the remaining number of bytes needed to read
226 // Update the remaining number of bytes needed to read