| 509 | } |
| 510 | |
| 511 | bool |
| 512 | AbstractProcessManager::isAddressValid(remote_addr_t addr) const |
| 513 | { |
| 514 | return std::any_of(d_memory_maps.cbegin(), d_memory_maps.cend(), [&](const VirtualMap& map) { |
| 515 | return d_manager->isAddressValid(addr, map); |
| 516 | }); |
| 517 | } |
| 518 | |
| 519 | std::string |
| 520 | AbstractProcessManager::getStringFromAddress(remote_addr_t addr) const |
nothing calls this directly
no outgoing calls
no test coverage detected