Lines Matching refs:pvBuf
110 static DECLCALLBACK(int) drvRawImageRead(PPDMIMEDIA pInterface, uint64_t off, void *pvBuf, size_t cbRead)
113 LogFlow(("drvRawImageRead: off=%#llx pvBuf=%p cbRead=%#x (%s)\n", off, pvBuf, cbRead, pThis->pszFilename));
116 Assert(pvBuf);
124 rc = RTFileRead(pThis->hFile, pvBuf, cbRead, NULL);
127 Log2(("drvRawImageRead: off=%#llx pvBuf=%p cbRead=%#x (%s)\n"
129 off, pvBuf, cbRead, pThis->pszFilename,
130 cbRead, pvBuf));
134 pThis->hFile, pvBuf, cbRead, rc, off, pThis->pszFilename));
144 static DECLCALLBACK(int) drvRawImageWrite(PPDMIMEDIA pInterface, uint64_t off, const void *pvBuf, size_t cbWrite)
147 LogFlow(("drvRawImageWrite: off=%#llx pvBuf=%p cbWrite=%#x (%s)\n", off, pvBuf, cbWrite, pThis->pszFilename));
150 Assert(pvBuf);
158 rc = RTFileWrite(pThis->hFile, pvBuf, cbWrite, NULL);
161 Log2(("drvRawImageWrite: off=%#llx pvBuf=%p cbWrite=%#x (%s)\n"
163 off, pvBuf, cbWrite, pThis->pszFilename,
164 cbWrite, pvBuf));
168 pThis->hFile, pvBuf, cbWrite, rc, off, pThis->pszFilename));