Searched refs:ppVirt (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/VMM/VMMR0/
H A DGIMR0Hv.cpp40 * @param ppVirt Where to store the virtual address of the
45 static int gimR0HvPageAllocZ(PRTR0MEMOBJ pMemObj, PRTR0PTR ppVirt, PRTHCPHYS pHCPhys)
48 AssertPtr(ppVirt);
54 *ppVirt = RTR0MemObjAddress(*pMemObj);
56 ASMMemZero32(*ppVirt, PAGE_SIZE);
65 * @param ppVirt Where to re-initialize the virtual address of
70 static void gimR0HvPageFree(PRTR0MEMOBJ pMemObj, PRTR0PTR ppVirt, PRTHCPHYS pHCPhys)
73 AssertPtr(ppVirt);
80 *ppVirt = 0;
H A DHMVMXR0.cpp832 * @param ppVirt Where to store the virtual address of the
837 DECLINLINE(int) hmR0VmxPageAllocZ(PRTR0MEMOBJ pMemObj, PRTR0PTR ppVirt, PRTHCPHYS pHCPhys) argument
840 AssertPtrReturn(ppVirt, VERR_INVALID_PARAMETER);
846 *ppVirt = RTR0MemObjAddress(*pMemObj);
848 ASMMemZero32(*ppVirt, PAGE_SIZE);
857 * @param ppVirt Where to re-initialize the virtual address of
862 DECLINLINE(void) hmR0VmxPageFree(PRTR0MEMOBJ pMemObj, PRTR0PTR ppVirt, PRTHCPHYS pHCPhys) argument
865 AssertPtr(ppVirt);
872 *ppVirt = 0;
/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllHandler.cpp1316 * @param ppVirt Where to store the pointer to the virtual handler structure.
1319 int pgmHandlerVirtualFindByPhysAddr(PVM pVM, RTGCPHYS GCPhys, PPGMVIRTHANDLER *ppVirt, unsigned *piPage)
1322 Assert(ppVirt);
1330 *ppVirt = (PPGMVIRTHANDLER)((uintptr_t)pCur + pCur->offVirtHandler);
1331 *piPage = pCur - &(*ppVirt)->aPhysToVirt[0];
1337 LogFlow(("PHYS2VIRT: found match for %RGp -> %RGv *piPage=%#x\n", GCPhys, (*ppVirt)->Core.Key, *piPage));
1343 *ppVirt = NULL;
/vbox/src/VBox/VMM/include/
H A DPGMInternal.h4021 int pgmHandlerVirtualFindByPhysAddr(PVM pVM, RTGCPHYS GCPhys, PPGMVIRTHANDLER *ppVirt, unsigned *piPage);

Completed in 2661 milliseconds