Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Core/
H A DDebugger.cpp753 m_event_handler_thread(), m_io_handler_thread(), in Debugger()
1923 bool Debugger::HasIOHandlerThread() { return m_io_handler_thread.IsJoinable(); } in HasIOHandlerThread()
1926 if (!m_io_handler_thread.IsJoinable()) { in StartIOHandlerThread()
1931 m_io_handler_thread = *io_handler_thread; in StartIOHandlerThread()
1937 return m_io_handler_thread.IsJoinable(); in StartIOHandlerThread()
1941 if (m_io_handler_thread.IsJoinable()) { in StopIOHandlerThread()
1943 m_io_handler_thread.Join(nullptr); in StopIOHandlerThread()
1950 m_io_handler_thread.Join(&result); in JoinIOHandlerThread()
1951 m_io_handler_thread = LLDB_INVALID_HOST_THREAD; in JoinIOHandlerThread()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDebugger.h566 HostThread m_io_handler_thread; variable