| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBFrame.cpp | 57 SBFrame::SBFrame() : m_opaque_sp(new ExecutionContextRef()) {} in SBFrame() function in SBFrame 59 SBFrame::SBFrame(const StackFrameSP &lldb_object_sp) in SBFrame() function in SBFrame 72 SBFrame::SBFrame(const SBFrame &rhs) in SBFrame() function in SBFrame 75 SBFrame::~SBFrame() = default; 77 const SBFrame &SBFrame::operator=(const SBFrame &rhs) { in operator =() 91 bool SBFrame::IsValid() const { in IsValid() 404 addr_t SBFrame::GetPC() const { in GetPC() 839 bool SBFrame::IsEqual(const SBFrame &that) const { in IsEqual() 845 bool SBFrame::operator==(const SBFrame &rhs) const { return IsEqual(rhs); } in operator ==() 847 bool SBFrame::operator!=(const SBFrame &rhs) const { return !IsEqual(rhs); } in operator !=() [all …]
|
| H A D | SBExecutionContext.cpp | 47 SBExecutionContext::SBExecutionContext(const lldb::SBFrame &frame) in SBExecutionContext() 94 SBFrame SBExecutionContext::GetFrame() const { in GetFrame() 95 SBFrame sb_frame; in GetFrame()
|
| H A D | SBThread.cpp | 779 void SBThread::StepOutOfFrame(SBFrame &sb_frame) { in StepOutOfFrame() 784 void SBThread::StepOutOfFrame(SBFrame &sb_frame, SBError &error) { in StepOutOfFrame() 904 SBError SBThread::StepOverUntil(lldb::SBFrame &sb_frame, in StepOverUntil() 1097 SBError SBThread::ReturnFromFrame(SBFrame &frame, SBValue &return_value) { in ReturnFromFrame() 1269 SBFrame SBThread::GetFrameAtIndex(uint32_t idx) { in GetFrameAtIndex() 1272 SBFrame sb_frame; in GetFrameAtIndex() 1301 lldb::SBFrame SBThread::GetSelectedFrame() { in GetSelectedFrame() 1304 SBFrame sb_frame; in GetSelectedFrame() 1333 lldb::SBFrame SBThread::SetSelectedFrame(uint32_t idx) { in SetSelectedFrame() 1336 SBFrame sb_frame; in SetSelectedFrame() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBFrame.h | 18 class LLDB_API SBFrame { 20 SBFrame(); 22 SBFrame(const lldb::SBFrame &rhs); 24 const lldb::SBFrame &operator=(const lldb::SBFrame &rhs); 26 ~SBFrame(); 28 bool IsEqual(const lldb::SBFrame &that) const; 133 bool operator==(const lldb::SBFrame &rhs) const; 135 bool operator!=(const lldb::SBFrame &rhs) const; 186 SBFrame(const lldb::StackFrameSP &lldb_object_sp);
|
| H A D | SBThread.h | 19 class SBFrame; variable 110 void StepOutOfFrame(SBFrame &frame); 112 void StepOutOfFrame(SBFrame &frame, SBError &error); 118 SBError StepOverUntil(lldb::SBFrame &frame, lldb::SBFileSpec &file_spec, 132 SBError ReturnFromFrame(SBFrame &frame, SBValue &return_value); 171 lldb::SBFrame GetFrameAtIndex(uint32_t idx); 173 lldb::SBFrame GetSelectedFrame(); 175 lldb::SBFrame SetSelectedFrame(uint32_t frame_idx); 179 static SBFrame GetStackFrameFromEvent(const SBEvent &event); 219 friend class SBFrame; variable
|
| H A D | SBExecutionContext.h | 39 SBExecutionContext(const lldb::SBFrame &frame); 51 SBFrame GetFrame() const;
|
| H A D | SBBlock.h | 56 lldb::SBValueList GetVariables(lldb::SBFrame &frame, bool arguments, 78 friend class SBFrame; variable
|
| H A D | SBValue.h | 292 lldb::SBFrame GetFrame(); 390 friend class SBFrame; variable
|
| H A D | SBValueList.h | 51 friend class SBFrame;
|
| H A D | SBSymbol.h | 76 friend class SBFrame; variable
|
| H A D | SBLineEntry.h | 59 friend class SBFrame; variable
|
| H A D | SBFunction.h | 71 friend class SBFrame; variable
|
| H A D | SBInstruction.h | 59 bool EmulateWithFrame(lldb::SBFrame &frame, uint32_t evaluate_options);
|
| H A D | SBExpressionOptions.h | 108 friend class SBFrame; variable
|
| H A D | SBCompileUnit.h | 77 friend class SBFrame; variable
|
| H A D | SBSymbolContext.h | 58 friend class SBFrame; variable
|
| H A D | SBStream.h | 64 friend class SBFrame; variable
|
| H A D | SBThreadPlan.h | 112 friend class SBFrame; variable
|
| H A D | SBAddress.h | 87 friend class SBFrame; variable
|
| H A D | SBModule.h | 316 friend class SBFrame; variable
|
| H A D | SBDefines.h | 51 class LLDB_API SBFrame; variable
|
| /freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/ |
| H A D | MICmnLLDBDebugSessionInfo.cpp | 429 const lldb::SBFrame &vrFrame, const MIuint vMaskVarTypes, in MIResponseFormVariableInfo() 434 lldb::SBFrame &rFrame = const_cast<lldb::SBFrame &>(vrFrame); in MIResponseFormVariableInfo() 559 lldb::SBFrame frame = rThread.GetFrameAtIndex(vnLevel); in MIResponseFormFrameInfo() 626 const lldb::SBFrame &vrFrame, lldb::addr_t &vwPc, CMIUtilString &vwFnName, in GetFrameInfo() 628 lldb::SBFrame &rFrame = const_cast<lldb::SBFrame &>(vrFrame); in GetFrameInfo()
|
| H A D | MICmnLLDBDebugSessionInfo.h | 165 bool MIResponseFormVariableInfo(const lldb::SBFrame &vrFrame, 217 bool GetFrameInfo(const lldb::SBFrame &vrFrame, lldb::addr_t &vwPc,
|
| H A D | MICmdCmdStack.cpp | 582 lldb::SBFrame frame = thread.GetFrameAtIndex(i); in Execute() 758 lldb::SBFrame frame = (nFrame != UINT64_MAX) ? thread.GetFrameAtIndex(nFrame) in Execute() 929 lldb::SBFrame frame = (nFrame != UINT64_MAX) ? thread.GetFrameAtIndex(nFrame) in Execute() 1063 lldb::SBFrame sbFrame = sbThread.SetSelectedFrame(nFrameId); in Execute()
|
| H A D | MICmdCmdData.cpp | 125 lldb::SBFrame frame = thread.GetSelectedFrame(); in Execute() 604 lldb::SBFrame frame = (nFrame != UINT64_MAX) ? thread.GetFrameAtIndex(nFrame) in Execute() 908 lldb::SBFrame frame = thread.GetSelectedFrame(); in Execute() 977 lldb::SBFrame frame = thread.GetSelectedFrame(); in GetRegister() 1113 lldb::SBFrame frame = thread.GetSelectedFrame(); in Execute() 1184 lldb::SBFrame frame = thread.GetSelectedFrame(); in GetRegister()
|