Searched refs:tty (Results 1 – 1 of 1) sorted by relevance
233 struct termios tty; in set_tty_attr() local235 if (tcgetattr(fd, &tty) < 0) { in set_tty_attr()239 cfsetospeed(&tty, (speed_t)speed); in set_tty_attr()240 cfsetispeed(&tty, (speed_t)speed); in set_tty_attr()243 tty.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | in set_tty_attr()246 tty.c_oflag &= ~OPOST; in set_tty_attr()249 tty.c_cflag |= (CLOCAL | CREAD | CS8); in set_tty_attr()250 tty.c_cflag &= ~(CSIZE | PARENB | CSTOPB | CRTSCTS); in set_tty_attr()256 tty.c_cc[VMIN] = 1; in set_tty_attr()257 tty.c_cc[VTIME] = 1; in set_tty_attr()[all …]
Completed in 4 milliseconds