Home | History | Annotate | Download | only in utils

Lines Matching defs:read

17     virtual size_t read(void* buffer, size_t size) SK_OVERRIDE;
39 // Amount that has been buffered by calls to read. Will always be less than
48 // Read up to size bytes from already buffered data, and copy to
58 // Read up to size bytes directly from the stream and into dst if non-
103 // Some data has already been copied to fBuffer. Read up to the
126 const size_t buffered = fStream->read(buffer, bytesToBuffer);
132 // Copy the buffer to the destination buffer and update the amount read.
145 const size_t bytesReadDirectly = fStream->read(dst, size);
148 // If we have read past the end of the buffer, rewinding is no longer
157 size_t FrontBufferedStream::read(void* voidDst, size_t size) {
163 // First, read any data that was previously buffered.
167 // Update the remaining number of bytes needed to read
181 // Update the remaining number of bytes needed to read