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.cpp979 m_loaded_plugins(), m_event_handler_thread(), m_io_handler_thread(), in Debugger()
2283 return m_io_handler_thread.IsJoinable(); in HasIOHandlerThread()
2287 HostThread old_host = m_io_handler_thread; in SetIOHandlerThread()
2288 m_io_handler_thread = new_thread; in SetIOHandlerThread()
2293 if (!m_io_handler_thread.IsJoinable()) { in StartIOHandlerThread()
2298 m_io_handler_thread = *io_handler_thread; in StartIOHandlerThread()
2304 return m_io_handler_thread.IsJoinable(); in StartIOHandlerThread()
2308 if (m_io_handler_thread.IsJoinable()) { in StopIOHandlerThread()
2310 m_io_handler_thread.Join(nullptr); in StopIOHandlerThread()
2317 m_io_handler_thread.Join(&result); in JoinIOHandlerThread()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h763 HostThread m_io_handler_thread; variable