Home
last modified time | relevance | path

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

/external/llvm-project/lldb/bindings/lua/
Dlua-wrapper.swig20 lldb::SBFrame sb_frame(stop_frame_sp);
24 PushSBClass(L, &sb_frame);
27 // Call into the Lua callback passing 'sb_frame' and 'sb_bp_loc'.
/external/llvm-project/lldb/source/API/
DSBThread.cpp661 void SBThread::StepOutOfFrame(SBFrame &sb_frame) { in StepOutOfFrame() argument
663 sb_frame); in StepOutOfFrame()
666 StepOutOfFrame(sb_frame, error); in StepOutOfFrame()
669 void SBThread::StepOutOfFrame(SBFrame &sb_frame, SBError &error) { in StepOutOfFrame() argument
671 (lldb::SBFrame &, lldb::SBError &), sb_frame, error); in StepOutOfFrame()
677 if (!sb_frame.IsValid()) { in StepOutOfFrame()
682 StackFrameSP frame_sp(sb_frame.GetFrameSP()); in StepOutOfFrame()
692 if (sb_frame.GetThread().GetThreadID() != thread->GetID()) { in StepOutOfFrame()
774 SBError SBThread::StepOverUntil(lldb::SBFrame &sb_frame, in StepOverUntil() argument
777 (lldb::SBFrame &, lldb::SBFileSpec &, uint32_t), sb_frame, in StepOverUntil()
[all …]
DSBExecutionContext.cpp126 SBFrame sb_frame; in GetFrame() local
130 sb_frame.SetFrameSP(frame_sp); in GetFrame()
132 return LLDB_RECORD_RESULT(sb_frame); in GetFrame()
DSBValue.cpp1071 SBFrame sb_frame; in GetFrame() local
1075 sb_frame.SetFrameSP(frame_sp); in GetFrame()
1078 return LLDB_RECORD_RESULT(sb_frame); in GetFrame()
/external/llvm-project/debuginfo-tests/dexter/dex/debugger/lldb/
DLLDB.py171 sb_frame = self._thread.GetFrameAtIndex(i)
172 sb_line = sb_frame.GetLineEntry()
181 function = self._sanitize_function_name(sb_frame.GetFunctionName())
191 function=function, is_inlined=sb_frame.IsInlined(), loc=loc)
/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
DPythonTestSuite.cpp76 const lldb::StackFrameSP &sb_frame, in LLDBSwigPythonBreakpointCallbackFunction() argument
90 const lldb::StackFrameSP &sb_frame, const lldb::WatchpointSP &sb_wp) { in LLDBSwigPythonWatchpointCallbackFunction() argument
/external/llvm-project/lldb/test/API/python_api/default-constructor/
DTestDefaultConstructorForAPIObjects.py170 import sb_frame
171 sb_frame.fuzz_obj(obj)
/external/llvm-project/lldb/bindings/python/
Dpython-wrapper.swig54 lldb::SBFrame sb_frame (frame_sp);
67 PythonObject frame_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_frame));
100 lldb::SBFrame sb_frame (frame_sp);
113 PythonObject frame_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_frame));
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp86 const lldb::StackFrameSP &sb_frame,
97 const lldb::StackFrameSP &sb_frame, const lldb::WatchpointSP &sb_wp);