MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / get_fp

Method get_fp

pydevd_attach_to_process/winappdbg/thread.py:670–677  ·  view source on GitHub ↗

@rtype: int @return: Value of the frame pointer register.

(self)

Source from the content-addressed store, hash-verified

668 self.set_context(context)
669
670 def get_fp(self):
671 """
672 @rtype: int
673 @return: Value of the frame pointer register.
674 """
675 flags = win32.CONTEXT_CONTROL | win32.CONTEXT_INTEGER
676 context = self.get_context(flags)
677 return context.fp
678
679 def set_fp(self, fp):
680 """

Callers 4

__get_stack_traceMethod · 0.95
get_stack_frame_rangeMethod · 0.95
read_stack_frameMethod · 0.95

Calls 1

get_contextMethod · 0.95

Tested by

no test coverage detected