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

Method go_and_wait

api/python/debuggercontroller.py:918–926  ·  view source on GitHub ↗

Resume the target. The call is blocking and only returns when the target stops. :return: the reason for the stop

(self)

Source from the content-addressed store, hash-verified

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:

Callers 6

run_onceMethod · 0.95
test_return_codeMethod · 0.95
test_step_intoMethod · 0.95
test_assembly_codeMethod · 0.95

Calls

no outgoing calls

Tested by 6

run_onceMethod · 0.76
test_return_codeMethod · 0.76
test_step_intoMethod · 0.76
test_assembly_codeMethod · 0.76