Lines Matching refs:pvBuf
167 * @param pvBuf Where to put the read bits.
173 RTR3DECL(int) RTStrmReadEx(PRTSTREAM pStream, void *pvBuf, size_t cbRead, size_t *pcbRead);
180 * @param pvBuf Where to get the bits to write from.
185 RTR3DECL(int) RTStrmWriteEx(PRTSTREAM pStream, const void *pvBuf, size_t cbWrite, size_t *pcbWritten);
192 * @param pvBuf Where to put the read bits.
196 DECLINLINE(int) RTStrmRead(PRTSTREAM pStream, void *pvBuf, size_t cbRead)
198 return RTStrmReadEx(pStream, pvBuf, cbRead, NULL);
206 * @param pvBuf Where to get the bits to write from.
209 DECLINLINE(int) RTStrmWrite(PRTSTREAM pStream, const void *pvBuf, size_t cbWrite)
211 return RTStrmWriteEx(pStream, pvBuf, cbWrite, NULL);