Searched refs:stdin_termios (Results 1 – 1 of 1) sorted by relevance
252 struct termios stdin_termios; in OpenFile() local254 if (::tcgetattr(m_fd, &stdin_termios) == 0) { in OpenFile()255 stdin_termios.c_lflag &= ~ECHO; // Turn off echoing in OpenFile()256 stdin_termios.c_lflag &= ~ICANON; // Get one char at a time in OpenFile()257 ::tcsetattr(m_fd, TCSANOW, &stdin_termios); in OpenFile()