Symbol: termios
bin/mined/mined1.c
1160
static struct termios old_tty;
bin/mined/mined1.c
1161
static struct termios new_tty;
bin/stty/extern.h
37
void gprint (struct termios *, struct winsize *, int);
bin/stty/extern.h
38
void gread (struct termios *, char *);
bin/stty/extern.h
42
void print (struct termios *, struct winsize *, int, enum FMT);
bin/stty/gfmt.c
55
gprint(struct termios *tp, struct winsize *wp __unused, int ldisc __unused)
bin/stty/gfmt.c
69
gread(struct termios *tp, char *s)
bin/stty/print.c
47
print(struct termios *tp, struct winsize *wp, int ldisc, enum FMT fmt)
bin/stty/stty.h
44
struct termios t; /* terminal info */
crypto/libressl/crypto/ui/ui_openssl.c
137
static struct termios tty_orig;
crypto/libressl/crypto/ui/ui_openssl.c
328
struct termios tty_new = tty_orig;
crypto/openssh/channels.c
2190
struct termios tio;
crypto/openssh/clientloop.c
2680
const char *term, struct termios *tiop, int in_fd, struct sshbuf *cmd,
crypto/openssh/clientloop.h
47
const char *, struct termios *, int, struct sshbuf *, char **);
crypto/openssh/mux.c
88
struct termios tio;
crypto/openssh/packet.h
150
void ssh_tty_make_modes(struct ssh *, int, struct termios *);
crypto/openssh/sshpty.h
19
struct termios *get_saved_tio(void);
crypto/openssh/sshtty.c
47
static struct termios _saved_tio;
crypto/openssh/sshtty.c
50
struct termios *
crypto/openssh/sshtty.c
71
struct termios tio;
crypto/openssh/ttymodes.c
279
ssh_tty_make_modes(struct ssh *ssh, int fd, struct termios *tiop)
crypto/openssh/ttymodes.c
281
struct termios tio;
crypto/openssh/ttymodes.c
345
struct termios tio;
games/atc/extern.c
60
struct termios tty_start, tty_new;
games/atc/extern.h
55
extern struct termios tty_start, tty_new;
games/backgammon/common_source/back.h
129
extern struct termios old, noech, raw;/* original tty status */
games/backgammon/common_source/back.h
149
void fixtty(struct termios *);
games/backgammon/common_source/init.c
87
struct termios old, noech, raw;
games/backgammon/common_source/subs.c
405
fixtty(struct termios *t)
games/hack/hack.ioctl.c
72
static struct termios termios;
games/hack/hack.ioctl.c
77
(void) tcgetattr(fileno(stdin), &termios);
games/hack/hack.ioctl.c
83
(void) tcsetattr(fileno(stdin), TCSADRAIN, &termios);
games/hack/hack.tty.c
115
static struct termios inittyb, curttyb;
games/hunt/hunt/display.c
24
static struct termios saved_tty;
games/larn/io.c
69
static struct termios ttx; /* storage for the tty modes */
games/morse/morse.c
304
struct termios otty, ntty;
games/tetris/screen.c
242
struct termios newtt;
games/tetris/screen.c
59
static struct termios oldtt;
include/termios.h
65
speed_t cfgetispeed(const struct termios *);
include/termios.h
66
speed_t cfgetospeed(const struct termios *);
include/termios.h
67
int cfsetispeed(struct termios *, speed_t);
include/termios.h
68
int cfsetospeed(struct termios *, speed_t);
include/termios.h
69
int tcgetattr(int, struct termios *);
include/termios.h
70
int tcsetattr(int, int, const struct termios *);
include/termios.h
81
void cfmakeraw(struct termios *);
include/termios.h
82
void cfmakesane(struct termios *);
include/termios.h
83
int cfsetspeed(struct termios *, speed_t);
lib/libc/gen/isatty.c
42
struct termios t;
lib/libc/gen/readpassphrase.c
48
struct termios term, oterm;
lib/libc/gen/termios.c
125
cfgetospeed(const struct termios *t)
lib/libc/gen/termios.c
132
cfgetispeed(const struct termios *t)
lib/libc/gen/termios.c
139
cfsetospeed(struct termios *t, speed_t speed)
lib/libc/gen/termios.c
147
cfsetispeed(struct termios *t, speed_t speed)
lib/libc/gen/termios.c
155
cfsetspeed(struct termios *t, speed_t speed)
lib/libc/gen/termios.c
167
cfmakeraw(struct termios *t)
lib/libc/gen/termios.c
185
cfmakesane(struct termios *t)
lib/libc/gen/termios.c
246
struct termios term;
lib/libc/gen/termios.c
52
tcgetattr(int fd, struct termios *t)
lib/libc/gen/termios.c
59
tcsetattr(int fd, int opt, const struct termios *t)
lib/libc/gen/termios.c
61
struct termios localterm;
lib/libssh/openbsd-compat/bsd-nextstep.h
49
int tcgetattr(int, struct termios *);
lib/libssh/openbsd-compat/bsd-nextstep.h
50
int tcsetattr(int, int, const struct termios *);
lib/libssh/openbsd-compat/bsd-nextstep.h
52
speed_t cfgetospeed(const struct termios *);
lib/libssh/openbsd-compat/bsd-nextstep.h
53
speed_t cfgetispeed(const struct termios *);
lib/libssh/openbsd-compat/bsd-nextstep.h
54
int cfsetospeed(struct termios *, int);
lib/libssh/openbsd-compat/bsd-nextstep.h
55
int cfsetispeed(struct termios *, int);
lib/libssh/openbsd-compat/openbsd-compat.h
229
int openpty(int *, int *, char *, struct termios *, struct winsize *);
lib/libtcplay/io.c
384
static struct termios termios_old;
lib/libtcplay/io.c
396
struct termios termios_new;
lib/libutil/libutil.h
63
struct termios;
lib/libutil/libutil.h
76
struct termios *_termp, struct winsize *_winp);
lib/libutil/libutil.h
90
struct termios *_termp, struct winsize *_winp);
lib/libutil/pty.c
47
openpty(int *amaster, int *aslave, char *name, struct termios *termp,
lib/libutil/pty.c
88
forkpty(int *amaster, char *name, struct termios *termp, struct winsize *winp)
lib/libvgl/keyboard.c
40
static struct termios VGLKeyboardTty;
lib/libvgl/keyboard.c
46
static struct termios term;
libexec/comsat/comsat.c
153
struct termios tio;
libexec/getty/extern.h
36
struct termios;
libexec/getty/extern.h
41
extern struct termios tmode, omode;
libexec/getty/main.c
444
struct termios def;
libexec/getty/main.c
81
struct termios omode;
libexec/getty/main.c
83
struct termios tmode;
libexec/telnetd/sys_term.c
116
struct termios termbuf, termbuf2; /* pty control structure */
sbin/slattach/slattach.c
87
struct termios tty; /* tty configuration/state */
sbin/startslip/startslip.c
116
struct termios t;
sys/bus/u4b/serial/uark.c
108
static int uark_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uark.c
109
static void uark_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uark.c
341
uark_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uark.c
349
uark_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ubsa.c
176
static int ubsa_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ubsa.c
177
static void ubsa_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ubsa.c
398
ubsa_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ubsa.c
424
ubsa_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ubser.c
144
static int ubser_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ubser.c
316
ubser_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uchcom.c
200
static int uchcom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uchcom.c
204
static void uchcom_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uchcom.c
634
uchcom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uchcom.c
652
uchcom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ucycom.c
118
static int ucycom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ucycom.c
119
static void ucycom_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ucycom.c
447
ucycom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ucycom.c
475
ucycom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ufoma.c
213
static int ufoma_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ufoma.c
214
static void ufoma_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/ufoma.c
942
ufoma_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/ufoma.c
948
ufoma_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uftdi.c
134
static int uftdi_set_parm_soft(struct termios *,
sys/bus/u4b/serial/uftdi.c
136
static int uftdi_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uftdi.c
137
static void uftdi_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uftdi.c
557
uftdi_set_parm_soft(struct termios *t,
sys/bus/u4b/serial/uftdi.c
654
uftdi_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uftdi.c
665
uftdi_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umcs.c
156
static void umcs7840_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umcs.c
160
static int umcs7840_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umcs.c
586
umcs7840_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umcs.c
662
umcs7840_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umct.c
135
static int umct_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umct.c
136
static void umct_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umct.c
460
umct_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umct.c
466
umct_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umodem.c
199
static int umodem_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umodem.c
200
static void umodem_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umodem.c
560
umodem_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umodem.c
566
umodem_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umoscom.c
200
static int umoscom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umoscom.c
201
static void umoscom_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/umoscom.c
432
umoscom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/umoscom.c
441
umoscom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uplcom.c
170
static int uplcom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uplcom.c
171
static void uplcom_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uplcom.c
608
uplcom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uplcom.c
640
uplcom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/usb_serial.c
1108
struct termios *ct;
sys/bus/u4b/serial/usb_serial.c
1131
*ct = *(struct termios *)data;
sys/bus/u4b/serial/usb_serial.c
1136
*(struct termios *)data = *ct;
sys/bus/u4b/serial/usb_serial.c
163
usb_proc_callback_t *, struct termios *pt,
sys/bus/u4b/serial/usb_serial.c
1640
ucom_param(struct tty *tp, struct termios *t)
sys/bus/u4b/serial/usb_serial.c
175
static int ucom_param(struct tty *tp, struct termios *t);
sys/bus/u4b/serial/usb_serial.c
181
static void disc_optim(struct tty *, struct termios *, struct ucom_softc *);
sys/bus/u4b/serial/usb_serial.c
2161
disc_optim(struct tty *tp, struct termios *t, struct ucom_softc *sc)
sys/bus/u4b/serial/usb_serial.c
637
usb_proc_callback_t *fn, struct termios *pt,
sys/bus/u4b/serial/usb_serial.c
835
struct termios t;
sys/bus/u4b/serial/usb_serial.h
102
int (*ucom_pre_param) (struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/usb_serial.h
132
struct termios termios_copy;
sys/bus/u4b/serial/usb_serial.h
178
struct termios sc_it_in; /* Initial state in */
sys/bus/u4b/serial/usb_serial.h
179
struct termios sc_it_out; /* Initial state out */
sys/bus/u4b/serial/usb_serial.h
180
struct termios sc_lt_in; /* Lockstate in */
sys/bus/u4b/serial/usb_serial.h
181
struct termios sc_lt_out; /* Lockstate out */
sys/bus/u4b/serial/usb_serial.h
98
void (*ucom_cfg_param) (struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uslcom.c
152
static int uslcom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uslcom.c
153
static void uslcom_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uslcom.c
497
uslcom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uslcom.c
505
uslcom_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uvscom.c
169
static int uvscom_pre_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uvscom.c
170
static void uvscom_cfg_param(struct ucom_softc *, struct termios *);
sys/bus/u4b/serial/uvscom.c
515
uvscom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/bus/u4b/serial/uvscom.c
536
uvscom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/misc/dcons/dcons_os.c
125
static int dcons_tty_param(struct tty *, struct termios *);
sys/dev/misc/dcons/dcons_os.c
304
dcons_tty_param(struct tty *tp, struct termios *t)
sys/dev/misc/syscons/syscons.c
180
static int scparam(struct tty *tp, struct termios *t);
sys/dev/misc/syscons/syscons.c
959
scparam(struct tty *tp, struct termios *t)
sys/dev/serial/sio/sio.c
163
static int comparam (struct tty *tp, struct termios *t);
sys/dev/serial/sio/sio.c
171
static void disc_optim (struct tty *tp, struct termios *t,
sys/dev/serial/sio/sio.c
2035
struct termios *ct;
sys/dev/serial/sio/sio.c
2056
*ct = *(struct termios *)data;
sys/dev/serial/sio/sio.c
2060
*(struct termios *)data = *ct;
sys/dev/serial/sio/sio.c
2080
struct termios *dt = (struct termios *)data;
sys/dev/serial/sio/sio.c
2081
struct termios *lt = mynor & CALLOUT_MASK
sys/dev/serial/sio/sio.c
2253
comparam(struct tty *tp, struct termios *t)
sys/dev/serial/sio/sio.c
2804
disc_optim(struct tty *tp, struct termios *t, struct com_s *com)
sys/dev/serial/sio/sio_private.h
136
struct termios it_in; /* should be in struct tty */
sys/dev/serial/sio/sio_private.h
137
struct termios it_out;
sys/dev/serial/sio/sio_private.h
140
struct termios lt_in; /* should be in struct tty */
sys/dev/serial/sio/sio_private.h
141
struct termios lt_out;
sys/kern/tty.c
1031
struct termios *t = (struct termios *)data;
sys/kern/tty.c
1498
termioschars(struct termios *t)
sys/kern/tty.c
990
struct termios *t = (struct termios *)data;
sys/kern/tty.c
992
bcopy(&tp->t_termios, t, sizeof(struct termios));
sys/platform/vkernel64/platform/console.c
167
vcons_tty_param(struct tty *tp, struct termios *tio)
sys/platform/vkernel64/platform/console.c
228
static struct termios init_tio;
sys/platform/vkernel64/platform/console.c
246
struct termios curtio;
sys/platform/vkernel64/platform/console.c
443
struct termios tio;
sys/platform/vkernel64/platform/console.c
64
static int vcons_tty_param(struct tty *tp, struct termios *tio);
sys/sys/tty.h
251
void termioschars (struct termios *t);
sys/sys/tty.h
257
struct termios *term);
sys/sys/tty.h
91
struct termios t_termios; /* Termios state. */
sys/sys/tty.h
98
int (*t_param) (struct tty *, struct termios *);
sys/sys/ttycom.h
79
#define TIOCGETA _IOR('t', 19, struct termios) /* get termios struct */
sys/sys/ttycom.h
80
#define TIOCSETA _IOW('t', 20, struct termios) /* set termios struct */
sys/sys/ttycom.h
81
#define TIOCSETAW _IOW('t', 21, struct termios) /* drain output, set */
sys/sys/ttycom.h
82
#define TIOCSETAF _IOW('t', 22, struct termios) /* drn out, fls in, set */
test/stress/stress2/testcases/pty/pty.c
60
struct termios tios;
usr.bin/bc/extern.h
29
struct termios;
usr.bin/bc/extern.h
35
int gettty(struct termios *);
usr.bin/bc/extern.h
47
extern struct termios ttysaved;
usr.bin/bc/tty.c
25
struct termios ttysaved, ttyedit;
usr.bin/bc/tty.c
27
static int settty(struct termios *);
usr.bin/bc/tty.c
30
settty(struct termios *t)
usr.bin/bc/tty.c
40
gettty(struct termios *t)
usr.bin/chat/chat.c
128
#define term_parms struct termios
usr.bin/chat/chat.c
131
static struct termios saved_tty_parameters;
usr.bin/dsynth/build.c
2475
struct termios tio;
usr.bin/fetch/fetch.c
396
struct termios tios;
usr.bin/lock/lock.c
70
static struct termios tty, ntty;
usr.bin/mail/main.c
323
struct termios tbuf;
usr.bin/mail/tty.c
55
struct termios ttybuf;
usr.bin/rfcomm_sppd/rfcomm_sppd.c
123
struct termios t;
usr.bin/rfcomm_sppd/rfcomm_sppd.c
94
struct termios tio; /* stored termios for reset on exit */
usr.bin/script/script.c
72
static struct termios tt;
usr.bin/script/script.c
86
struct termios rtt, stt;
usr.bin/talk/init_disp.c
121
struct termios tio;
usr.bin/telnet/externs.h
58
# define termio termios
usr.bin/tip/acucommon.c
58
struct termios t;
usr.bin/tip/acucommon.c
78
struct termios term;
usr.bin/tip/acucommon.c
87
struct termios term;
usr.bin/tip/acucommon.c
99
struct termios term;
usr.bin/tip/cmds.c
72
struct termios ttermios;
usr.bin/tip/cmds.c
907
struct termios ttermios;
usr.bin/tip/hunt.c
88
struct termios t;
usr.bin/tip/tip.c
532
struct termios termios;
usr.bin/tip/tip.c
533
tcgetattr (FD, &termios);
usr.bin/tip/tip.c
535
termios.c_iflag = IXOFF;
usr.bin/tip/tip.c
537
termios.c_iflag = 0;
usr.bin/tip/tip.c
538
termios.c_lflag = (PENDIN|ECHOKE|ECHOE);
usr.bin/tip/tip.c
539
termios.c_cflag = (CLOCAL|HUPCL|CREAD|CS8);
usr.bin/tip/tip.c
540
termios.c_ispeed = termios.c_ospeed = speed;
usr.bin/tip/tip.c
541
tcsetattr (FD, TCSANOW, &termios);
usr.bin/tip/tip.h
253
EXTERN struct termios otermios;
usr.bin/tip/tip.h
254
EXTERN struct termios ctermios;
usr.bin/tip/unidialer.c
259
struct termios t;
usr.bin/top/screen.c
144
static struct termios old_settings;
usr.bin/top/screen.c
145
static struct termios new_settings;
usr.bin/tset/extern.h
36
extern struct termios mode, oldmode;
usr.bin/tset/tset.c
49
struct termios mode, oldmode;
usr.bin/window/ww.h
157
struct termios ww_termios;
usr.sbin/dconschat/dconschat.c
123
struct termios tsave;
usr.sbin/dconschat/dconschat.c
523
struct termios traw;
usr.sbin/lpr/lpd/extern.h
39
struct termios;
usr.sbin/lpr/lpd/extern.h
45
int msearch(char *_str, struct termios *_ip);
usr.sbin/lpr/lpd/modes.c
197
msearch(char *str, struct termios *ip)
usr.sbin/lpr/lpd/printjob.c
1819
struct termios ttybuf;
usr.sbin/moused/moused.c
2468
struct termios tty;
usr.sbin/ppp/physical.c
237
struct termios rstio;
usr.sbin/ppp/prompt.c
419
struct termios newtio;
usr.sbin/ppp/prompt.c
451
struct termios newtio;
usr.sbin/ppp/prompt.h
62
struct termios oldtio; /* Original tty mode */
usr.sbin/ppp/prompt.h
63
struct termios comtio; /* Command level tty mode */
usr.sbin/ppp/tty.c
109
struct termios ios; /* To be able to reset from raw mode */
usr.sbin/ppp/tty.c
443
struct termios ios;
usr.sbin/ppp/tty.c
490
struct termios tio;
usr.sbin/ppp/tty.c
542
struct termios ios;
usr.sbin/ppp/tty.c
672
struct termios ios;
usr.sbin/pw/pw_group.c
183
struct termios t;
usr.sbin/pw/pw_group.c
190
struct termios n = t;
usr.sbin/pw/pw_user.c
615
struct termios t;
usr.sbin/pw/pw_user.c
622
struct termios n = t;
usr.sbin/sliplogin/sliplogin.c
354
struct termios tios;
usr.sbin/watch/watch.c
112
struct termios ntty;
usr.sbin/watch/watch.c
82
struct termios otty;