HomeSort by relevance Sort by last modified time
    Searched refs:m_ttystates (Results 1 - 4 of 4) sorted by null

  /external/lldb/tools/debugserver/source/
TTYState.h 53 uint32_t NumStates() const { return sizeof(m_ttystates)/sizeof(TTYState); }
58 TTYState m_ttystates[2]; member in class:TTYStateSwitcher
TTYState.cpp 96 return m_ttystates[idx].GetTTYState(fd, saveProcessGroup);
107 if (ValidStateIndex(m_currentState) && (idx == m_currentState) && m_ttystates[idx].IsValid())
112 if (m_ttystates[idx].SetTTYState())
  /external/lldb/include/lldb/Host/
Terminal.h 248 TerminalState m_ttystates[2]; ///< The array of TTY states that holds saved TTY info. member in class:lldb_private::TerminalStateSwitcher
  /external/lldb/source/Host/common/
Terminal.cpp 260 return sizeof(m_ttystates)/sizeof(TerminalState);
276 if (m_currentState < num_states && (idx == m_currentState) && m_ttystates[idx].IsValid())
281 if (m_ttystates[idx].Restore())
303 return m_ttystates[idx].Save(fd, save_process_group);

Completed in 3151 milliseconds