| 1366 | |
| 1367 | |
| 1368 | static bool ConnectedAndStopped(BinaryView* view, uint64_t addr) |
| 1369 | { |
| 1370 | if (!DebuggerController::ControllerExists(view)) |
| 1371 | return false; |
| 1372 | auto controller = DebuggerController::GetController(view); |
| 1373 | if (!controller) |
| 1374 | return false; |
| 1375 | return controller->IsConnected() && (!controller->IsRunning()); |
| 1376 | } |
| 1377 | |
| 1378 | |
| 1379 | static bool ConnectedAndRunning(BinaryView* view, uint64_t addr) |
nothing calls this directly
no test coverage detected