MCPcopy Create free account
hub / github.com/Vector35/debugger / ConnectedAndRunning

Function ConnectedAndRunning

ui/ui.cpp:1379–1387  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1377
1378
1379static 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
1390void GlobalDebuggerUI::InitializeUI()

Callers

nothing calls this directly

Calls 2

IsConnectedMethod · 0.45
IsRunningMethod · 0.45

Tested by

no test coverage detected