Lines Matching refs:nTty
755 struct termios nTty;
759 nTty = priv->kbdtty;
760 nTty.c_iflag = (IGNPAR | IGNBRK) & (~PARMRK) & (~ISTRIP);
761 nTty.c_oflag = 0;
762 nTty.c_cflag = CREAD | CS8;
763 nTty.c_lflag = 0;
764 nTty.c_cc[VTIME] = 0;
765 nTty.c_cc[VMIN] = 1;
766 cfsetispeed(&nTty, B9600);
767 cfsetospeed(&nTty, B9600);
768 if (tcsetattr(priv->fd, TCSANOW, &nTty) < 0)