Lines Matching refs:tty
78 * tty stuff swiped from ksh
122 # define tcgetattr(fd,tty) ioctl(fd, TCGETS, tty)
124 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty)
155 # define tcgetattr(fd,tty) ioctl(fd, TCGETA, tty)
156 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty)
174 # define tcgetattr(fd,tty) ioctl(fd, TIOCGETP, tty)
175 # define tcsetattr(fd,action,tty) ioctl(fd, action, tty)
177 # define tcgetattr(fd,tty) gtty(fd, tty)
178 # define tcsetattr(fd,action,tty) stty(fd, tty)
237 struct termios tty;
244 tty = old;
245 tty.c_cc[VTIME] = 0;
246 tty.c_cc[VMIN] = 1;
247 tty.c_lflag &= ~(ICANON|ECHO|ECHOK|ISIG);
248 tcsetattr(rfd, TCSADRAIN, &tty);
283 struct termios tty;
291 tty = old;
292 tty.c_cc[VTIME] = 0;
293 tty.c_cc[VMIN] = 1;
294 tty.c_lflag &= ~(ICANON|ECHO|ECHOK|ISIG);
295 tcsetattr(rfd, TCSADRAIN, &tty);