Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Core/
H A DDebugger.cpp358 if (auto handler_sp = m_io_handler_stack.Top()) in SetTerminalWidth()
772 m_io_handler_stack(), m_instance_name(), m_loaded_plugins(), in Debugger()
976 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in DispatchInputInterrupt()
977 IOHandlerSP reader_sp(m_io_handler_stack.Top()); in DispatchInputInterrupt()
983 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in DispatchInputEndOfFile()
984 IOHandlerSP reader_sp(m_io_handler_stack.Top()); in DispatchInputEndOfFile()
992 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in ClearIOHandlers()
993 while (m_io_handler_stack.GetSize() > 1) { in ClearIOHandlers()
994 IOHandlerSP reader_sp(m_io_handler_stack.Top()); in ClearIOHandlers()
1001 IOHandlerSP reader_sp = m_io_handler_stack.Top(); in RunIOHandlers()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DDebugger.h574 IOHandlerStack m_io_handler_stack; variable