| 345 | } |
| 346 | |
| 347 | bool WinDbgMemoryProvider::isReadable(uint64_t /*addr*/, int len) const |
| 348 | { |
| 349 | #ifdef _WIN32 |
| 350 | // DbgEng's ReadVirtual can read any mapped virtual address. |
| 351 | return m_dataSpaces != nullptr && len >= 0; |
| 352 | #else |
| 353 | return false; |
| 354 | #endif |
| 355 | } |
| 356 | |
| 357 | QString WinDbgMemoryProvider::getSymbol(uint64_t addr) const |
| 358 | { |
nothing calls this directly
no outgoing calls
no test coverage detected