Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp695 m_event_handler_thread(), m_io_handler_thread(), in Debugger()
1623 bool Debugger::HasIOHandlerThread() { return m_io_handler_thread.IsJoinable(); } in HasIOHandlerThread()
1626 if (!m_io_handler_thread.IsJoinable()) { in StartIOHandlerThread()
1631 m_io_handler_thread = *io_handler_thread; in StartIOHandlerThread()
1638 return m_io_handler_thread.IsJoinable(); in StartIOHandlerThread()
1642 if (m_io_handler_thread.IsJoinable()) { in StopIOHandlerThread()
1644 m_io_handler_thread.Join(nullptr); in StopIOHandlerThread()
1651 m_io_handler_thread.Join(&result); in JoinIOHandlerThread()
1652 m_io_handler_thread = LLDB_INVALID_HOST_THREAD; in JoinIOHandlerThread()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h512 HostThread m_io_handler_thread; variable