| 172 | // Check whether access to address causes page fault: |
| 173 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 174 | BOOLEAN IsAddressValid(PVOID Address) { |
| 175 | return MmIsAddressValid(Address); |
| 176 | } |
| 177 | |
| 178 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 179 | BOOLEAN IsPagePresent(PVOID Address) { |
nothing calls this directly
no outgoing calls
no test coverage detected