Searched refs:ntty (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/usr.sbin/watch/
H A Dwatch.c108 struct termios ntty; local
110 ntty = otty;
111 ntty.c_lflag &= ~ICANON; /* disable canonical operation */
112 ntty.c_lflag &= ~ECHO;
114 ntty.c_lflag &= ~FLUSHO;
117 ntty.c_lflag &= ~PENDIN;
120 ntty.c_lflag &= ~IEXTEN;
122 ntty.c_cc[VMIN] = 1; /* minimum of one character */
123 ntty.c_cc[VTIME] = 0; /* timeout value */
125 ntty
[all...]
/freebsd-current/usr.bin/lock/
H A Dlock.c74 static struct termios tty, ntty; variable in typeref:struct:
147 ntty = tty; ntty.c_lflag &= ~ECHO;
148 (void)tcsetattr(0, TCSADRAIN|TCSASOFT, &ntty);
244 if (tcgetattr(0, &ntty) && (errno != EINTR))
/freebsd-current/usr.bin/morse/
H A Dmorse.c284 static struct termios otty, ntty; variable in typeref:struct:
372 ntty = otty;
373 ntty.c_cflag |= CLOCAL;
374 tcsetattr(line, TCSANOW, &ntty);

Completed in 63 milliseconds