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

Function ConnectedAndStopped

ui/ui.cpp:1368–1376  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1366
1367
1368static 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
1379static bool ConnectedAndRunning(BinaryView* view, uint64_t addr)

Callers

nothing calls this directly

Calls 2

IsConnectedMethod · 0.45
IsRunningMethod · 0.45

Tested by

no test coverage detected