| 320 | } |
| 321 | |
| 322 | bool |
| 323 | ProcessMemoryManager::isAddressValid(remote_addr_t addr, const VirtualMap& map) const |
| 324 | { |
| 325 | if (addr == (uintptr_t) nullptr) { |
| 326 | return false; |
| 327 | } |
| 328 | return map.Start() <= addr && addr < map.End(); |
| 329 | } |
| 330 | |
| 331 | CorefileRemoteMemoryManager::CorefileRemoteMemoryManager( |
| 332 | std::shared_ptr<CoreFileAnalyzer> analyzer, |
no test coverage detected