MCPcopy Create free account
hub / github.com/ELMERIKH/PyinMemoryPE / single_step

Method single_step

windows/debug/debugger.py:952–957  ·  view source on GitHub ↗

Make the ``current_thread`` ``single_step``. ``Debugger.on_single_step`` will be called after that

(self)

Source from the content-addressed store, hash-verified

950 return self.remove_pending_breakpoint(bp, original_target)
951
952 def single_step(self):
953 """Make the ``current_thread`` ``single_step``. ``Debugger.on_single_step`` will be called after that"""
954 t = self.current_thread
955 ctx = t.context
956 ctx.EEFlags.TF = 1
957 t.set_context(ctx)
958
959 ## Memory Breakpoint helper
960 def get_memory_breakpoint_at(self, addr, process=None):

Callers

nothing calls this directly

Calls 1

set_contextMethod · 0.45

Tested by

no test coverage detected