Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(0) | Call(0) | Derive(0) | Import(0)
src/w/i/winappdbg-1.5/winappdbg/thread.py winappdbg(Download)
@return: Value of the program counter register. """ context = self.get_context(win32.CONTEXT_CONTROL) return context.pc
@param pc: Value of the program counter register. """ context = self.get_context(win32.CONTEXT_CONTROL) context.pc = pc self.set_context(context)
@return: Value of the stack pointer register. """ context = self.get_context(win32.CONTEXT_CONTROL) return context.sp
@param sp: Value of the stack pointer register. """ context = self.get_context(win32.CONTEXT_CONTROL) context.sp = sp self.set_context(context)
@return: Value of the frame pointer register. """ flags = win32.CONTEXT_CONTROL | win32.CONTEXT_INTEGER context = self.get_context(flags) return context.fp