Home | History | Annotate | Download | only in core

Lines Matching refs:bytes

34     /** Called to read or skip size number of bytes.
35 If buffer is NULL and size > 0, skip that many bytes, returning how many were skipped.
37 If buffer != NULL, copy the requested number of bytes into buffer, returning how many were copied.
38 @param buffer If buffer is NULL, ignore and just skip size bytes, otherwise copy size bytes into buffer
39 @param size The number of bytes to skip or copy
40 @return bytes read on success
48 /** Skip the specified number of bytes, returning the actual number
49 of bytes that could be skipped.
51 size_t skip(size_t bytes);
77 /** Called to write bytes to a SkWStream. Returns true on success
78 @param buffer the address of at least size bytes to be written to the stream
79 @param size The number of bytes in buffer to write to the stream
209 This buffer is owned by the caller, and must be at least bufferSize bytes big.