Lines Matching refs:fBlocking

521  * @retval  VINF_TRY_AGAIN if @a fBlocking is @c false, @a pcbRead is not NULL,
537 * @param fBlocking Whether the call is blocking (@c true) or not. If
540 * read. This can be NULL if @a fBlocking is true.
544 RTDECL(int) RTVfsIoStrmRead(RTVFSIOSTREAM hVfsIos, void *pvBuf, size_t cbToRead, bool fBlocking, size_t *pcbRead);
545 RTDECL(int) RTVfsIoStrmReadAt(RTVFSIOSTREAM hVfsIos, RTFOFF off, void *pvBuf, size_t cbToRead, bool fBlocking, size_t *pcbRead);
556 * @param fBlocking Whether the call is blocking (@c true) or not. If
559 * written. This can be NULL if @a fBlocking is true.
563 RTDECL(int) RTVfsIoStrmWrite(RTVFSIOSTREAM hVfsIos, const void *pvBuf, size_t cbToWrite, bool fBlocking, size_t *pcbWritten);
564 RTDECL(int) RTVfsIoStrmWriteAt(RTVFSIOSTREAM hVfsIos, RTFOFF off, const void *pvBuf, size_t cbToWrite, bool fBlocking, size_t *pcbWritten);
571 * @retval VINF_TRY_AGAIN if @a fBlocking is @c false, @a pcbRead is not NULL,
588 * @param fBlocking Whether the call is blocking (@c true) or not. If
591 * read. This can be NULL if @a fBlocking is true.
594 RTDECL(int) RTVfsIoStrmSgRead(RTVFSIOSTREAM hVfsIos, PCRTSGBUF pSgBuf, bool fBlocking, size_t *pcbRead);
606 * @param fBlocking Whether the call is blocking (@c true) or not. If
609 * written. This can be NULL if @a fBlocking is true.
612 RTDECL(int) RTVfsIoStrmSgWrite(RTVFSIOSTREAM hVfsIos, PCRTSGBUF pSgBuf, bool fBlocking, size_t *pcbWritten);
776 * @retval VINF_TRY_AGAIN if @a fBlocking is @c false, @a pcbRead is not NULL,
792 * @param fBlocking Whether the call is blocking (@c true) or not. If
795 * read. This can be NULL if @a fBlocking is true.
811 * @param fBlocking Whether the call is blocking (@c true) or not. If
814 * written. This can be NULL if @a fBlocking is true.