Searched defs:cbBinary (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.cpp3134 * @param cbBinary The size of the binary data pvBinary points to.
3141 const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc)
3361 size_t cbBinaryLeft = cbBinary;
3398 pRomNew->cbOriginal = cbBinary;
3401 ? pvBinary : RTMemDup(pvBinary, cbBinary);
3489 * @param cbBinary The size of the binary data pvBinary points to.
3500 const void *pvBinary, uint32_t cbBinary, uint32_t fFlags, const char *pszDesc)
3502 Log(("PGMR3PhysRomRegister: pDevIns=%p GCPhys=%RGp(-%RGp) cb=%RGp pvBinary=%p cbBinary=%#x fFlags=%#x pszDesc=%s\n",
3503 pDevIns, GCPhys, GCPhys + cb, cb, pvBinary, cbBinary, fFlags, pszDesc));
3505 int rc = pgmR3PhysRomRegister(pVM, pDevIns, GCPhys, cb, pvBinary, cbBinary, fFlag
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.h2502 * @param cbBinary The size of the binary pointer. This must
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 153 milliseconds