Lines Matching defs:pcbRead
195 * @param pcbRead For store the actual number of bytes read, pass NULL if
199 VMMR3_INT_DECL(int) PGMR3DbgReadGCPhys(PVM pVM, void *pvDst, RTGCPHYS GCPhysSrc, size_t cb, uint32_t fFlags, size_t *pcbRead)
207 if (RT_SUCCESS(rc) || !pcbRead)
211 *pcbRead = 0;
225 *pcbRead += cbChunk;
231 return *pcbRead && RT_FAILURE(rc) ? -rc : rc;
297 * @param pcbRead For store the actual number of bytes read, pass NULL if
301 VMMR3_INT_DECL(int) PGMR3DbgReadGCPtr(PVM pVM, void *pvDst, RTGCPTR GCPtrSrc, size_t cb, uint32_t fFlags, size_t *pcbRead)
313 if (RT_SUCCESS(rc) || !pcbRead)
317 *pcbRead = 0;
331 *pcbRead += cbChunk;
337 return *pcbRead && RT_FAILURE(rc) ? -rc : rc;