Home | History | Annotate | Download | only in utils

Lines Matching full:stream

12  *  Specialized stream that only buffers the first X bytes of a stream,
14 * stream APIs, once more than those bytes are read, no more buffering
15 * is done. This stream is designed for a use case where the caller
17 * and the wrapped stream is not necessarily able to rewind at all.
22 * Creates a new stream that wraps and buffers SkStream.
23 * @param stream SkStream to buffer. If NULL, NULL is returned. After
24 * this call, unref stream and do not refer to it.
29 static SkFrontBufferedStream* Create(SkStream* stream, size_t bufferSize);
49 // Current offset into the stream. Always >= 0.