| 106 | |
| 107 | |
| 108 | DataBuffer DebuggerController::ReadMemory(std::uintptr_t address, std::size_t size) |
| 109 | { |
| 110 | return DataBuffer(BNDebuggerReadMemory(m_object, address, size)); |
| 111 | } |
| 112 | |
| 113 | |
| 114 | bool DebuggerController::WriteMemory(std::uintptr_t address, const DataBuffer& buffer) |
nothing calls this directly
no test coverage detected