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

/vbox/src/VBox/VMM/include/
H A DPGMInline.h115 * @retval VINF_SUCCESS and a valid *ppPage on success.
120 * @param ppPage Where to store the page pointer on success.
122 DECLINLINE(int) pgmPhysGetPageEx(PVM pVM, RTGCPHYS GCPhys, PPPGMPAGE ppPage) argument
128 return pgmPhysGetPageExSlow(pVM, GCPhys, ppPage);
129 *ppPage = &pRam->aPages[(GCPhys - pRam->GCPhys) >> PAGE_SHIFT];
141 * @retval VINF_SUCCESS and a valid *ppPage on success.
146 * @param ppPage Where to store the page pointer on success.
150 DECLINLINE(int) pgmPhysGetPageWithHintEx(PVM pVM, RTGCPHYS GCPhys, PPPGMPAGE ppPage, PPGMRAMRANGE *ppRamHint) argument
160 return pgmPhysGetPageAndRangeExSlow(pVM, GCPhys, ppPage, ppRamHint);
165 *ppPage
181 pgmPhysGetPageAndRangeEx(PVM pVM, RTGCPHYS GCPhys, PPPGMPAGE ppPage, PPGMRAMRANGE *ppRam) argument
[all...]
H A DPGMInternal.h4057 int pgmPhysGetPageExSlow(PVM pVM, RTGCPHYS GCPhys, PPPGMPAGE ppPage);
4058 int pgmPhysGetPageAndRangeExSlow(PVM pVM, RTGCPHYS GCPhys, PPPGMPAGE ppPage, PPGMRAMRANGE *ppRam);
4090 uint16_t iUser, uint32_t iUserTable, bool fLockPage, PPPGMPOOLPAGE ppPage);
/vbox/src/VBox/VMM/VMMAll/
H A DPGMAllPool.cpp2195 * @param ppPage Where to store the pointer to the page.
2198 uint16_t iUser, uint32_t iUserTable, PPPGMPOOLPAGE ppPage)
2228 *ppPage = pPage;
5023 * @param ppPage Where to store the pointer to the page. NULL is stored here on failure.
5026 uint16_t iUser, uint32_t iUserTable, bool fLockPage, PPPGMPOOLPAGE ppPage)
5031 *ppPage = NULL;
5040 int rc2 = pgmPoolCacheAlloc(pPool, GCPhys, enmKind, enmAccess, fA20Enabled, iUser, iUserTable, ppPage);
5044 pgmPoolLockPage(pPool, *ppPage);
5047 LogFlow(("pgmPoolAlloc: cached returns %Rrc *ppPage=%p:{.Key=%RHp, .idx=%d}\n", rc2, *ppPage, (*ppPag
[all...]
H A DPGMAllPhys.cpp268 int pgmPhysGetPageExSlow(PVM pVM, RTGCPHYS GCPhys, PPPGMPAGE ppPage) argument
279 *ppPage = &pRam->aPages[off >> PAGE_SHIFT];
289 *ppPage = NULL;
299 int pgmPhysGetPageAndRangeExSlow(PVM pVM, RTGCPHYS GCPhys, PPPGMPAGE ppPage, PPGMRAMRANGE *ppRam) argument
311 *ppPage = &pRam->aPages[off >> PAGE_SHIFT];
322 *ppPage = NULL;

Completed in 84 milliseconds