Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBThreadPlan.h25 SBThreadPlan(const lldb::ThreadPlanSP &lldb_object_sp);
127 void SetThreadPlan(const lldb::ThreadPlanSP &lldb_object_sp);
H A DSBFrame.h187 SBFrame(const lldb::StackFrameSP &lldb_object_sp);
198 void SetFrameSP(const lldb::StackFrameSP &lldb_object_sp);
H A DSBThread.h36 SBThread(const lldb::ThreadSP &lldb_object_sp);
225 void SetThread(const lldb::ThreadSP &lldb_object_sp);
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBThreadPlan.cpp55 SBThreadPlan::SBThreadPlan(const ThreadPlanSP &lldb_object_sp) in SBThreadPlan() argument
56 : m_opaque_wp(lldb_object_sp) { in SBThreadPlan()
58 lldb_object_sp); in SBThreadPlan()
H A DSBThread.cpp65 SBThread::SBThread(const ThreadSP &lldb_object_sp) in SBThread() argument
66 : m_opaque_sp(new ExecutionContextRef(lldb_object_sp)) { in SBThread()
67 LLDB_RECORD_CONSTRUCTOR(SBThread, (const lldb::ThreadSP &), lldb_object_sp); in SBThread()
379 void SBThread::SetThread(const ThreadSP &lldb_object_sp) { in SetThread() argument
380 m_opaque_sp->SetThreadSP(lldb_object_sp); in SetThread()
H A DSBFrame.cpp61 SBFrame::SBFrame(const StackFrameSP &lldb_object_sp) in SBFrame() argument
62 : m_opaque_sp(new ExecutionContextRef(lldb_object_sp)) { in SBFrame()
64 lldb_object_sp); in SBFrame()
88 void SBFrame::SetFrameSP(const StackFrameSP &lldb_object_sp) { in SetFrameSP() argument
89 return m_opaque_sp->SetFrameSP(lldb_object_sp); in SetFrameSP()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBThreadPlan.i34 SBThreadPlan (const lldb::ThreadPlanSP& lldb_object_sp);