| 336 | } |
| 337 | |
| 338 | int WinDbgMemoryProvider::size() const |
| 339 | { |
| 340 | #ifdef _WIN32 |
| 341 | return m_dataSpaces ? 0x10000 : 0; |
| 342 | #else |
| 343 | return 0; |
| 344 | #endif |
| 345 | } |
| 346 | |
| 347 | bool WinDbgMemoryProvider::isReadable(uint64_t /*addr*/, int len) const |
| 348 | { |
nothing calls this directly
no outgoing calls
no test coverage detected