Lines Matching refs:page
114 void PrintPage(const MapInfo& mapping, const PageInfo& page)
116 cout << hex << page.address << '-' << hex << (page.address + PAGE_SIZE) << " ";
118 if (page.inRam) {
119 cout << hex << page.pfn;
120 } else if (page.inSwap) {
182 PageInfo page;
183 ParsePagemap(entry, page);
184 page.address = tmpAddr;
185 PrintPage(mapping, page);