Home | History | Annotate | Download | only in src

Lines Matching refs:tty_state

439   if (tcgetattr(tty_fd, &tty_state)) {
444 if (cfsetospeed(&tty_state, B115200) ||
445 cfsetispeed(&tty_state, B115200)) {
450 tty_state.c_cc[VMIN] = 0;
451 tty_state.c_cc[VTIME] = 0;
453 tty_state.c_iflag = tty_state.c_iflag & ~(IXON | ISTRIP | INPCK | PARMRK |
455 tty_state.c_iflag = 0;
456 tty_state.c_oflag = 0;
457 tty_state.c_lflag = tty_state.c_lflag & ~(ECHO | ECHONL | ICANON | IEXTEN |
459 tty_state.c_cflag = (tty_state.c_cflag & ~(CSIZE | PARENB)) | CS8;
461 if (tcsetattr(tty_fd, TCSAFLUSH, &tty_state)) {