| 46 | |
| 47 | |
| 48 | std::string DbgEngTTDAdapter::GetDbgEngPath(const std::string& arch) |
| 49 | { |
| 50 | std::string path = Settings::Instance()->Get<string>("debugger.x64dbgEngPath"); |
| 51 | if (IsValidDbgEngPaths(path)) |
| 52 | return path; |
| 53 | |
| 54 | return ""; |
| 55 | } |
| 56 | |
| 57 | |
| 58 | bool DbgEngTTDAdapter::ExecuteWithArgsInternal(const std::string& path, const std::string& args, |
nothing calls this directly
no test coverage detected