| 177 | |
| 178 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 179 | BOOLEAN IsPagePresent(PVOID Address) { |
| 180 | return PhysicalMemory::GetPhysicalAddress(Address) || MmIsAddressValid(Address); |
| 181 | } |
| 182 | |
| 183 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 184 | BOOLEAN IsMemoryRangePresent(PVOID Address, SIZE_T Size) { |
no test coverage detected