Lines Matching defs:pReq

904     PGMMFREEPAGESREQ    pReq;
905 int rc = GMMR3FreePagesPrepare(pVM, &pReq, PGMPHYS_FREE_PAGE_BATCH_SIZE, GMMACCOUNT_BASE);
913 rc = pgmPhysFreePage(pVM, pReq, &cPendingPages, pPageDst, GCPhys);
924 rc = GMMR3FreePagesPerform(pVM, pReq, cPendingPages);
927 GMMR3FreePagesCleanup(pReq);
952 PGMMFREEPAGESREQ pReq;
964 rc = GMMR3FreePagesPrepare(pVM, &pReq, PGMPHYS_FREE_PAGE_BATCH_SIZE, GMMACCOUNT_BASE);
988 rc = pgmPhysFreePage(pVM, pReq, &cPendingPages, pPage, paPhysPage[i]);
1001 rc = GMMR3FreePagesPerform(pVM, pReq, cPendingPages);
1009 GMMR3FreePagesCleanup(pReq);
1939 PGMMFREEPAGESREQ pReq;
1940 int rc = GMMR3FreePagesPrepare(pVM, &pReq, PGMPHYS_FREE_PAGE_BATCH_SIZE, GMMACCOUNT_BASE);
1981 rc = pgmPhysFreePage(pVM, pReq, &cPendingPages, pPage, pRam->GCPhys + ((RTGCPHYS)iPage << PAGE_SHIFT));
2065 rc = GMMR3FreePagesPerform(pVM, pReq, cPendingPages);
2068 GMMR3FreePagesCleanup(pReq);
2109 PGMMFREEPAGESREQ pReq;
2110 rc = GMMR3FreePagesPrepare(pVM, &pReq, PGMPHYS_FREE_PAGE_BATCH_SIZE, GMMACCOUNT_BASE);
2131 rc = pgmPhysFreePage(pVM, pReq, &cPendingPages, pPage, pRam->GCPhys + ((RTGCPHYS)iPage << PAGE_SHIFT));
2154 rc = GMMR3FreePagesPerform(pVM, pReq, cPendingPages);
2157 GMMR3FreePagesCleanup(pReq);
2834 PGMMFREEPAGESREQ pReq;
2835 int rc = GMMR3FreePagesPrepare(pVM, &pReq, PGMPHYS_FREE_PAGE_BATCH_SIZE, GMMACCOUNT_BASE);
2844 rc = pgmPhysFreePage(pVM, pReq, &cPendingPages, pPageDst, GCPhys);
2868 rc = GMMR3FreePagesPerform(pVM, pReq, cPendingPages);
2871 GMMR3FreePagesCleanup(pReq);
3239 PGMMALLOCATEPAGESREQ pReq;
3240 int rc = GMMR3AllocatePagesPrepare(pVM, &pReq, cPages, GMMACCOUNT_BASE);
3245 pReq->aPages[iPage].HCPhysGCPhys = GCPhys + (iPage << PAGE_SHIFT);
3246 pReq->aPages[iPage].idPage = NIL_GMM_PAGEID;
3247 pReq->aPages[iPage].idSharedPage = NIL_GMM_PAGEID;
3250 rc = GMMR3AllocatePagesPerform(pVM, pReq);
3253 GMMR3AllocatePagesCleanup(pReq);
3289 pReq->aPages[iPage].HCPhysGCPhys,
3290 pReq->aPages[iPage].idPage,
3306 PGM_PAGE_SET_HCPHYS(pVM, pPage, pReq->aPages[iPage].HCPhysGCPhys);
3308 PGM_PAGE_SET_PAGEID(pVM, pPage, pReq->aPages[iPage].idPage);
3442 GMMR3AllocatePagesCleanup(pReq);
3462 GMMR3FreeAllocatedPages(pVM, pReq);
3463 GMMR3AllocatePagesCleanup(pReq);
3646 PGMMFREEPAGESREQ pReq;
3647 rc = GMMR3FreePagesPrepare(pVM, &pReq, PGMPHYS_FREE_PAGE_BATCH_SIZE, GMMACCOUNT_BASE);
3655 rc = pgmPhysFreePage(pVM, pReq, &cPendingPages, &pRom->aPages[iPage].Shadow,
3662 rc = GMMR3FreePagesPerform(pVM, pReq, cPendingPages);
3665 GMMR3FreePagesCleanup(pReq);
4558 * @param pReq Pointer to the request.
4566 int pgmPhysFreePage(PVM pVM, PGMMFREEPAGESREQ pReq, uint32_t *pcPendingPages, PPGMPAGE pPage, RTGCPHYS GCPhys)
4648 pReq->aPages[iPage].idPage = idPage;
4656 int rc = GMMR3FreePagesPerform(pVM, pReq, PGMPHYS_FREE_PAGE_BATCH_SIZE);
4659 GMMR3FreePagesRePrep(pVM, pReq, PGMPHYS_FREE_PAGE_BATCH_SIZE, GMMACCOUNT_BASE);