Home
last modified time | relevance | path

Searched refs:GetPCAddress (Results 1 – 6 of 6) sorted by relevance

/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBFrame.i90 GetPCAddress () const;
343 …addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (…
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBFrame.h45 lldb::SBAddress GetPCAddress() const;
/openbsd-src/gnu/llvm/lldb/utils/lui/
H A Dlldbutil.py728 def GetPCAddress(i): function
729 return thread.GetFrameAtIndex(i).GetPCAddress()
731 return [GetPCAddress(i) for i in range(thread.GetNumFrames())]
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dscripted_step.py130 self.start_address = thread_plan.GetThread().GetFrameAtIndex(0).GetPCAddress()
/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py1044 def GetPCAddress(i): function
1045 return thread.GetFrameAtIndex(i).GetPCAddress()
1047 return list(map(GetPCAddress, list(range(thread.GetNumFrames()))))
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBFrame.cpp414 SBAddress SBFrame::GetPCAddress() const { in GetPCAddress() function in SBFrame