Searched defs:pvBinary (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/VMM/VMMR3/
H A DPDMDevHlp.cpp551 const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc)
555 LogFlow(("pdmR3DevHlp_ROMRegister: caller='%s'/%d: GCPhysStart=%RGp cbRange=%#x pvBinary=%p cbBinary=%#x fFlags=%#RX32 pszDesc=%p:{%s}\n",
556 pDevIns->pReg->szName, pDevIns->iInstance, GCPhysStart, cbRange, pvBinary, cbBinary, fFlags, pszDesc, pszDesc));
559 int rc = PGMR3PhysRomRegister(pDevIns->Internal.s.pVMR3, pDevIns, GCPhysStart, cbRange, pvBinary, cbBinary, fFlags, pszDesc);
550 pdmR3DevHlp_ROMRegister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc) argument
H A DPGMPhys.cpp3133 * @param pvBinary Pointer to the binary data backing the ROM image.
3134 * @param cbBinary The size of the binary data pvBinary points to.
3141 const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc)
3151 AssertPtrReturn(pvBinary, VERR_INVALID_PARAMETER);
3374 memcpy(pvDstPage, (uint8_t const *)pvBinary + ((size_t)iPage << PAGE_SHIFT), PAGE_SIZE);
3382 memcpy(pvDstPage, (uint8_t const *)pvBinary + ((size_t)iPage << PAGE_SHIFT), cbBinaryLeft);
3401 ? pvBinary : RTMemDup(pvBinary, cbBinary);
3403 pRomNew->pvOriginal = fFlags & PGMPHYS_ROM_FLAGS_PERMANENT_BINARY ? pvBinary : NULL;
3488 * @param pvBinary Pointe
3140 pgmR3PhysRomRegister(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhys, RTGCPHYS cb, const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc) argument
3499 PGMR3PhysRomRegister(PVM pVM, PPDMDEVINS pDevIns, RTGCPHYS GCPhys, RTGCPHYS cb, const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc) argument
[all...]
/vbox/include/VBox/vmm/
H A Dpdmdev.h2501 * @param pvBinary Pointer to the binary data backing the ROM image.
2511 const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc));
4515 const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc)
4517 return pDevIns->pHlpR3->pfnROMRegister(pDevIns, GCPhysStart, cbRange, pvBinary, cbBinary, fFlags, pszDesc);
4514 PDMDevHlpROMRegister(PPDMDEVINS pDevIns, RTGCPHYS GCPhysStart, uint32_t cbRange, const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc) argument

Completed in 115 milliseconds