Lines Matching refs:pcbRead
520 * @retval VINF_SUCCESS and the number of bytes read written to @a pcbRead.
521 * @retval VINF_TRY_AGAIN if @a fBlocking is @c false, @a pcbRead is not NULL,
522 * and no data was available. @a *pcbRead will be set to 0.
524 * @a pcbRead is not NULL (it will be set to the number of bytes read,
531 * @a pcbRead is NULL.
538 * not, the @a pcbRead parameter must not be NULL.
539 * @param pcbRead Where to always store the number of bytes actually
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);
558 * @param pcbRead Where to always store the number of bytes actually
570 * @retval VINF_SUCCESS and the number of bytes read written to @a pcbRead.
571 * @retval VINF_TRY_AGAIN if @a fBlocking is @c false, @a pcbRead is not NULL,
572 * and no data was available. @a *pcbRead will be set to 0.
574 * @a pcbRead is not NULL (it will be set to the number of bytes read,
581 * @a pcbRead is NULL.
589 * not, the @a pcbRead parameter must not be NULL.
590 * @param pcbRead Where to always store the number of bytes actually
594 RTDECL(int) RTVfsIoStrmSgRead(RTVFSIOSTREAM hVfsIos, PCRTSGBUF pSgBuf, bool fBlocking, size_t *pcbRead);
775 * @retval VINF_SUCCESS and the number of bytes read written to @a pcbRead.
776 * @retval VINF_TRY_AGAIN if @a fBlocking is @c false, @a pcbRead is not NULL,
777 * and no data was available. @a *pcbRead will be set to 0.
779 * @a pcbRead is not NULL (it will be set to the number of bytes read,
786 * @a pcbRead is NULL.
793 * not, the @a pcbRead parameter must not be NULL.
794 * @param pcbRead Where to always store the number of bytes actually
799 RTDECL(int) RTVfsFileRead(RTVFSFILE hVfsFile, void *pvBuf, size_t cbToRead, size_t *pcbRead);
800 RTDECL(int) RTVfsFileReadAt(RTVFSFILE hVfsFile, RTFOFF off, void *pvBuf, size_t cbToRead, size_t *pcbRead);
813 * @param pcbRead Where to always store the number of bytes actually