Searched refs:cModifiedPages (Results 1 - 4 of 4) sorted by relevance
/vbox/src/VBox/VMM/VMMR3/ |
H A D | PGMPool.cpp | 371 STAM_REG(pVM, &pPool->cModifiedPages, STAMTYPE_U16, "/PGM/Pool/Monitor/cModifiedPages", STAMUNIT_PAGES, "The current cModifiedPages value."); 372 STAM_REG(pVM, &pPool->cModifiedPagesHigh, STAMTYPE_U16_RESET, "/PGM/Pool/Monitor/cModifiedPagesHigh", STAMUNIT_PAGES, "The high watermark for cModifiedPages."); 638 unsigned cModifiedPages = 0; NOREF(cModifiedPages); local 758 Assert(!pPage->cModifications || ++cModifiedPages); 773 AssertMsg(cModifiedPages == pPool->cModifiedPages, ("%d != %d\n", cModifiedPages, pPoo [all...] |
/vbox/src/VBox/VMM/VMMAll/ |
H A D | PGMAllPool.cpp | 2634 ("Next=%d Prev=%d idx=%d cModifications=%d Head=%d cModifiedPages=%d\n", 2636 pPool->iModifiedHead, pPool->cModifiedPages)); 2642 pPool->cModifiedPages++; 2644 if (pPool->cModifiedPages > pPool->cModifiedPagesHigh) 2645 pPool->cModifiedPagesHigh = pPool->cModifiedPages; 2669 pPool->cModifiedPages--; 2680 pPool->cModifiedPages--; 2697 LogFlow(("pgmPoolMonitorModifiedClearAll: cModifiedPages=%d\n", pPool->cModifiedPages)); 2716 AssertMsg(cPages == pPool->cModifiedPages, (" [all...] |
/vbox/src/VBox/VMM/testcase/ |
H A D | tstVMStruct.h | 912 GEN_CHECK_OFF(PGMPOOL, cModifiedPages);
|
/vbox/src/VBox/VMM/include/ |
H A D | PGMInternal.h | 2315 uint16_t cModifiedPages; member in struct:PGMPOOL 2451 /** The high water mark for cModifiedPages. */
|
Completed in 1597 milliseconds