/external/lldb/tools/debugserver/source/ |
TTYState.cpp | 21 m_tflags(-1), 37 m_tflags = fcntl (fd, F_GETFL, 0); 47 m_tflags = -1; 61 result = fcntl (m_fd, F_SETFL, m_tflags);
|
TTYState.h | 31 bool TFlagsValid() const { return m_tflags != -1; } 37 int m_tflags; member in class:TTYState
|
/external/lldb/source/Host/common/ |
Terminal.cpp | 110 m_tflags(-1), 127 m_tflags = -1; 143 m_tflags = ::fcntl (fd, F_GETFL, 0); 159 m_tflags = -1; 177 fcntl (fd, F_SETFL, m_tflags); 213 // Returns true if m_tflags is valid 218 return m_tflags != -1;
|
/external/lldb/include/lldb/Host/ |
Terminal.h | 145 /// Returns \b true if \a m_tflags is valid and can be restored, 175 int m_tflags; ///< Cached tflags information. member in class:lldb_private::TerminalState
|