MCPcopy Create free account
hub / github.com/Vector35/debugger / WriteMemory

Method WriteMemory

core/adapters/dbgengadapter.cpp:1482–1487  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1480}
1481
1482bool 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
1490std::vector<DebugFrame> DbgEngAdapter::GetFramesOfThread(uint32_t tid)

Callers

nothing calls this directly

Calls 1

GetDataMethod · 0.45

Tested by

no test coverage detected