Home
last modified time | relevance | path

Searched refs:m_tflags (Results 1 – 4 of 4) sorted by relevance

/llvm-project/lldb/tools/debugserver/source/
H A DTTYState.cpp19 : 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 DTTYState.h31 bool TFlagsValid() const { return m_tflags != -1; } in TFlagsValid()
37 int m_tflags; variable
/llvm-project/lldb/source/Host/common/
H A DTerminal.cpp412 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 DTerminal.h167 int m_tflags = -1; ///< Cached tflags information. variable