Home
last modified time | relevance | path

Searched refs:m_unwinder_up (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.cpp35 m_unwinder_up = in HistoryThread()
61 return m_unwinder_up->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DThreadMinidump.cpp111 } else if (m_unwinder_up) { in CreateRegisterContextForFrame()
112 reg_ctx_sp = m_unwinder_up->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp226 m_unwinder_up(), m_destroy_called(false), in Thread()
249 m_unwinder_up.reset(); in DestroyThread()
539 if (m_unwinder_up) in RestoreRegisterStateFromCheckpoint()
540 m_unwinder_up->Clear(); in RestoreRegisterStateFromCheckpoint()
1889 if (!m_unwinder_up) in GetUnwinder()
1890 m_unwinder_up = std::make_unique<UnwindLLDB>(*this); in GetUnwinder()
1891 return *m_unwinder_up; in GetUnwinder()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThread.h1341 std::unique_ptr<lldb_private::Unwind> m_unwinder_up; variable