Lines Matching refs:tio
71 struct termios tio; in enter_raw_mode() local
73 if (tcgetattr(fileno(stdin), &tio) == -1) { in enter_raw_mode()
78 _saved_tio = tio; in enter_raw_mode()
79 tio.c_iflag |= IGNPAR; in enter_raw_mode()
80 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF); in enter_raw_mode()
82 tio.c_iflag &= ~IUCLC; in enter_raw_mode()
84 tio.c_lflag &= ~(ISIG | ICANON | ECHO | ECHOE | ECHOK | ECHONL); in enter_raw_mode()
86 tio.c_lflag &= ~IEXTEN; in enter_raw_mode()
88 tio.c_oflag &= ~OPOST; in enter_raw_mode()
89 tio.c_cc[VMIN] = 1; in enter_raw_mode()
90 tio.c_cc[VTIME] = 0; in enter_raw_mode()
91 if (tcsetattr(fileno(stdin), TCSADRAIN, &tio) == -1) { in enter_raw_mode()