MCPcopy Create free account
hub / github.com/qilingframework/qiling / do_continue

Method do_continue

qiling/debugger/qdb/qdb.py:257–270  ·  view source on GitHub ↗

Continue execution from specified address, or from current one if not specified.

(self, args: str)

Source from the content-addressed store, hash-verified

255 @save_regs
256 @liveness_check
257 def do_continue(self, args: str) -> None:
258 """Continue execution from specified address, or from current one if
259 not specified.
260 """
261
262 address, *_ = args.split() if args else ('',)
263 address = try_read_int(address)
264
265 if address is None:
266 address = self.cur_addr
267
268 qdb_print(QDB_MSG.INFO, f'continuing from {address:#010x}')
269
270 self._run(address)
271
272 def do_backward(self, args: str) -> None:
273 """Step backwards to the previous location.

Callers

nothing calls this directly

Calls 3

_runMethod · 0.95
try_read_intFunction · 0.85
qdb_printFunction · 0.85

Tested by

no test coverage detected