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

Method write_stdin

api/python/debuggercontroller.py:1350–1355  ·  view source on GitHub ↗

Write to the stdin of the target. Only works on Linux and macOS.

(self, data: str)

Source from the content-addressed store, hash-verified

1348 return dbgcore.BNDebuggerGetStopReasonString(self.stop_reason)
1349
1350 def write_stdin(self, data: str) -> None:
1351 """
1352 Write to the stdin of the target. Only works on Linux and macOS.
1353
1354 """
1355 dbgcore.BNDebuggerWriteStdin(self.handle, data, len(data))
1356
1357 def execute_backend_command(self, command: str) -> str:
1358 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected