| /onnv/onnv-gate/usr/src/cmd/ttymon/ |
| tmautobaud.c | 83 struct termios termios; local 85 if (ioctl(fd, TCGETS, &termios) == -1) { 106 termios.c_iflag &= 0xffff0000; 107 termios.c_cflag &= ~(CSIZE|PARENB); 108 termios.c_cflag |= CREAD|HUPCL|(CS8&CSIZE); 109 termios.c_lflag &= ~(ISIG|ICANON|ECHO|ECHOE|ECHOK); 110 termios.c_oflag &= 0xffff0000; 112 termios.c_cc[VMIN] = 5; 113 termios.c_cc[VTIME] = 1 [all...] |
| tmterm.c | 74 struct termios termios; local 92 if ((term = get_ttymode(fd, &termio, &termios, &stermio, 101 termios.c_cc[VEOF] = CEOF; 102 termios.c_cc[VEOL] = CNUL; 105 termios.c_lflag &= ECHO; 106 termios.c_cc[VMIN] = 1; 107 termios.c_cc[VTIME] = 0; 121 if ((uarg = sttyparse(cnt, argvp, term, &termio, &termios, 129 if (set_ttymode(fd, term, &termio, &termios, &stermio, 228 struct termios termios; local [all...] |
| tmttydefs.c | 308 struct termios termios; local 330 term = ASYNC|TERMIOS|FLOW; 331 if ((s_arg = sttyparse(cnt, argvp, term, &termio, &termios,
|
| /onnv/onnv-gate/usr/src/cmd/bnu/ |
| setmode.c | 21 static struct termios termios_set; 22 static struct termios termios_clear; 343 struct termios termios; local 345 if ((*Ioctl)(fd, TCGETS, &termios) < 0) { 350 termios.c_iflag &= ~termios_clear.c_iflag; 351 termios.c_iflag |= termios_set.c_iflag; 352 termios.c_oflag &= ~termios_clear.c_oflag; 353 termios.c_oflag |= termios_set.c_oflag; 354 termios.c_cflag &= ~termios_clear.c_cflag [all...] |
| /onnv/onnv-gate/usr/src/lib/libast/amd64/include/ast/ |
| ast_tty.h | 26 #define _hdr_termios 1 /* #include <termios.h> ok */ 29 #define _sys_termios 1 /* #include <sys/termios.h> ok */ 40 # include <termios.h> 43 # include <sys/termios.h> 89 # define termios termio macro 105 # define termios sgttyb macro
|
| /onnv/onnv-gate/usr/src/lib/libast/amd64/src/lib/libast/ |
| ast_tty.h | 5 #define _hdr_termios 1 /* #include <termios.h> ok */ 8 #define _sys_termios 1 /* #include <sys/termios.h> ok */ 19 # include <termios.h> 22 # include <sys/termios.h> 68 # define termios termio macro 84 # define termios sgttyb macro
|
| /onnv/onnv-gate/usr/src/lib/libast/i386/include/ast/ |
| ast_tty.h | 26 #define _hdr_termios 1 /* #include <termios.h> ok */ 29 #define _sys_termios 1 /* #include <sys/termios.h> ok */ 40 # include <termios.h> 43 # include <sys/termios.h> 89 # define termios termio macro 105 # define termios sgttyb macro
|
| /onnv/onnv-gate/usr/src/lib/libast/i386/src/lib/libast/ |
| ast_tty.h | 5 #define _hdr_termios 1 /* #include <termios.h> ok */ 8 #define _sys_termios 1 /* #include <sys/termios.h> ok */ 19 # include <termios.h> 22 # include <sys/termios.h> 68 # define termios termio macro 84 # define termios sgttyb macro
|
| /onnv/onnv-gate/usr/src/lib/libast/sparc/include/ast/ |
| ast_tty.h | 26 #define _hdr_termios 1 /* #include <termios.h> ok */ 29 #define _sys_termios 1 /* #include <sys/termios.h> ok */ 40 # include <termios.h> 43 # include <sys/termios.h> 89 # define termios termio macro 105 # define termios sgttyb macro
|
| /onnv/onnv-gate/usr/src/lib/libast/sparc/src/lib/libast/ |
| ast_tty.h | 5 #define _hdr_termios 1 /* #include <termios.h> ok */ 8 #define _sys_termios 1 /* #include <sys/termios.h> ok */ 19 # include <termios.h> 22 # include <sys/termios.h> 68 # define termios termio macro 84 # define termios sgttyb macro
|
| /onnv/onnv-gate/usr/src/lib/libast/sparcv9/include/ast/ |
| ast_tty.h | 26 #define _hdr_termios 1 /* #include <termios.h> ok */ 29 #define _sys_termios 1 /* #include <sys/termios.h> ok */ 40 # include <termios.h> 43 # include <sys/termios.h> 89 # define termios termio macro 105 # define termios sgttyb macro
|
| /onnv/onnv-gate/usr/src/lib/libast/sparcv9/src/lib/libast/ |
| ast_tty.h | 5 #define _hdr_termios 1 /* #include <termios.h> ok */ 8 #define _sys_termios 1 /* #include <sys/termios.h> ok */ 19 # include <termios.h> 22 # include <sys/termios.h> 68 # define termios termio macro 84 # define termios sgttyb macro
|
| /onnv/onnv-gate/usr/src/lib/libshell/common/include/ |
| terminal.h | 29 * This will use POSIX <termios.h> interface where available 33 # include <termios.h> 48 # include <sys/termios.h> 80 # if SHOPT_OLDTERMIO /* use both termios and termio */ 104 # define termios termio macro 120 # define termios sgttyb macro 190 extern int tty_get(int,struct termios*); 193 extern int tty_set(int, int, struct termios*);
|
| /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postio/ |
| ifdef.c | 76 struct termios termios; local 113 if ( ioctl(ttyi, TCGETS, &termios) < 0 ) { 131 termios.c_iflag = IXON | IGNCR; 132 termios.c_oflag = 0; 133 termios.c_cflag = HUPCL | CREAD | CS8 | stopbits | 134 ((line != NULL) ? baudrate : cfgetospeed(&termios)); 135 termios.c_lflag = 0; 136 termios.c_cc[VMIN] = termios.c_cc[VTIME] = 0 [all...] |
| /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/common/ |
| ioctl.c | 43 #include <sys/termios.h> 606 struct termios *termios; local 608 termios = (struct termios *)arg; 610 if (termios != NULL) { 611 s5termios.c_iflag = termios->c_iflag; 612 s5termios.c_oflag = termios->c_oflag; 613 s5termios.c_cflag = termios->c_cflag; 614 s5termios.c_lflag = termios->c_lflag 629 struct termios *termios; local [all...] |
| /onnv/onnv-gate/usr/src/uts/common/sys/pcmcia/ |
| pcser_io.h | 122 struct termios termios; /* baud rates, parity, etc... */ member in struct:pcser_defaults_t
|
| /onnv/onnv-gate/usr/src/uts/common/brand/lx/os/ |
| lx_brand.c | 43 #include <sys/termios.h> 390 struct termios *termios; local 461 DDI_PROP_NOTPROM, "ttymodes", (uchar_t **)&termios, 465 ASSERT(termios_len == sizeof (*termios)); 467 if (copyout(&termios, (void *)arg1, sizeof (termios)) != 0) { 468 ddi_prop_free(termios); 472 ddi_prop_free(termios);
|
| /onnv/onnv-gate/usr/src/uts/common/io/ |
| consconfig_dacf.c | 106 #include <sys/termios.h> 155 static int consconfig_setmodes(dev_t dev, struct termios *termiosp); 1373 struct termios termios; local [all...] |
| /onnv/onnv-gate/usr/src/lib/libbc/inc/include/sys/ |
| termios.h | 231 #define TCGETS _IOR('T', 8, struct termios) 232 #define TCSETS _IOW('T', 9, struct termios) 233 #define TCSETSW _IOW('T', 10, struct termios) 234 #define TCSETSF _IOW('T', 11, struct termios) 251 struct termios { struct 262 speed_t cfgetispeed(/* struct termios *termios_p */); 263 speed_t cfgetospeed(/* struct termios *termios_p */); 264 int cfsetispeed(/* struct termios *termios_p, speed_t speed */); 265 int cfsetospeed(/* struct termios *termios_p, speed_t speed */); 269 int tcgetattr(/* int fildes, struct termios *termios_p */) [all...] |
| /onnv/onnv-gate/usr/src/lib/libbc/inc/include/ |
| termios.h | 231 #define TCGETS _IOR('T', 8, struct termios) 232 #define TCSETS _IOW('T', 9, struct termios) 233 #define TCSETSW _IOW('T', 10, struct termios) 234 #define TCSETSF _IOW('T', 11, struct termios) 251 struct termios { struct 262 speed_t cfgetispeed(/* struct termios *termios_p */); 263 speed_t cfgetospeed(/* struct termios *termios_p */); 264 int cfsetispeed(/* struct termios *termios_p, speed_t speed */); 265 int cfsetospeed(/* struct termios *termios_p, speed_t speed */); 269 int tcgetattr(/* int fildes, struct termios *termios_p */) [all...] |
| /onnv/onnv-gate/usr/src/grub/grub-0.97/grub/ |
| asmstub.c | 43 #include <termios.h> 1110 struct termios termios; local 1136 /* Get the termios parameters. */ 1137 if (tcgetattr (serial_fd, &termios)) 1142 termios.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON); 1143 termios.c_oflag &= ~OPOST; 1144 termios.c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN); 1145 termios.c_cflag &= ~(CSIZE|PARENB); 1146 termios.c_cflag |= CS8 [all...] |
| /onnv/onnv-gate/usr/src/cmd/luxadm/ |
| g_adm.c | 82 static struct termios termios; variable in typeref:struct:termios [all...] |
| /onnv/onnv-gate/usr/src/uts/common/sys/ |
| termios.h | 47 * _POSIX_VDISABLE has been defined in <sys/termios.h> since the 78 * the standard says that they have to be in termios.h. 87 struct termios { struct 96 * POSIX termios functions 104 extern speed_t cfgetospeed(const struct termios *); 105 extern int cfsetospeed(struct termios *, speed_t); 106 extern speed_t cfgetispeed(const struct termios *); 107 extern int cfsetispeed(struct termios *, speed_t); 108 extern int tcgetattr(int, struct termios *); 109 extern int tcsetattr(int, int, const struct termios *); [all...] |
| /onnv/onnv-gate/usr/src/cmd/truss/ |
| expound.c | 59 #include <sys/termios.h> 719 struct termios termios; local 723 if (Pread(Proc, &termios, sizeof (termios), offset) 724 == sizeof (termios)) { 728 termios.c_iflag, 729 termios.c_oflag, 730 termios.c_cflag, 731 termios.c_lflag) [all...] |