Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Host/common/
DTerminal.cpp88 m_termios_up(), in TerminalState()
100 m_termios_up.reset(); in Clear()
115 if (m_termios_up == nullptr) in Save()
116 m_termios_up.reset(new struct termios); in Save()
117 int err = ::tcgetattr(fd, m_termios_up.get()); in Save()
119 m_termios_up.reset(); in Save()
131 m_termios_up.reset(); in Save()
149 tcsetattr(fd, TCSANOW, m_termios_up.get()); in Restore()
180 return m_termios_up != nullptr; in TTYStateIsValid()
/external/llvm-project/lldb/include/lldb/Host/
DTerminal.h122 m_termios_up; ///< Cached terminal state information. variable