/src/games/hack/ |
hack.ioctl.c | 74 #include <termios.h> 77 static struct termios termios; variable in typeref:struct:termios 82 (void) tcgetattr(fileno(stdin), &termios); 88 (void) tcsetattr(fileno(stdin), TCSADRAIN, &termios);
|
/src/lib/libterminfo/ |
curterm.c | 38 #include <termios.h> 62 struct termios termios; local in function:_ti_setospeed 69 if (tcgetattr(term->fildes, &termios) == 0) { 70 os = cfgetospeed(&termios);
|
/src/sys/arch/zaurus/stand/zboot/ |
unixcons.c | 33 #include "termios.h" 51 struct linux_termios termios; local in function:consinit 86 linux_tcgetattr(fd, &termios); 87 if (linux_cfsetspeed(&termios, speed) < 0) { 89 if (linux_cfsetspeed(&termios, speed) < 0) 92 if (linux_tcsetattr(fd, LINUX_TCSETS, &termios) < 0)
|
/src/sys/sys/ |
termios.h | 1 /* $NetBSD: termios.h,v 1.36 2018/12/07 19:01:11 jakllsch Exp $ */ 31 * @(#)termios.h 8.3 (Berkeley) 3/28/94 192 struct termios { struct 203 * Commands passed to tcsetattr() for setting the termios structure. 272 speed_t cfgetispeed(const struct termios *); 273 speed_t cfgetospeed(const struct termios *); 274 int cfsetispeed(struct termios *, speed_t); 275 int cfsetospeed(struct termios *, speed_t); 276 int tcgetattr(int, struct termios *); 277 int tcsetattr(int, int, const struct termios *); [all...] |
/src/usr.sbin/tprof/ |
tprof_top.c | 53 #include <termios.h> 94 static struct termios termios_save; 223 struct termios termios; local in function:tty_setup 235 termios = termios_save; 236 termios.c_iflag |= BRKINT|IXON|IMAXBEL; 237 termios.c_oflag |= OPOST; 238 termios.c_lflag |= ISIG|IEXTEN; 239 termios.c_lflag &= ~(ICANON|ECHO); 240 tcsetattr(STDOUT_FILENO, TCSADRAIN, &termios); [all...] |