bin/stty/extern.h
36
void gprint(struct termios *, struct winsize *, int);
bin/stty/extern.h
37
void gread(struct termios *, char *);
bin/stty/extern.h
41
void print(struct termios *, struct winsize *, int, enum FMT);
bin/stty/gfmt.c
54
gprint(struct termios *tp, struct winsize *wp __unused, int ldisc __unused)
bin/stty/gfmt.c
68
gread(struct termios *tp, char *s)
bin/stty/key.c
253
struct termios def;
bin/stty/print.c
46
print(struct termios *tp, struct winsize *wp, int ldisc, enum FMT fmt)
bin/stty/stty.h
42
struct termios t; /* terminal info */
crypto/heimdal/appl/login/read_string.c
63
struct termios t_new, t_old;
crypto/heimdal/appl/login/stty_default.c
75
struct termios termios;
crypto/heimdal/appl/login/stty_default.c
81
tcgetattr(0, &termios);
crypto/heimdal/appl/login/stty_default.c
83
termios.c_iflag |= (BRKINT|IGNPAR|ICRNL|IXON|IMAXBEL);
crypto/heimdal/appl/login/stty_default.c
84
termios.c_iflag &= ~IXANY;
crypto/heimdal/appl/login/stty_default.c
86
termios.c_lflag |= (ISIG|IEXTEN|ICANON|ECHO|ECHOE|ECHOK|ECHOCTL|ECHOKE);
crypto/heimdal/appl/login/stty_default.c
87
termios.c_lflag &= ~(ECHOPRT|TOSTOP|FLUSHO);
crypto/heimdal/appl/login/stty_default.c
89
termios.c_oflag |= (OPOST|ONLCR);
crypto/heimdal/appl/login/stty_default.c
90
termios.c_oflag &= ~OXTABS;
crypto/heimdal/appl/login/stty_default.c
92
termios.c_cc[VINTR] = Ctl('C');
crypto/heimdal/appl/login/stty_default.c
93
termios.c_cc[VERASE] = Ctl('H');
crypto/heimdal/appl/login/stty_default.c
94
termios.c_cc[VKILL] = Ctl('U');
crypto/heimdal/appl/login/stty_default.c
95
termios.c_cc[VEOF] = Ctl('D');
crypto/heimdal/appl/login/stty_default.c
97
termios.c_cc[VSUSP] = Ctl('Z');
crypto/heimdal/appl/login/stty_default.c
99
tcsetattr(0, TCSANOW, &termios);
crypto/heimdal/appl/telnet/telnet/commands.c
788
struct termios new_tc = { 0 };
crypto/heimdal/appl/telnet/telnet/externs.h
368
extern struct termios new_tc;
crypto/heimdal/appl/telnet/telnet/sys_bsd.c
324
struct termios tmp_tc;
crypto/heimdal/appl/telnet/telnet/sys_bsd.c
48
struct termios old_tc = { 0 };
crypto/heimdal/appl/telnet/telnet/sys_bsd.c
49
extern struct termios new_tc;
crypto/heimdal/appl/telnet/telnetd/sys_term.c
163
struct termios termbuf, termbuf2; /* pty control structure */
crypto/heimdal/appl/telnet/telnetd/telnetd.c
1232
struct termios *tsp;
crypto/heimdal/appl/telnet/telnetd/telnetd.c
1281
tsp = (struct termios *)
crypto/krb5/src/lib/krb5/os/prompter.c
159
setup_tty(FILE *fp, int hidden, struct termios *saveparm, osiginfo *osigint)
crypto/krb5/src/lib/krb5/os/prompter.c
163
struct termios tparm;
crypto/krb5/src/lib/krb5/os/prompter.c
192
restore_tty(FILE* fp, struct termios *saveparm, osiginfo *osigint)
crypto/krb5/src/lib/krb5/os/prompter.c
26
static krb5_error_code setup_tty(FILE*, int, struct termios *, osiginfo *);
crypto/krb5/src/lib/krb5/os/prompter.c
27
static krb5_error_code restore_tty(FILE*, struct termios *, osiginfo *);
crypto/krb5/src/lib/krb5/os/prompter.c
44
struct termios saveparm;
crypto/krb5/src/util/ss/listen.c
34
struct termios termbuf;
crypto/openssh/channels.c
2275
struct termios tio;
crypto/openssh/clientloop.c
2715
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
68
struct termios tio;
crypto/openssh/openbsd-compat/bsd-nextstep.c
47
tcgetattr(int fd, struct termios *t)
crypto/openssh/openbsd-compat/bsd-nextstep.c
53
tcsetattr(int fd, int opt, const struct termios *t)
crypto/openssh/openbsd-compat/bsd-nextstep.c
55
struct termios localterm;
crypto/openssh/openbsd-compat/bsd-nextstep.c
80
speed_t cfgetospeed(const struct termios *t)
crypto/openssh/openbsd-compat/bsd-nextstep.c
85
speed_t cfgetispeed(const struct termios *t)
crypto/openssh/openbsd-compat/bsd-nextstep.c
91
cfsetospeed(struct termios *t,int speed)
crypto/openssh/openbsd-compat/bsd-nextstep.c
98
cfsetispeed(struct termios *t, int speed)
crypto/openssh/openbsd-compat/bsd-nextstep.h
49
int tcgetattr(int, struct termios *);
crypto/openssh/openbsd-compat/bsd-nextstep.h
50
int tcsetattr(int, int, const struct termios *);
crypto/openssh/openbsd-compat/bsd-nextstep.h
52
speed_t cfgetospeed(const struct termios *);
crypto/openssh/openbsd-compat/bsd-nextstep.h
53
speed_t cfgetispeed(const struct termios *);
crypto/openssh/openbsd-compat/bsd-nextstep.h
54
int cfsetospeed(struct termios *, int);
crypto/openssh/openbsd-compat/bsd-nextstep.h
55
int cfsetispeed(struct termios *, int);
crypto/openssh/openbsd-compat/bsd-openpty.c
129
openpty(int *amaster, int *aslave, char *name, struct termios *termp,
crypto/openssh/openbsd-compat/bsd-openpty.c
201
struct termios tio;
crypto/openssh/openbsd-compat/openbsd-compat.h
250
int openpty(int *, int *, char *, struct termios *, struct winsize *);
crypto/openssh/openbsd-compat/readpassphrase.c
59
struct termios term, oterm;
crypto/openssh/packet.h
153
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
278
ssh_tty_make_modes(struct ssh *ssh, int fd, struct termios *tiop)
crypto/openssh/ttymodes.c
280
struct termios tio;
crypto/openssh/ttymodes.c
344
struct termios tio;
crypto/openssl/crypto/ui/ui_openssl.c
108
#define TTY_STRUCT struct termios
include/termios.h
75
speed_t cfgetispeed(const struct termios *);
include/termios.h
76
speed_t cfgetospeed(const struct termios *);
include/termios.h
77
int cfsetispeed(struct termios *, speed_t);
include/termios.h
78
int cfsetospeed(struct termios *, speed_t);
include/termios.h
79
int tcgetattr(int, struct termios *);
include/termios.h
80
int tcsetattr(int, int, const struct termios *);
include/termios.h
92
void cfmakeraw(struct termios *);
include/termios.h
93
void cfmakesane(struct termios *);
include/termios.h
94
int cfsetspeed(struct termios *, speed_t);
lib/libc/gen/isatty.c
39
struct termios t;
lib/libc/gen/readpassphrase.c
48
struct termios term, oterm;
lib/libc/gen/termios.c
121
cfgetospeed(const struct termios *t)
lib/libc/gen/termios.c
128
cfgetispeed(const struct termios *t)
lib/libc/gen/termios.c
135
cfsetospeed(struct termios *t, speed_t speed)
lib/libc/gen/termios.c
143
cfsetispeed(struct termios *t, speed_t speed)
lib/libc/gen/termios.c
151
cfsetspeed(struct termios *t, speed_t speed)
lib/libc/gen/termios.c
163
cfmakeraw(struct termios *t)
lib/libc/gen/termios.c
181
cfmakesane(struct termios *t)
lib/libc/gen/termios.c
252
struct termios term;
lib/libc/gen/termios.c
48
tcgetattr(int fd, struct termios *t)
lib/libc/gen/termios.c
55
tcsetattr(int fd, int opt, const struct termios *t)
lib/libc/gen/termios.c
57
struct termios localterm;
lib/libutil/libutil.h
105
struct termios *_termp, struct winsize *_winp);
lib/libutil/libutil.h
127
struct termios *_termp, struct winsize *_winp);
lib/libutil/libutil.h
85
struct termios;
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
41
static struct termios VGLKeyboardTty;
lib/libvgl/keyboard.c
47
static struct termios term;
libexec/comsat/comsat.c
144
struct termios tio;
libexec/getty/extern.h
33
struct termios;
libexec/getty/extern.h
38
extern struct termios tmode, omode;
libexec/getty/main.c
448
struct termios def;
libexec/getty/main.c
79
struct termios omode;
libexec/getty/main.c
81
struct termios tmode;
stand/userboot/test/test.c
53
struct termios term, oldterm;
sys/compat/linux/linux_ioctl.c
421
bsd_to_linux_termios(struct termios *bios, struct linux_termios *lios)
sys/compat/linux/linux_ioctl.c
540
bsd_to_linux_termios2(struct termios *bios, struct linux_termios2 *lios2)
sys/compat/linux/linux_ioctl.c
548
linux_to_bsd_termios(struct linux_termios *lios, struct termios *bios)
sys/compat/linux/linux_ioctl.c
668
linux_to_bsd_termios2(struct linux_termios2 *lios2, struct termios *bios)
sys/compat/linux/linux_ioctl.c
678
bsd_to_linux_termio(struct termios *bios, struct linux_termio *lio)
sys/compat/linux/linux_ioctl.c
693
linux_to_bsd_termio(struct linux_termio *lio, struct termios *bios)
sys/compat/linux/linux_ioctl.c
711
struct termios bios;
sys/dev/nmdm/nmdm.c
299
bits_per_char(struct termios *t)
sys/dev/nmdm/nmdm.c
319
nmdm_param(struct tty *tp, struct termios *t)
sys/dev/syscons/sysmouse.c
219
smdev_param(struct tty *tp, struct termios *t)
sys/dev/uart/uart_tty.c
260
uart_tty_param(struct tty *tp, struct termios *t)
sys/dev/usb/serial/uark.c
109
static int uark_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uark.c
110
static void uark_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uark.c
361
uark_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/uark.c
369
uark_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/ubsa.c
184
static int ubsa_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/ubsa.c
185
static void ubsa_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/ubsa.c
424
ubsa_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/ubsa.c
450
ubsa_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/ubser.c
150
static int ubser_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/ubser.c
338
ubser_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/uchcom.c
208
static int uchcom_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uchcom.c
212
static void uchcom_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uchcom.c
709
uchcom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/uchcom.c
733
uchcom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/ucycom.c
126
static int ucycom_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/ucycom.c
127
static void ucycom_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/ucycom.c
472
ucycom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/ucycom.c
500
ucycom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/udbc.c
111
static int udbc_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/udbc.c
341
udbc_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/ufintek.c
225
static void ufintek_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/ufintek.c
227
static int ufintek_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/ufintek.c
486
ufintek_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/ufintek.c
519
ufintek_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/ufoma.c
217
static int ufoma_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/ufoma.c
218
static void ufoma_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/ufoma.c
954
ufoma_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/ufoma.c
960
ufoma_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/uftdi.c
1579
uftdi_set_parm_soft(struct ucom_softc *ucom, struct termios *t,
sys/dev/usb/serial/uftdi.c
1641
uftdi_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/uftdi.c
1651
uftdi_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/uftdi.c
192
static int uftdi_set_parm_soft(struct ucom_softc *, struct termios *,
sys/dev/usb/serial/uftdi.c
194
static int uftdi_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uftdi.c
195
static void uftdi_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/umcs.c
159
static void umcs7840_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/umcs.c
163
static int umcs7840_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/umcs.c
606
umcs7840_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/umcs.c
681
umcs7840_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/umct.c
150
static int umct_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/umct.c
151
static void umct_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/umct.c
504
umct_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/umct.c
510
umct_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/umodem.c
216
static int umodem_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/umodem.c
217
static void umodem_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/umodem.c
574
umodem_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/umodem.c
580
umodem_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/umoscom.c
204
static int umoscom_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/umoscom.c
205
static void umoscom_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/umoscom.c
456
umoscom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/umoscom.c
465
umoscom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/uplcom.c
190
static int uplcom_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uplcom.c
191
static void uplcom_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uplcom.c
771
uplcom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/uplcom.c
855
uplcom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/usb_serial.c
1322
ucom_param(struct tty *tp, struct termios *t)
sys/dev/usb/serial/usb_serial.c
154
usb_proc_callback_t *, struct termios *pt,
sys/dev/usb/serial/usb_serial.c
629
usb_proc_callback_t *fn, struct termios *pt,
sys/dev/usb/serial/usb_serial.h
128
struct termios termios_copy;
sys/dev/usb/serial/usb_serial.h
94
void (*ucom_cfg_param) (struct ucom_softc *, struct termios *);
sys/dev/usb/serial/usb_serial.h
98
int (*ucom_pre_param) (struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uslcom.c
169
static void uslcom_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uslcom.c
173
static int uslcom_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uslcom.c
608
uslcom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/uslcom.c
635
uslcom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/uvscom.c
176
static int uvscom_pre_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uvscom.c
177
static void uvscom_cfg_param(struct ucom_softc *, struct termios *);
sys/dev/usb/serial/uvscom.c
540
uvscom_pre_param(struct ucom_softc *ucom, struct termios *t)
sys/dev/usb/serial/uvscom.c
562
uvscom_cfg_param(struct ucom_softc *ucom, struct termios *t)
sys/kern/tty.c
1752
*(struct termios*)data = tp->t_termios;
sys/kern/tty.c
1757
struct termios *t = data;
sys/kern/tty.c
2407
_db_show_termios(const char *name, const struct termios *t)
sys/kern/tty.c
617
struct termios *old = &tp->t_termios;
sys/kern/tty.c
618
struct termios *new = (struct termios *)data;
sys/kern/tty.c
619
struct termios *lock = TTY_CALLOUT(tp, dev) ?
sys/kern/tty.c
873
*(struct termios*)data = *(struct termios*)dev->si_drv2;
sys/kern/tty.c
880
*(struct termios*)dev->si_drv2 = *(struct termios*)data;
sys/kern/tty.c
910
struct termios *t = &tp->t_termios_init_in;
sys/kern/tty.c
926
struct termios *ti = &tp->t_termios_init_in;
sys/kern/tty.c
927
struct termios *to = &tp->t_termios_init_out;
sys/kern/tty.c
987
ttydevsw_defparam(struct tty *tp __unused, struct termios *t)
sys/kern/tty_compat.c
190
struct termios term;
sys/kern/tty_compat.c
332
ttcompatsetflags(struct tty *tp, struct termios *t)
sys/kern/tty_compat.c
409
ttcompatsetlflags(struct tty *tp, struct termios *t)
sys/kern/tty_compat.c
50
static void ttcompatsetflags(struct tty *tp, struct termios *t);
sys/kern/tty_compat.c
51
static void ttcompatsetlflags(struct tty *tp, struct termios *t);
sys/kern/tty_compat.c
96
ttsetcompat(struct tty *tp, u_long *com, caddr_t data, struct termios *term)
sys/kern/tty_pts.c
307
*(struct termios*)data = tp->t_termios;
sys/sys/tty.h
110
struct termios t_termios; /* (t) I/O processing flags. */
sys/sys/tty.h
117
struct termios t_termios_init_in; /* tty%s.init. */
sys/sys/tty.h
118
struct termios t_termios_lock_in; /* tty%s.lock. */
sys/sys/tty.h
119
struct termios t_termios_init_out; /* cua%s.init. */
sys/sys/tty.h
120
struct termios t_termios_lock_out; /* cua%s.lock. */
sys/sys/ttycom.h
57
#define TIOCGETA _IOR('t', 19, struct termios) /* get termios struct */
sys/sys/ttycom.h
58
#define TIOCSETA _IOW('t', 20, struct termios) /* set termios struct */
sys/sys/ttycom.h
59
#define TIOCSETAW _IOW('t', 21, struct termios) /* drain output, set */
sys/sys/ttycom.h
60
#define TIOCSETAF _IOW('t', 22, struct termios) /* drn out, fls in, set */
sys/sys/ttydevsw.h
153
ttydevsw_param(struct tty *tp, struct termios *t)
sys/sys/ttydevsw.h
51
typedef int tsw_param_t(struct tty *tp, struct termios *t);
tests/sys/aio/aio_test.c
658
struct termios ts;
tests/sys/kern/tty/test_sti.c
91
struct termios term;
tools/test/stress2/testcases/pty/pty.c
57
struct termios tios;
usr.bin/bluetooth/rfcomm_sppd/rfcomm_sppd.c
372
struct termios tio;
usr.bin/chat/chat.c
127
#define term_parms struct termios
usr.bin/chat/chat.c
130
static struct termios saved_tty_parameters;
usr.bin/fetch/fetch.c
382
struct termios tios;
usr.bin/lock/lock.c
74
static struct termios tty, ntty;
usr.bin/mail/main.c
356
struct termios tbuf;
usr.bin/mail/tty.c
56
struct termios ttybuf;
usr.bin/morse/morse.c
284
static struct termios otty, ntty;
usr.bin/resizewin/resizewin.c
63
struct termios old, new;
usr.bin/script/script.c
103
struct termios rtt, stt;
usr.bin/script/script.c
527
struct termios traw;
usr.bin/script/script.c
82
static struct termios tt;
usr.bin/talk/init_disp.c
125
struct termios tio;
usr.bin/tip/libacu/courier.c
231
struct termios cntrl;
usr.bin/tip/libacu/courier.c
66
struct termios cntrl;
usr.bin/tip/libacu/df.c
62
struct termios cntrl;
usr.bin/tip/libacu/dn11.c
50
struct termios cntrl;
usr.bin/tip/libacu/hayes.c
89
struct termios cntrl;
usr.bin/tip/libacu/t3000.c
246
struct termios cntrl;
usr.bin/tip/libacu/t3000.c
64
struct termios cntrl;
usr.bin/tip/libacu/v3451.c
55
struct termios cntrl;
usr.bin/tip/libacu/v831.c
127
struct termios cntrl;
usr.bin/tip/libacu/v831.c
184
struct termios cntrl;
usr.bin/tip/libacu/ventel.c
69
struct termios cntrl;
usr.bin/tip/tip/cmds.c
845
struct termios rmtty;
usr.bin/tip/tip/cmds.c
865
struct termios rmtty;
usr.bin/tip/tip/hunt.c
87
struct termios cntrl;
usr.bin/tip/tip/tip.c
543
struct termios cntrl;
usr.bin/tip/tip/tip.h
239
EXTERN struct termios term; /* current mode of terminal */
usr.bin/tip/tip/tip.h
240
EXTERN struct termios defterm; /* initial mode of terminal */
usr.bin/tip/tip/tip.h
241
EXTERN struct termios defchars; /* current mode with initial chars */
usr.bin/top/screen.c
53
static struct termios old_settings;
usr.bin/top/screen.c
54
static struct termios new_settings;
usr.sbin/bhyve/uart_backend.c
86
static struct termios tio_stdio_orig;
usr.sbin/bhyve/uart_backend.c
99
struct termios orig, new;
usr.sbin/bhyveload/bhyveload.c
102
static struct termios term, oldterm;
usr.sbin/dconschat/dconschat.c
124
struct termios tsave;
usr.sbin/dconschat/dconschat.c
125
struct termios traw;
usr.sbin/lpr/lpd/extern.h
38
struct termios;
usr.sbin/lpr/lpd/extern.h
44
int msearch(char *_str, struct termios *_ip);
usr.sbin/lpr/lpd/modes.c
196
msearch(char *str, struct termios *ip)
usr.sbin/lpr/lpd/printjob.c
1954
struct termios ttybuf;
usr.sbin/moused/msconvd/msconvd.c
1854
struct termios tty;
usr.sbin/ppp/physical.c
239
struct termios rstio;
usr.sbin/ppp/prompt.c
421
struct termios newtio;
usr.sbin/ppp/prompt.c
453
struct termios newtio;
usr.sbin/ppp/prompt.h
61
struct termios oldtio; /* Original tty mode */
usr.sbin/ppp/prompt.h
62
struct termios comtio; /* Command level tty mode */
usr.sbin/ppp/tty.c
101
struct termios ios; /* To be able to reset from raw mode */
usr.sbin/ppp/tty.c
435
struct termios ios;
usr.sbin/ppp/tty.c
482
struct termios tio;
usr.sbin/ppp/tty.c
534
struct termios ios;
usr.sbin/ppp/tty.c
678
struct termios ios;
usr.sbin/pw/pw_group.c
52
struct termios t, n;
usr.sbin/pw/pw_user.c
169
struct termios t, n;
usr.sbin/uhsoctl/uhsoctl.c
1138
struct termios t;
usr.sbin/watch/watch.c
108
struct termios ntty;
usr.sbin/watch/watch.c
77
struct termios otty;