Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp396 if (auto handler_sp = m_io_handler_stack.Top()) in SetTerminalWidth()
418 if (auto handler_sp = m_io_handler_stack.Top()) in SetTerminalHeight()
977 m_io_handler_stack(), in Debugger()
1230 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in DispatchInputInterrupt()
1231 IOHandlerSP reader_sp(m_io_handler_stack.Top()); in DispatchInputInterrupt()
1237 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in DispatchInputEndOfFile()
1238 IOHandlerSP reader_sp(m_io_handler_stack.Top()); in DispatchInputEndOfFile()
1246 std::lock_guard<std::recursive_mutex> guard(m_io_handler_stack.GetMutex()); in ClearIOHandlers()
1247 while (m_io_handler_stack.GetSize() > 1) { in ClearIOHandlers()
1248 IOHandlerSP reader_sp(m_io_handler_stack.Top()); in ClearIOHandlers()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h749 IOHandlerStack m_io_handler_stack; variable