| 1377 | |
| 1378 | |
| 1379 | static bool ConnectedAndRunning(BinaryView* view, uint64_t addr) |
| 1380 | { |
| 1381 | if (!DebuggerController::ControllerExists(view)) |
| 1382 | return false; |
| 1383 | auto controller = DebuggerController::GetController(view); |
| 1384 | if (!controller) |
| 1385 | return false; |
| 1386 | return controller->IsConnected() && controller->IsRunning(); |
| 1387 | } |
| 1388 | |
| 1389 | |
| 1390 | void GlobalDebuggerUI::InitializeUI() |
nothing calls this directly
no test coverage detected