Lines Matching defs:termios
53 #include <termios.h>
94 static struct termios termios_save;
223 struct termios termios;
235 termios = termios_save;
236 termios.c_iflag |= BRKINT|IXON|IMAXBEL;
237 termios.c_oflag |= OPOST;
238 termios.c_lflag |= ISIG|IEXTEN;
239 termios.c_lflag &= ~(ICANON|ECHO);
240 tcsetattr(STDOUT_FILENO, TCSADRAIN, &termios);