MCPcopy Create free account
hub / github.com/IChooseYou/Reclass / isReadable

Method isReadable

plugins/WinDbgMemory/WinDbgMemoryPlugin.cpp:347–355  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

345}
346
347bool 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
357QString WinDbgMemoryProvider::getSymbol(uint64_t addr) const
358{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected