Lines Matching refs:cbTransfer

379             volatile size_t      cbTransfer;
534 uint32_t cbTransfer;
1064 uint64_t uOffset, size_t cbTransfer, PVDIMAGE pImageStart,
1070 pIoCtx->Req.Io.cbTransferLeft = (uint32_t)cbTransfer; Assert((uint32_t)cbTransfer == cbTransfer);
1072 pIoCtx->Req.Io.cbTransfer = cbTransfer;
1078 pIoCtx->Req.Io.cbXferOrig = cbTransfer;
1365 uint64_t uOffset, size_t cbTransfer,
1375 vdIoCtxInit(pIoCtx, pDisk, enmTxDir, uOffset, cbTransfer, pImageStart,
1383 uint64_t uOffset, size_t cbTransfer,
1391 PVDIOCTX pIoCtx = vdIoCtxAlloc(pDisk, enmTxDir, uOffset, cbTransfer, pImageStart,
1457 uint64_t uOffset, size_t cbTransfer,
1463 PVDIOCTX pIoCtx = vdIoCtxAlloc(pDisk, enmTxDir, uOffset, cbTransfer, pImageStart,
1473 pIoCtx->Type.Child.cbTransferLeftSaved = cbTransfer;
1482 DECLINLINE(PVDIOTASK) vdIoTaskUserAlloc(PVDIOSTORAGE pIoStorage, PFNVDXFERCOMPLETED pfnComplete, void *pvUser, PVDIOCTX pIoCtx, uint32_t cbTransfer)
1493 pIoTask->Type.User.cbTransfer = cbTransfer;
2013 size_t cbToRead = pIoCtx->Req.Io.cbTransfer;
2151 pIoCtx->Req.Io.cbTransfer = cbToRead;
2762 pIoCtx->Req.Io.cbTransfer = pIoCtx->Req.Io.cbTransferLeft;
2841 pIoCtx->Req.Io.cbTransfer = pIoCtx->Req.Io.cbTransferLeft;
2938 pIoCtx->Req.Io.cbTransfer = pIoCtx->Req.Io.cbTransferLeft;
2954 size_t cbWrite = pIoCtx->Req.Io.cbTransfer;
3122 pIoCtx->Req.Io.cbTransfer = cbWrite;
4165 size_t cbTransfer, int rcReq)
4171 LogFlowFunc(("pIoStorage=%#p pIoCtx=%#p pfnComplete=%#p pvUser=%#p cbTransfer=%zu rcReq=%Rrc\n",
4172 pIoStorage, pIoCtx, pfnComplete, pvUser, cbTransfer, rcReq));
4176 Assert(pIoCtx->Req.Io.cbTransferLeft >= cbTransfer);
4177 ASMAtomicSubU32(&pIoCtx->Req.Io.cbTransferLeft, (uint32_t)cbTransfer); Assert(cbTransfer == (uint32_t)cbTransfer);
4373 pHead->Type.User.cbTransfer, pHead->rcReq);