Whether the debugger has successfully connected to the target (read-only)
(self)
| 572 | |
| 573 | @property |
| 574 | def connected(self) -> bool: |
| 575 | """Whether the debugger has successfully connected to the target (read-only)""" |
| 576 | return dbgcore.BNDebuggerIsConnected(self.handle) |
| 577 | |
| 578 | @property |
| 579 | def running(self) -> bool: |
nothing calls this directly
no outgoing calls
no test coverage detected