Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Process/Utility/
DHistoryThread.cpp34 m_unwinder_up = in HistoryThread()
60 return m_unwinder_up->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
/external/llvm-project/lldb/source/Plugins/Process/minidump/
DThreadMinidump.cpp111 } else if (m_unwinder_up) { in CreateRegisterContextForFrame()
112 reg_ctx_sp = m_unwinder_up->CreateRegisterContextForFrame(frame); in CreateRegisterContextForFrame()
/external/llvm-project/lldb/source/Target/
DThread.cpp235 m_unwinder_up(), m_destroy_called(false), in Thread()
258 m_unwinder_up.reset(); in DestroyThread()
524 if (m_unwinder_up) in RestoreRegisterStateFromCheckpoint()
525 m_unwinder_up->Clear(); in RestoreRegisterStateFromCheckpoint()
1871 if (!m_unwinder_up) in GetUnwinder()
1872 m_unwinder_up = std::make_unique<UnwindLLDB>(*this); in GetUnwinder()
1873 return *m_unwinder_up; in GetUnwinder()
/external/llvm-project/lldb/include/lldb/Target/
DThread.h1275 std::unique_ptr<lldb_private::Unwind> m_unwinder_up; variable