Home
last modified time | relevance | path

Searched refs:m_io_handler_thread (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp859 m_loaded_plugins(), m_event_handler_thread(), m_io_handler_thread(), in Debugger()
2137 return m_io_handler_thread.IsJoinable(); in HasIOHandlerThread()
2141 HostThread old_host = m_io_handler_thread; in SetIOHandlerThread()
2142 m_io_handler_thread = new_thread; in SetIOHandlerThread()
2147 if (!m_io_handler_thread.IsJoinable()) { in StartIOHandlerThread()
2152 m_io_handler_thread = *io_handler_thread; in StartIOHandlerThread()
2158 return m_io_handler_thread.IsJoinable(); in StartIOHandlerThread()
2162 if (m_io_handler_thread.IsJoinable()) { in StopIOHandlerThread()
2164 m_io_handler_thread.Join(nullptr); in StopIOHandlerThread()
2171 m_io_handler_thread.Join(&result); in JoinIOHandlerThread()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h732 HostThread m_io_handler_thread; variable