Searched refs:m_tflags (Results 1 – 4 of 4) sorted by relevance
/llvm-project/lldb/tools/debugserver/source/ |
H A D | TTYState.cpp | 19 : m_fd(-1), m_tflags(-1), m_ttystateErr(-1), m_processGroup(-1) {} in TTYState() 26 m_tflags = fcntl(fd, F_GETFL, 0); in GetTTYState() 34 m_tflags = -1; in GetTTYState() 44 fcntl(m_fd, F_SETFL, m_tflags); in SetTTYState()
|
H A D | TTYState.h | 31 bool TFlagsValid() const { return m_tflags != -1; } in TFlagsValid() 37 int m_tflags; variable
|
/llvm-project/lldb/source/Host/common/ |
H A D | Terminal.cpp | 412 m_tflags = -1; in Clear() 423 m_tflags = ::fcntl(fd, F_GETFL, 0); in Save() 441 fcntl(fd, F_SETFL, m_tflags); in Restore() 468 bool TerminalState::TFlagsIsValid() const { return m_tflags != -1; } in TFlagsIsValid()
|
/llvm-project/lldb/include/lldb/Host/ |
H A D | Terminal.h | 167 int m_tflags = -1; ///< Cached tflags information. variable
|