| 793 | |
| 794 | |
| 795 | std::string DebuggerController::GetAddressInformation(uint64_t address) |
| 796 | { |
| 797 | char* info = BNDebuggerGetAddressInformation(m_object, address); |
| 798 | std::string result = std::string(info); |
| 799 | BNDebuggerFreeString(info); |
| 800 | return result; |
| 801 | } |
| 802 | |
| 803 | |
| 804 | bool DebuggerController::IsFirstLaunch() |
nothing calls this directly
no test coverage detected