HomeSort by relevance Sort by last modified time
    Searched defs:termio (Results 1 - 15 of 15) sorted by null

  /onnv/onnv-gate/usr/src/cmd/ttymon/
tmautobaud.c 37 #include <termio.h>
75 * auto_termio - set termio to allow autobaud
82 struct termio termio; local
86 if (ioctl(fd, TCGETA, &termio) == -1) {
91 termio.c_iflag = 0;
92 termio.c_cflag &= ~(CBAUD|CSIZE|PARENB);
93 termio.c_cflag |= CREAD|HUPCL|(CS8&CSIZE)|(B2400&CBAUD);
94 termio.c_lflag &= ~(ISIG|ICANON|ECHO|ECHOE|ECHOK);
95 termio.c_oflag = 0
    [all...]
tmterm.c 37 #include <termio.h>
53 * set_termio - set termio on device
55 * options - stty termio options
73 struct termio termio; local
92 if ((term = get_ttymode(fd, &termio, &termios, &stermio,
121 if ((uarg = sttyparse(cnt, argvp, term, &termio, &termios,
129 if (set_ttymode(fd, term, &termio, &termios, &stermio,
146 struct termio termio; local
227 struct termio termio; local
    [all...]
tmttydefs.c 40 #include <termio.h>
307 struct termio termio; local
331 if ((s_arg = sttyparse(cnt, argvp, term, &termio, &termios,
  /onnv/onnv-gate/usr/src/lib/libbc/inc/include/sys/
termio.h 45 struct termio { struct
54 #define TCGETA _IOR('T', 1, struct termio)
55 #define TCSETA _IOW('T', 2, struct termio)
56 #define TCSETAW _IOW('T', 3, struct termio)
57 #define TCSETAF _IOW('T', 4, struct termio)
  /onnv/onnv-gate/usr/src/lib/libbc/inc/include/
termio.h 45 struct termio { struct
54 #define TCGETA _IOR('T', 1, struct termio)
55 #define TCSETA _IOW('T', 2, struct termio)
56 #define TCSETAW _IOW('T', 3, struct termio)
57 #define TCSETAF _IOW('T', 4, struct termio)
  /onnv/onnv-gate/usr/src/cmd/lp/filter/postscript/postio/
ifdef.c 75 struct termio termio; local
114 if ( ioctl(ttyi, TCGETA, &termio) == -1 ) {
119 termio.c_iflag = IXON | IGNCR;
120 termio.c_oflag = 0;
121 termio.c_cflag = HUPCL | CREAD | CS8 | stopbits |
122 ((line != NULL) ? baudrate : (termio.c_cflag & CBAUD));
123 termio.c_lflag = 0;
124 termio.c_cc[VMIN] = termio.c_cc[VTIME] = 0
163 struct termio termio; \/* so we can reset flow control *\/ local
208 struct termio termio; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/sys/
termio.h 42 struct termio { struct
  /onnv/onnv-gate/usr/src/cmd/bnu/
ct.c 147 struct termio termio; local
345 (void) ioctl (0, TCGETA, &termio);
346 termio.c_cflag = 0; /* speed to zero for hangup */
347 (void) ioctl (0, TCSETAW, &termio); /* hang up terminal */
496 struct termio termio; local
505 (void) ioctl (fileno(_Fdl), TCGETA, &termio); local
506 termio.c_cflag = 0; /* speed to zero for hangup */
507 (void) ioctl (fileno(_Fdl), TCSETAW, &termio); /* hang up terminal * local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/streams/strcmd/
strchg.c 64 #include <sys/termio.h>
128 struct termio termio; /* save state of tty */ local
273 if (ioctl(STDIN, TCGETA, &termio) >= 0)
380 ioctl(STDIN, TCSETA, &termio) < 0) {
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
externs.h 56 #define termio termios macro
352 extern struct termio new_tc;
  /onnv/onnv-gate/usr/src/cmd/vi/port/
ex_put.c 1184 static struct termio termio; variable in typeref:struct:termio
1194 if(ioctl(i, TCGETA, &termio) < 0)
1196 tty.c_iflag = termio.c_iflag;
1197 tty.c_oflag = termio.c_oflag;
1198 tty.c_cflag = termio.c_cflag;
1199 tty.c_lflag = termio.c_lflag;
1201 tty.c_cc[i] = termio.c_cc[i];
1207 if(ioctl(i, TCGETA, &termio) < 0)
1209 tty.c_iflag = termio.c_iflag
    [all...]
exrecover.c 274 struct termio termio; local
280 ioctl(2, TCGETA, &termio);
281 if (termio.c_lflag & ICANON)
838 struct termio ttyb;
  /onnv/onnv-gate/usr/src/lib/efcode/engine/
interactive.c 395 #include <sys/termio.h>
504 struct termio termio, savetermio; local
513 ioctl(fileno(stdin), TCGETA, &termio); local
514 savetermio = termio;
515 termio.c_lflag &= ~(ICANON|ECHO|ECHOE|IEXTEN);
516 termio.c_cc[VTIME] = 0;
517 termio.c_cc[VMIN] = 1;
518 ioctl(fileno(stdin), TCSETA, &termio); local
  /onnv/onnv-gate/usr/src/cmd/format/
io.c 38 #include <sys/termio.h>
2431 struct termio termio; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/truss/
expound.c 61 #include <sys/termio.h>
695 struct termio termio; local
699 if (Pread(Proc, &termio, sizeof (termio), offset) == sizeof (termio)) {
703 termio.c_iflag,
704 termio.c_oflag,
705 termio.c_cflag,
706 termio.c_lflag
    [all...]

Completed in 2160 milliseconds