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

Method WriteStdIn

core/debuggercontroller.cpp:1418–1428  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1416
1417
1418void DebuggerController::WriteStdIn(const std::string message)
1419{
1420 if (m_adapter && m_state->IsRunning())
1421 {
1422 m_adapter->WriteStdin(message);
1423 }
1424 else
1425 {
1426 NotifyError("Cannot send to stdin, target is not running", "Cannot send to stdin, target is not running");
1427 }
1428}
1429
1430
1431std::string DebuggerController::InvokeBackendCommand(const std::string& cmd)

Callers 1

BNDebuggerWriteStdinFunction · 0.80

Calls 2

IsRunningMethod · 0.45
WriteStdinMethod · 0.45

Tested by

no test coverage detected