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

/freebsd-9.3-release/usr.sbin/watch/
H A Dwatch.c111 struct termios ntty; local
113 ntty = otty;
114 ntty.c_lflag &= ~ICANON; /* disable canonical operation */
115 ntty.c_lflag &= ~ECHO;
117 ntty.c_lflag &= ~FLUSHO;
120 ntty.c_lflag &= ~PENDIN;
123 ntty.c_lflag &= ~IEXTEN;
125 ntty.c_cc[VMIN] = 1; /* minimum of one character */
126 ntty.c_cc[VTIME] = 0; /* timeout value */
128 ntty
[all...]
/freebsd-9.3-release/usr.bin/lock/
H A Dlock.c82 struct termios tty, ntty; variable in typeref:struct:
153 ntty = tty; ntty.c_lflag &= ~ECHO;
154 (void)tcsetattr(0, TCSADRAIN|TCSASOFT, &ntty);
238 if (tcgetattr(0, &ntty) && (errno != EINTR))
/freebsd-9.3-release/games/morse/
H A Dmorse.c291 static struct termios otty, ntty; variable in typeref:struct:
379 ntty = otty;
380 ntty.c_cflag |= CLOCAL;
381 tcsetattr(line, TCSANOW, &ntty);

Completed in 104 milliseconds