Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/
DTestConsecutiveBreakpoints.py27 address = frame.GetPCAddress()
68 self.thread.GetFrameAtIndex(0).GetPCAddress().GetLoadAddress(
95 self.thread.GetFrameAtIndex(0).GetPCAddress().GetLoadAddress(
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_frame.py14 obj.GetPCAddress()
/external/llvm-project/lldb/test/API/functionalities/unwind/zeroth_frame/
DTestZerothFrame.py95 thread.frame[0].GetPCAddress().GetLineEntry().GetLine(),
/external/llvm-project/lldb/bindings/interface/
DSBFrame.i89 GetPCAddress () const;
335 …addr = property(GetPCAddress, None, doc='''A read only property that returns the program counter (…
/external/llvm-project/lldb/include/lldb/API/
DSBFrame.h45 lldb::SBAddress GetPCAddress() const;
/external/llvm-project/lldb/utils/lui/
Dlldbutil.py728 def GetPCAddress(i): function
729 return thread.GetFrameAtIndex(i).GetPCAddress()
731 return [GetPCAddress(i) for i in range(thread.GetNumFrames())]
/external/llvm-project/lldb/examples/python/
Dscripted_step.py132 self.start_address = thread_plan.GetThread().GetFrameAtIndex(0).GetPCAddress()
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Dlldbutil.py1027 def GetPCAddress(i): function
1028 return thread.GetFrameAtIndex(i).GetPCAddress()
1030 return list(map(GetPCAddress, list(range(thread.GetNumFrames()))))
/external/llvm-project/lldb/source/API/
DSBFrame.cpp419 SBAddress SBFrame::GetPCAddress() const { in GetPCAddress() function in SBFrame
420 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBAddress, SBFrame, GetPCAddress); in GetPCAddress()
1319 LLDB_REGISTER_METHOD_CONST(lldb::SBAddress, SBFrame, GetPCAddress, ()); in RegisterMethods()