| 1480 | } |
| 1481 | |
| 1482 | bool DbgEngAdapter::WriteMemory(std::uintptr_t address, const DataBuffer& buffer) |
| 1483 | { |
| 1484 | unsigned long bytes_written {}; |
| 1485 | return this->m_debugDataSpaces->WriteVirtual(address, const_cast<void*>(buffer.GetData()), buffer.GetLength(), &bytes_written) == S_OK |
| 1486 | && bytes_written == buffer.GetLength(); |
| 1487 | } |
| 1488 | |
| 1489 | |
| 1490 | std::vector<DebugFrame> DbgEngAdapter::GetFramesOfThread(uint32_t tid) |