Lines Matching refs:entry
104 void ParsePagemap(uint64_t entry, PageInfo & pginfo)
106 pginfo.inRam = (entry >> IN_RAM_OFFSET) & 0x1;
107 pginfo.inSwap = (entry >> IN_SWAP_OFFSET) & 0x1;
108 pginfo.shared = (entry >> SHARED_OFFSET) & 0x1;
109 pginfo.exclusive = (entry >> EXCLUSIVE_OFFSET) & 0x1;
110 pginfo.softdirty = (entry >> SOFTDIRTY_OFFSET) & 0x1;
111 pginfo.pfn = entry & PFN_MASK;
177 uint64_t entry;
178 if (pread(pagemapFd, &entry, sizeof(entry), offset) != sizeof(entry)) {
183 ParsePagemap(entry, page);