Resume the target. The call is blocking and only returns when the target stops. :return: the reason for the stop
(self)
| 916 | return dbgcore.BNDebuggerRunTo(self.handle, addr_list, len(address)) |
| 917 | |
| 918 | def go_and_wait(self) -> DebugStopReason: |
| 919 | """ |
| 920 | Resume the target. |
| 921 | |
| 922 | The call is blocking and only returns when the target stops. |
| 923 | |
| 924 | :return: the reason for the stop |
| 925 | """ |
| 926 | return DebugStopReason(dbgcore.BNDebuggerGoAndWait(self.handle)) |
| 927 | |
| 928 | def step_into_and_wait(self, il: binaryninja.FunctionGraphType = |
| 929 | binaryninja.FunctionGraphType.NormalFunctionGraph) -> DebugStopReason: |
no outgoing calls