| 141 | // Check whether access to address causes page fault: |
| 142 | _IRQL_requires_max_(DISPATCH_LEVEL) |
| 143 | BOOLEAN IsAddressValid(PVOID Address) |
| 144 | { |
| 145 | return MmIsAddressValid(Address); |
| 146 | } |
| 147 | |
| 148 | _IRQL_requires_max_(APC_LEVEL) |
| 149 | BOOLEAN CheckUserMemoryReadable(__in_data_source(USER_MODE) PVOID UserAddress, SIZE_T Size) |
nothing calls this directly
no outgoing calls
no test coverage detected