| 748 | |
| 749 | |
| 750 | std::string DebuggerController::InvokeBackendCommand(const std::string& command) |
| 751 | { |
| 752 | char* output = BNDebuggerInvokeBackendCommand(m_object, command.c_str()); |
| 753 | std::string result = std::string(output); |
| 754 | BNDebuggerFreeString(output); |
| 755 | return result; |
| 756 | } |
| 757 | |
| 758 | |
| 759 | std::string DebuggerController::GetDebugStopReasonString(DebugStopReason reason) |
no test coverage detected