Lines Matching refs:stream
42 // Current offset into the stream. Always >= 0.
58 // Buffer up to size bytes from the stream, and copy to dst if non-
63 // Read up to size bytes directly from the stream and into dst if non-
75 std::unique_ptr<SkStreamRewindable> FrontBufferedStream::Make(std::unique_ptr<SkStream> stream,
77 if (!stream) {
81 std::move(stream), bufferSize);
93 FrontBufferedStream::FrontBufferedStream(std::unique_ptr<SkStream> stream, size_t bufferSize)
94 : fStream(std::move(stream))
111 // Even if the underlying stream is at the end, this stream has been
191 // This stream is not able to buffer.