Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/
H A DTestConsecutiveBreakpoints.py25 address = frame.GetPCAddress()
66 self.thread.GetFrameAtIndex(0).GetPCAddress().GetLoadAddress(
93 self.thread.GetFrameAtIndex(0).GetPCAddress().GetLoadAddress(
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_frame.py14 obj.GetPCAddress()
/llvm-project-15.0.7/lldb/test/API/functionalities/unwind/zeroth_frame/
H A DTestZerothFrame.py94 thread.frame[0].GetPCAddress().GetLineEntry().GetLine(),
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBFrame.i90 GetPCAddress () const;
343 …addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (…
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBFrame.h45 lldb::SBAddress GetPCAddress() const;
/llvm-project-15.0.7/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())]
/llvm-project-15.0.7/lldb/examples/python/
H A Dscripted_step.py132 self.start_address = thread_plan.GetThread().GetFrameAtIndex(0).GetPCAddress()
/llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/
H A DTestScriptedProcess.py145 pc = frame.GetPCAddress().GetLoadAddress(target)
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbutil.py1117 def GetPCAddress(i): function
1118 return thread.GetFrameAtIndex(i).GetPCAddress()
1120 return list(map(GetPCAddress, list(range(thread.GetNumFrames()))))
/llvm-project-15.0.7/lldb/source/API/
H A DSBFrame.cpp414 SBAddress SBFrame::GetPCAddress() const { in GetPCAddress() function in SBFrame