Home
last modified time | relevance | path

Searched refs:ReturnFromFrame (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/tail_call_frames/thread_step_out_or_return/
H A DTestSteppingOutWithArtificialFrames.py81 thread.ReturnFromFrame(thread.GetSelectedFrame(), value)
87 thread.ReturnFromFrame(thread.GetSelectedFrame(), value)
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBThread.i277 present only scalar return values are supported.") ReturnFromFrame;
280 ReturnFromFrame (SBFrame &frame, SBValue &return_value);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBThread.h138 SBError ReturnFromFrame(SBFrame &frame, SBValue &return_value);
/llvm-project-15.0.7/lldb/source/API/
H A DSBThread.cpp961 SBError SBThread::ReturnFromFrame(SBFrame &frame, SBValue &return_value) { in ReturnFromFrame() function in SBThread
972 thread->ReturnFromFrame(frame.GetFrameSP(), return_value.GetSP())); in ReturnFromFrame()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DThread.h417 Status ReturnFromFrame(lldb::StackFrameSP frame_sp,
/llvm-project-15.0.7/lldb/source/Target/
H A DThread.cpp1445 return ReturnFromFrame(frame_sp, return_value_sp, broadcast); in ReturnFromFrameWithIndex()
1448 Status Thread::ReturnFromFrame(lldb::StackFrameSP frame_sp, in ReturnFromFrame() function in Thread
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectThread.cpp1575 error = thread_sp->ReturnFromFrame(frame_sp, return_valobj_sp, broadcast); in DoExecute()