usr/src/cmd/acpi/common/osunixxf.c
194
struct termios OriginalTermAttributes;
usr/src/cmd/acpi/common/osunixxf.c
242
struct termios LocalTermAttributes;
usr/src/cmd/acpi/common/osunixxf.c
265
sizeof (struct termios));
usr/src/cmd/bhyve/common/bhyve_sol_glue.c
28
cfmakeraw(struct termios *t)
usr/src/cmd/bhyve/common/uart_backend.c
107
struct termios orig, new;
usr/src/cmd/bhyve/common/uart_backend.c
96
static struct termios tio_stdio_orig;
usr/src/cmd/bnu/cu.c
156
static struct termios _Tv0s; /* for saving, changing TTY atributes */
usr/src/cmd/bnu/cu.c
158
static struct termios _Lvs; /* attributes for the line to remote */
usr/src/cmd/bnu/line.c
104
static struct termios Savettybs;
usr/src/cmd/bnu/line.c
124
struct termios ttbufs;
usr/src/cmd/bnu/line.c
265
static struct termios tbufs;
usr/src/cmd/bnu/line.c
399
struct termios ttbufs;
usr/src/cmd/bnu/setmode.c
19
static struct termios termios_set;
usr/src/cmd/bnu/setmode.c
20
static struct termios termios_clear;
usr/src/cmd/bnu/setmode.c
341
struct termios termios;
usr/src/cmd/bnu/setmode.c
343
if ((*Ioctl)(fd, TCGETS, &termios) < 0) {
usr/src/cmd/bnu/setmode.c
348
termios.c_iflag &= ~termios_clear.c_iflag;
usr/src/cmd/bnu/setmode.c
349
termios.c_iflag |= termios_set.c_iflag;
usr/src/cmd/bnu/setmode.c
350
termios.c_oflag &= ~termios_clear.c_oflag;
usr/src/cmd/bnu/setmode.c
351
termios.c_oflag |= termios_set.c_oflag;
usr/src/cmd/bnu/setmode.c
352
termios.c_cflag &= ~termios_clear.c_cflag;
usr/src/cmd/bnu/setmode.c
353
termios.c_cflag |= termios_set.c_cflag;
usr/src/cmd/bnu/setmode.c
354
termios.c_lflag &= ~termios_clear.c_lflag;
usr/src/cmd/bnu/setmode.c
355
termios.c_lflag |= termios_set.c_lflag;
usr/src/cmd/bnu/setmode.c
357
if ((*Ioctl)(fd, TCSETSF, &termios) < 0) {
usr/src/cmd/cmd-inet/usr.bin/chat/chat.c
194
#define term_parms struct termios
usr/src/cmd/cmd-inet/usr.bin/chat/chat.c
197
struct termios saved_tty_parameters;
usr/src/cmd/cmd-inet/usr.bin/ftp/getpass.c
42
static struct termios termios_b;
usr/src/cmd/cmd-inet/usr.bin/pppd/sys-solaris.c
1217
struct termios tios;
usr/src/cmd/cmd-inet/usr.bin/pppd/sys-solaris.c
143
static struct termios inittermios; /* TTY settings */
usr/src/cmd/cmd-inet/usr.bin/rlogin.c
1371
struct termios tb;
usr/src/cmd/cmd-inet/usr.bin/rlogin.c
154
static struct termios savetty;
usr/src/cmd/cmd-inet/usr.bin/talk/init_disp.c
111
struct termios tty;
usr/src/cmd/cmd-inet/usr.bin/talk/init_disp.c
112
ioctl(0, TCGETS, (struct termios *)&tty);
usr/src/cmd/cmd-inet/usr.bin/telnet/externs.h
54
#define termio termios
usr/src/cmd/cmd-inet/usr.sbin/in.rlogind.c
946
struct termios tp;
usr/src/cmd/cmd-inet/usr.sbin/in.telnetd.c
4198
struct termios tios;
usr/src/cmd/cmd-inet/usr.sbin/wificonfig/wificonfig.c
2902
struct termios stored_settings;
usr/src/cmd/cmd-inet/usr.sbin/wificonfig/wificonfig.c
2903
struct termios new_settings;
usr/src/cmd/csh/sh.file.c
156
struct termios tty;
usr/src/cmd/csh/sh.file.c
369
struct termios tty_pending;
usr/src/cmd/csh/sh.file.c
44
static struct termios tty_save; /* saved terminal state */
usr/src/cmd/csh/sh.file.c
45
static struct termios tty_new; /* new terminal state */
usr/src/cmd/csh/sh.file.c
717
struct termios tty;
usr/src/cmd/dladm/dladm.c
7250
struct termios stored, current;
usr/src/cmd/enhance/enhance.c
517
struct termios attr; /* The terminal attributes */
usr/src/cmd/format/io.c
2387
struct termios tty;
usr/src/cmd/format/misc.h
110
struct termios ttystate; /* buffer for ioctls */
usr/src/cmd/init/init.c
2958
struct termios old_syscon_termios;
usr/src/cmd/init/init.c
419
static struct termios dflt_termios = {
usr/src/cmd/init/init.c
430
static struct termios stored_syscon_termios;
usr/src/cmd/login/login.c
1553
struct termios tp;
usr/src/cmd/lp/cmd/lpsched/ports.c
88
struct termios tios;
usr/src/cmd/lp/filter/postscript/postio/ifdef.c
111
if ( ioctl(ttyi, TCGETS, &termios) < 0 ) {
usr/src/cmd/lp/filter/postscript/postio/ifdef.c
129
termios.c_iflag = IXON | IGNCR;
usr/src/cmd/lp/filter/postscript/postio/ifdef.c
130
termios.c_oflag = 0;
usr/src/cmd/lp/filter/postscript/postio/ifdef.c
131
termios.c_cflag = HUPCL | CREAD | CS8 | stopbits |
usr/src/cmd/lp/filter/postscript/postio/ifdef.c
132
((line != NULL) ? baudrate : cfgetospeed(&termios));
usr/src/cmd/lp/filter/postscript/postio/ifdef.c
133
termios.c_lflag = 0;
usr/src/cmd/lp/filter/postscript/postio/ifdef.c
134
termios.c_cc[VMIN] = termios.c_cc[VTIME] = 0;
usr/src/cmd/lp/filter/postscript/postio/ifdef.c
135
if ( ioctl(ttyi, TCSETS, &termios) == -1 ) {
usr/src/cmd/lp/filter/postscript/postio/ifdef.c
74
struct termios termios;
usr/src/cmd/lp/model/lp.cat.c
688
struct termios tms;
usr/src/cmd/luxadm/g_adm.c
1672
termios.c_lflag |= ECHO;
usr/src/cmd/luxadm/g_adm.c
1673
ioctl(termio_fd, TCSETS, &termios);
usr/src/cmd/luxadm/g_adm.c
1703
ioctl(termio_fd, TCGETS, &termios);
usr/src/cmd/luxadm/g_adm.c
1751
termios.c_lflag &= ~ECHO;
usr/src/cmd/luxadm/g_adm.c
1752
ioctl(termio_fd, TCSETS, &termios);
usr/src/cmd/luxadm/g_adm.c
1758
termios.c_lflag |= ECHO;
usr/src/cmd/luxadm/g_adm.c
1759
ioctl(termio_fd, TCSETS, &termios);
usr/src/cmd/luxadm/g_adm.c
82
static struct termios termios;
usr/src/cmd/mailx/main.c
81
struct termios tbufs;
usr/src/cmd/mdb/common/kmdb/kmdb_promif.c
299
kmdb_prom_read(void *buf, size_t len, struct termios *tio)
usr/src/cmd/mdb/common/kmdb/kmdb_promif.c
345
kmdb_prom_write(const void *bufp, size_t len, struct termios *tio)
usr/src/cmd/mdb/common/kmdb/kmdb_promif.c
394
termios_setispeed(struct termios *tip, speed_t s)
usr/src/cmd/mdb/common/kmdb/kmdb_promif.c
411
termios_setospeed(struct termios *tip, speed_t s)
usr/src/cmd/mdb/common/kmdb/kmdb_promif.c
428
kmdb_parse_mode(const char *mode, struct termios *tip, int in)
usr/src/cmd/mdb/common/kmdb/kmdb_promif.c
559
bzero(&pif->pif_tios, sizeof (struct termios));
usr/src/cmd/mdb/common/kmdb/kmdb_promif.c
674
struct termios *ti = arg;
usr/src/cmd/mdb/common/kmdb/kmdb_promif.c
675
bcopy(&mdb.m_promif->pif_tios, ti, sizeof (struct termios));
usr/src/cmd/mdb/common/kmdb/kmdb_promif.h
45
extern ssize_t kmdb_prom_read(void *, size_t, struct termios *);
usr/src/cmd/mdb/common/kmdb/kmdb_promif.h
46
extern ssize_t kmdb_prom_write(const void *, size_t, struct termios *);
usr/src/cmd/mdb/common/kmdb/kmdb_promif_impl.h
57
struct termios pif_tios; /* derived settings for console */
usr/src/cmd/mdb/common/kmdb/kmdb_promio.c
100
struct termios *ti = arg;
usr/src/cmd/mdb/common/kmdb/kmdb_promio.c
107
bcopy(&pdp->pio_ti, ti, sizeof (struct termios));
usr/src/cmd/mdb/common/kmdb/kmdb_promio.c
116
struct termios *ti = arg;
usr/src/cmd/mdb/common/kmdb/kmdb_promio.c
122
bcopy(ti, &pdp->pio_ti, sizeof (struct termios));
usr/src/cmd/mdb/common/kmdb/kmdb_promio.c
51
struct termios pio_ti;
usr/src/cmd/mdb/common/mdb/mdb_main.c
434
struct termios tios;
usr/src/cmd/mdb/common/mdb/mdb_termio.c
1544
struct termios otios;
usr/src/cmd/mdb/common/mdb/mdb_termio.c
1679
bcopy(&td->tio_ptios, &td->tio_ctios, sizeof (struct termios));
usr/src/cmd/mdb/common/mdb/mdb_termio.c
225
struct termios tio_ptios; /* Parent terminal settings */
usr/src/cmd/mdb/common/mdb/mdb_termio.c
226
struct termios tio_ctios; /* Child terminal settings */
usr/src/cmd/mdb/common/mdb/mdb_termio.c
227
struct termios tio_rtios; /* Settings for read loop */
usr/src/cmd/mdb/common/mdb/mdb_termio.c
228
struct termios tio_dtios; /* Settings for dcmd execution */
usr/src/cmd/mdb/common/mdb/mdb_termio.c
270
static void termio_suspend_tty(termio_data_t *, struct termios *);
usr/src/cmd/mdb/common/mdb/mdb_termio.c
271
static void termio_resume_tty(termio_data_t *, struct termios *);
usr/src/cmd/mdb/common/mdb/mdb_termio.c
582
bcopy(&td->tio_ptios, &td->tio_ctios, sizeof (struct termios));
usr/src/cmd/mdb/common/mdb/mdb_termio.c
709
termio_suspend_tty(termio_data_t *td, struct termios *iosp)
usr/src/cmd/mdb/common/mdb/mdb_termio.c
741
termio_resume_tty(termio_data_t *td, struct termios *iosp)
usr/src/cmd/mdb/common/mdb/mdb_termio.c
761
struct termios *ntios;
usr/src/cmd/mdb/common/mdb/mdb_termio.c
810
bcopy(&td->tio_ptios, &td->tio_rtios, sizeof (struct termios));
usr/src/cmd/mdb/common/mdb/mdb_termio.c
819
bcopy(&td->tio_ptios, &td->tio_dtios, sizeof (struct termios));
usr/src/cmd/rmformat/rmf_misc.c
152
struct termios tio;
usr/src/cmd/scadm/sparc/mpxu/common/user.c
554
static struct termios newOpts;
usr/src/cmd/scadm/sparc/mpxu/common/user.c
57
static struct termios oldOpts;
usr/src/cmd/script/script.c
222
struct termios sbuf;
usr/src/cmd/script/script.c
58
struct termios b;
usr/src/cmd/sh/jobs.c
51
struct termios j_stty; /* termio save area when job stops */
usr/src/cmd/sh/jobs.c
87
static struct termios mystty; /* default termio settings */
usr/src/cmd/tip/aculib/df.c
43
struct termios buf;
usr/src/cmd/tip/aculib/dn11.c
27
struct termios buf;
usr/src/cmd/tip/aculib/hayes.c
29
struct termios buf;
usr/src/cmd/tip/aculib/v3451.c
31
struct termios buf;
usr/src/cmd/tip/aculib/v831.c
105
struct termios cntrl;
usr/src/cmd/tip/aculib/v831.c
126
struct termios buf;
usr/src/cmd/tip/aculib/v831.c
168
struct termios cntrl;
usr/src/cmd/tip/aculib/ventel.c
35
struct termios buf;
usr/src/cmd/tip/cmds.c
26
struct termios arg;
usr/src/cmd/tip/cmds.c
27
struct termios defarg;
usr/src/cmd/tip/cmds.c
278
struct termios buf;
usr/src/cmd/tip/cmds.c
314
struct termios buf;
usr/src/cmd/tip/cmds.c
813
struct termios rmtty;
usr/src/cmd/tip/cmds.c
835
struct termios rmtty;
usr/src/cmd/tip/hunt.c
69
struct termios t;
usr/src/cmd/tip/tip.c
509
struct termios buf;
usr/src/cmd/tip/tip.h
227
extern struct termios arg; /* current mode of local terminal */
usr/src/cmd/tip/tip.h
228
extern struct termios defarg; /* initial mode of local terminal */
usr/src/cmd/tput/tput.c
588
struct termios termmodes; /* To hold terminal settings. */
usr/src/cmd/truss/expound.c
657
struct termios termios;
usr/src/cmd/truss/expound.c
661
if (Pread(Proc, &termios, sizeof (termios), offset)
usr/src/cmd/truss/expound.c
662
== sizeof (termios)) {
usr/src/cmd/truss/expound.c
666
termios.c_iflag,
usr/src/cmd/truss/expound.c
667
termios.c_oflag,
usr/src/cmd/truss/expound.c
668
termios.c_cflag,
usr/src/cmd/truss/expound.c
669
termios.c_lflag);
usr/src/cmd/truss/expound.c
675
show_char(cbuf, (int)termios.c_cc[i]));
usr/src/cmd/ttymon/stty.c
62
static struct termios cb;
usr/src/cmd/ttymon/sttyparse.c
365
get_ttymode(int fd, struct termio *termio, struct termios *termios,
usr/src/cmd/ttymon/sttyparse.c
379
if (ioctl(fd, TCGETS, termios) == -1) {
usr/src/cmd/ttymon/sttyparse.c
382
termios->c_lflag = termio->c_lflag;
usr/src/cmd/ttymon/sttyparse.c
383
termios->c_oflag = termio->c_oflag;
usr/src/cmd/ttymon/sttyparse.c
384
termios->c_iflag = termio->c_iflag;
usr/src/cmd/ttymon/sttyparse.c
385
termios->c_cflag = termio->c_cflag;
usr/src/cmd/ttymon/sttyparse.c
387
termios->c_cc[i] = termio->c_cc[i];
usr/src/cmd/ttymon/sttyparse.c
391
termios->c_cc[7] = (unsigned)stermio->tab;
usr/src/cmd/ttymon/sttyparse.c
392
termios->c_lflag = stermio->lmode;
usr/src/cmd/ttymon/sttyparse.c
393
termios->c_oflag = stermio->omode;
usr/src/cmd/ttymon/sttyparse.c
394
termios->c_iflag = stermio->imode;
usr/src/cmd/ttymon/sttyparse.c
426
set_ttymode(int fd, int term, struct termio *termio, struct termios *termios,
usr/src/cmd/ttymon/sttyparse.c
442
if (ioctl(fd, TCSETSW, termios) == -1)
usr/src/cmd/ttymon/sttyparse.c
445
termio->c_lflag = termios->c_lflag;
usr/src/cmd/ttymon/sttyparse.c
446
termio->c_oflag = termios->c_oflag;
usr/src/cmd/ttymon/sttyparse.c
447
termio->c_iflag = termios->c_iflag;
usr/src/cmd/ttymon/sttyparse.c
448
termio->c_cflag = termios->c_cflag;
usr/src/cmd/ttymon/sttyparse.c
450
termio->c_cc[i] = termios->c_cc[i];
usr/src/cmd/ttymon/sttyparse.c
456
stermio->imode = termios->c_iflag;
usr/src/cmd/ttymon/sttyparse.c
457
stermio->omode = termios->c_oflag;
usr/src/cmd/ttymon/sttyparse.c
458
stermio->lmode = termios->c_lflag;
usr/src/cmd/ttymon/sttyparse.c
459
stermio->tab = termios->c_cc[7];
usr/src/cmd/ttymon/sttyparse.c
508
parse_encoded(struct termios *cb
usr/src/cmd/ttymon/sttyparse.c
60
static int parse_encoded(struct termios *, ldterm_cs_data_user_t *, int);
usr/src/cmd/ttymon/sttyparse.c
62
static int parse_encoded(struct termios *);
usr/src/cmd/ttymon/sttyparse.c
70
struct termios *cb, struct termiox *termiox, struct winsize *winsize
usr/src/cmd/ttymon/tmautobaud.c
101
termios.c_iflag &= 0xffff0000;
usr/src/cmd/ttymon/tmautobaud.c
102
termios.c_cflag &= ~(CSIZE|PARENB);
usr/src/cmd/ttymon/tmautobaud.c
103
termios.c_cflag |= CREAD|HUPCL|(CS8&CSIZE);
usr/src/cmd/ttymon/tmautobaud.c
104
termios.c_lflag &= ~(ISIG|ICANON|ECHO|ECHOE|ECHOK);
usr/src/cmd/ttymon/tmautobaud.c
105
termios.c_oflag &= 0xffff0000;
usr/src/cmd/ttymon/tmautobaud.c
107
termios.c_cc[VMIN] = 5;
usr/src/cmd/ttymon/tmautobaud.c
108
termios.c_cc[VTIME] = 1;
usr/src/cmd/ttymon/tmautobaud.c
109
(void) cfsetospeed(&termios, B2400);
usr/src/cmd/ttymon/tmautobaud.c
111
if (ioctl(fd, TCSETSF, &termios) == -1) {
usr/src/cmd/ttymon/tmautobaud.c
78
struct termios termios;
usr/src/cmd/ttymon/tmautobaud.c
80
if (ioctl(fd, TCGETS, &termios) == -1) {
usr/src/cmd/ttymon/tmextern.h
55
struct termios *, struct termiox *, struct winsize *,
usr/src/cmd/ttymon/tmextern.h
58
extern int get_ttymode(int, struct termio *, struct termios *,
usr/src/cmd/ttymon/tmextern.h
61
extern int set_ttymode(int, int, struct termio *, struct termios *,
usr/src/cmd/ttymon/tmextern.h
66
struct termios *, struct termiox *, struct winsize *);
usr/src/cmd/ttymon/tmextern.h
67
extern int get_ttymode(int, struct termio *, struct termios *,
usr/src/cmd/ttymon/tmextern.h
69
extern int set_ttymode(int, int, struct termio *, struct termios *,
usr/src/cmd/ttymon/tmterm.c
107
if ((uarg = sttyparse(cnt, argvp, term, &termio, &termios,
usr/src/cmd/ttymon/tmterm.c
115
if (set_ttymode(fd, term, &termio, &termios, &stermio,
usr/src/cmd/ttymon/tmterm.c
209
struct termios termios;
usr/src/cmd/ttymon/tmterm.c
214
if (ioctl(fd, TCGETS, &termios) < 0) {
usr/src/cmd/ttymon/tmterm.c
227
(void) cfsetospeed(&termios, B0);
usr/src/cmd/ttymon/tmterm.c
229
if (ioctl(fd, TCSETS, &termios) < 0) {
usr/src/cmd/ttymon/tmterm.c
63
struct termios termios;
usr/src/cmd/ttymon/tmterm.c
79
if ((term = get_ttymode(fd, &termio, &termios, &stermio,
usr/src/cmd/ttymon/tmterm.c
88
termios.c_cc[VEOF] = CEOF;
usr/src/cmd/ttymon/tmterm.c
89
termios.c_cc[VEOL] = CNUL;
usr/src/cmd/ttymon/tmterm.c
91
termios.c_lflag &= ECHO;
usr/src/cmd/ttymon/tmterm.c
92
termios.c_cc[VMIN] = 1;
usr/src/cmd/ttymon/tmterm.c
93
termios.c_cc[VTIME] = 0;
usr/src/cmd/ttymon/tmttydefs.c
304
struct termios termios;
usr/src/cmd/ttymon/tmttydefs.c
326
if ((s_arg = sttyparse(cnt, argvp, term, &termio, &termios,
usr/src/cmd/vi/port/ex.h
82
typedef struct termios SGTTY;
usr/src/cmd/vi/port/ex_tty.h
98
var struct termios tty; /* Use this one structure to change modes */
usr/src/cmd/vi/port/ex_tty.h
99
typedef struct termios ttymode; /* Mode to contain tty flags */
usr/src/cmd/zlogin/zlogin.c
466
struct termios term;
usr/src/cmd/zlogin/zlogin.c
98
static struct termios save_termios;
usr/src/cmd/zlogin/zlogin.c
99
static struct termios effective_termios;
usr/src/common/ficl/ficlplatform/pager.c
44
static struct termios orig_termios;
usr/src/common/ficl/ficlplatform/pager.c
58
struct termios raw;
usr/src/common/ficl/loader.c
967
struct termios oldt;
usr/src/common/ficl/loader.c
968
struct termios newt;
usr/src/compat/bhyve/termios.h
21
void cfmakeraw(struct termios *);
usr/src/grub/grub-0.97/grub/asmstub.c
1110
struct termios termios;
usr/src/grub/grub-0.97/grub/asmstub.c
1137
if (tcgetattr (serial_fd, &termios))
usr/src/grub/grub-0.97/grub/asmstub.c
1142
termios.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
usr/src/grub/grub-0.97/grub/asmstub.c
1143
termios.c_oflag &= ~OPOST;
usr/src/grub/grub-0.97/grub/asmstub.c
1144
termios.c_lflag &= ~(ECHO|ECHONL|ICANON|ISIG|IEXTEN);
usr/src/grub/grub-0.97/grub/asmstub.c
1145
termios.c_cflag &= ~(CSIZE|PARENB);
usr/src/grub/grub-0.97/grub/asmstub.c
1146
termios.c_cflag |= CS8;
usr/src/grub/grub-0.97/grub/asmstub.c
1148
cfmakeraw (&termios);
usr/src/grub/grub-0.97/grub/asmstub.c
1156
cfsetispeed (&termios, termios_speed);
usr/src/grub/grub-0.97/grub/asmstub.c
1157
cfsetospeed (&termios, termios_speed);
usr/src/grub/grub-0.97/grub/asmstub.c
1160
termios.c_cflag &= ~CSIZE;
usr/src/grub/grub-0.97/grub/asmstub.c
1164
termios.c_cflag |= CS5;
usr/src/grub/grub-0.97/grub/asmstub.c
1167
termios.c_cflag |= CS6;
usr/src/grub/grub-0.97/grub/asmstub.c
1170
termios.c_cflag |= CS7;
usr/src/grub/grub-0.97/grub/asmstub.c
1173
termios.c_cflag |= CS8;
usr/src/grub/grub-0.97/grub/asmstub.c
1183
termios.c_cflag &= ~PARENB;
usr/src/grub/grub-0.97/grub/asmstub.c
1186
termios.c_cflag |= PARENB;
usr/src/grub/grub-0.97/grub/asmstub.c
1187
termios.c_cflag |= PARODD;
usr/src/grub/grub-0.97/grub/asmstub.c
1190
termios.c_cflag |= PARENB;
usr/src/grub/grub-0.97/grub/asmstub.c
1191
termios.c_cflag &= ~PARODD;
usr/src/grub/grub-0.97/grub/asmstub.c
1201
termios.c_cflag &= ~CSTOPB;
usr/src/grub/grub-0.97/grub/asmstub.c
1204
termios.c_cflag |= CSTOPB;
usr/src/grub/grub-0.97/grub/asmstub.c
1211
if (tcsetattr (serial_fd, TCSANOW, &termios))
usr/src/lib/gss_mechs/mech_krb5/krb5/os/prompter.c
155
setup_tty(FILE *fp, int hidden, struct termios *saveparm, osiginfo *osigint)
usr/src/lib/gss_mechs/mech_krb5/krb5/os/prompter.c
159
struct termios tparm;
usr/src/lib/gss_mechs/mech_krb5/krb5/os/prompter.c
188
restore_tty(FILE* fp, struct termios *saveparm, osiginfo *osigint)
usr/src/lib/gss_mechs/mech_krb5/krb5/os/prompter.c
24
static krb5_error_code setup_tty(FILE*, int, struct termios *, osiginfo *);
usr/src/lib/gss_mechs/mech_krb5/krb5/os/prompter.c
25
static krb5_error_code restore_tty(FILE*, struct termios *, osiginfo *);
usr/src/lib/gss_mechs/mech_krb5/krb5/os/prompter.c
42
struct termios saveparm;
usr/src/lib/gss_mechs/mech_krb5/krb5/os/promptusr.c
46
struct termios echo_control, save_control;
usr/src/lib/krb5/ss/listen.c
35
struct termios termbuf;
usr/src/lib/libc/port/gen/cfgetispeed.c
41
cfgetispeed(const struct termios *termios_p)
usr/src/lib/libc/port/gen/cfgetospeed.c
41
cfgetospeed(const struct termios *termios_p)
usr/src/lib/libc/port/gen/cfsetispeed.c
41
cfsetispeed(struct termios *termios_p, speed_t speed)
usr/src/lib/libc/port/gen/cfsetospeed.c
41
cfsetospeed(struct termios *termios_p, speed_t speed)
usr/src/lib/libc/port/gen/tcgetattr.c
42
tcgetattr(int fildes, struct termios *termios_p)
usr/src/lib/libc/port/gen/tcsetattr.c
43
tcsetattr(int fildes, int optional_actions, const struct termios *termios_p)
usr/src/lib/libldap5/include/ldap/portable.h
242
#define TERMIO_TYPE struct termios
usr/src/lib/libnsl/dial/line.c
109
struct termios ttbufs;
usr/src/lib/libnsl/dial/line.c
90
static struct termios Savettybs;
usr/src/lib/libtecla/common/getline.c
145
typedef struct termios Termios;
usr/src/lib/libxcurses/h/mks.h
405
LEXTERN int m_tfgetc (FILE *fp, struct termios *tp);
usr/src/lib/libxcurses/src/libc/xcurses/private.h
186
extern int __m_tty_get(struct termios *);
usr/src/lib/libxcurses/src/libc/xcurses/private.h
187
extern int __m_tty_set(struct termios *);
usr/src/lib/libxcurses/src/libc/xcurses/setup.c
566
struct termios *tp;
usr/src/lib/libxcurses/src/libc/xcurses/setup.c
584
struct termios *tp;
usr/src/lib/libxcurses/src/libc/xcurses/wgetn_ws.c
106
struct termios saved;
usr/src/lib/libxcurses2/src/libc/xcurses/private.h
146
#define PTERMIOS(x) ((struct termios *)(cur_term->x))
usr/src/lib/libxcurses2/src/libc/xcurses/private.h
177
extern int __m_tty_get(struct termios *);
usr/src/lib/libxcurses2/src/libc/xcurses/private.h
178
extern int __m_tty_set(struct termios *);
usr/src/lib/libxcurses2/src/libc/xcurses/setup.c
318
cur_term->_shell = (void *) calloc(1, sizeof (struct termios));
usr/src/lib/libxcurses2/src/libc/xcurses/setup.c
319
cur_term->_prog = (void *) calloc(1, sizeof (struct termios));
usr/src/lib/libxcurses2/src/libc/xcurses/setup.c
320
cur_term->_save = (void *) calloc(1, sizeof (struct termios));
usr/src/lib/libxcurses2/src/libc/xcurses/setup.c
321
cur_term->_actual = (void *) calloc(1, sizeof (struct termios));
usr/src/lib/libxcurses2/src/libc/xcurses/setup.c
581
__m_tty_get(struct termios *tp)
usr/src/lib/libxcurses2/src/libc/xcurses/setup.c
605
__m_tty_set(struct termios *tp)
usr/src/lib/libxcurses2/src/libc/xcurses/setup.c
617
if (memcmp(tp, &cur_term->_actual, sizeof (struct termios)) == 0)
usr/src/lib/libxcurses2/src/libc/xcurses/wgetch.c
157
struct termios
usr/src/lib/libxcurses2/src/libc/xcurses/wgetch.c
160
struct termios rval;
usr/src/lib/libxcurses2/src/libc/xcurses/wgetch.c
161
struct termios newstuff;
usr/src/lib/libxcurses2/src/libc/xcurses/wgetch.c
240
struct termios save;
usr/src/lib/libxcurses2/src/libc/xcurses/wgetch.c
341
struct termios save;
usr/src/lib/libxcurses2/src/libc/xcurses/wgetch.c
51
static struct termios read_termios;
usr/src/lib/libxcurses2/src/libc/xcurses/wgetn_ws.c
114
struct termios saved;
usr/src/lib/libzfs/common/libzfs_crypto.c
267
struct termios old_term, new_term;
usr/src/ucbcmd/ls/ls.c
95
struct termios trbuf;
usr/src/ucbcmd/stty/stty.c
46
static struct termios cb;
usr/src/ucbcmd/stty/sttyparse.c
330
get_ttymode(fd, termio, termios, stermio, termiox, winsize)
usr/src/ucbcmd/stty/sttyparse.c
333
struct termios *termios;
usr/src/ucbcmd/stty/sttyparse.c
342
if(ioctl(fd, TCGETS, termios) == -1) {
usr/src/ucbcmd/stty/sttyparse.c
345
termios->c_lflag = termio->c_lflag;
usr/src/ucbcmd/stty/sttyparse.c
346
termios->c_oflag = termio->c_oflag;
usr/src/ucbcmd/stty/sttyparse.c
347
termios->c_iflag = termio->c_iflag;
usr/src/ucbcmd/stty/sttyparse.c
348
termios->c_cflag = termio->c_cflag;
usr/src/ucbcmd/stty/sttyparse.c
350
termios->c_cc[i] = termio->c_cc[i];
usr/src/ucbcmd/stty/sttyparse.c
355
termios->c_cc[7] = (unsigned)stermio->tab;
usr/src/ucbcmd/stty/sttyparse.c
356
termios->c_lflag = stermio->lmode;
usr/src/ucbcmd/stty/sttyparse.c
357
termios->c_oflag = stermio->omode;
usr/src/ucbcmd/stty/sttyparse.c
358
termios->c_iflag = stermio->imode;
usr/src/ucbcmd/stty/sttyparse.c
371
set_ttymode(fd, term, termio, termios, stermio, termiox, winsize, owinsize)
usr/src/ucbcmd/stty/sttyparse.c
374
struct termios *termios;
usr/src/ucbcmd/stty/sttyparse.c
382
if(ioctl(fd, TCSETSW, termios) == -1)
usr/src/ucbcmd/stty/sttyparse.c
385
termio->c_lflag = termios->c_lflag;
usr/src/ucbcmd/stty/sttyparse.c
386
termio->c_oflag = termios->c_oflag;
usr/src/ucbcmd/stty/sttyparse.c
387
termio->c_iflag = termios->c_iflag;
usr/src/ucbcmd/stty/sttyparse.c
388
termio->c_cflag = termios->c_cflag;
usr/src/ucbcmd/stty/sttyparse.c
390
termio->c_cc[i] = termios->c_cc[i];
usr/src/ucbcmd/stty/sttyparse.c
396
stermio->imode = termios->c_iflag;
usr/src/ucbcmd/stty/sttyparse.c
397
stermio->omode = termios->c_oflag;
usr/src/ucbcmd/stty/sttyparse.c
398
stermio->lmode = termios->c_lflag;
usr/src/ucbcmd/stty/sttyparse.c
399
stermio->tab = termios->c_cc[7];
usr/src/ucbcmd/stty/sttyparse.c
415
struct termios *cb;
usr/src/ucbcmd/stty/sttyparse.c
52
struct termios *cb;
usr/src/ucbcmd/tset/tset.c
1127
struct termios *ttymodes;
usr/src/ucbcmd/tset/tset.c
1131
ttymodes = (struct termios *)0;
usr/src/ucbcmd/tset/tset.c
436
struct termios modes;
usr/src/ucbcmd/tset/tset.c
437
struct termios oldmodes;
usr/src/uts/common/io/asy.c
2256
struct termios *termiosp;
usr/src/uts/common/io/asy.c
2282
len == sizeof (struct termios)) {
usr/src/uts/common/io/consconfig_dacf.c
1413
struct termios termios;
usr/src/uts/common/io/consconfig_dacf.c
1421
(void) ldi_ioctl(new_lh, TCGETS, (intptr_t)&termios,
usr/src/uts/common/io/consconfig_dacf.c
1425
if (consconfig_setmodes(stdindev, &termios) == 0) {
usr/src/uts/common/io/consconfig_dacf.c
1427
TCSETSF, (intptr_t)&termios,
usr/src/uts/common/io/consconfig_dacf.c
159
static int consconfig_setmodes(dev_t dev, struct termios *termiosp);
usr/src/uts/common/io/consconfig_dacf.c
1886
consconfig_setmodes(dev_t dev, struct termios *termiosp)
usr/src/uts/common/io/ldterm.c
1115
sizeof (struct termios)) {
usr/src/uts/common/io/ldterm.c
1118
emodes = (struct termios *)mp->b_cont->b_rptr;
usr/src/uts/common/io/ldterm.c
1120
sizeof (struct termios));
usr/src/uts/common/io/ldterm.c
4132
struct termios *cb;
usr/src/uts/common/io/ldterm.c
4133
struct termios oldmodes;
usr/src/uts/common/io/ldterm.c
4135
error = miocpullup(mp, sizeof (struct termios));
usr/src/uts/common/io/ldterm.c
4141
cb = (struct termios *)mp->b_cont->b_rptr;
usr/src/uts/common/io/ldterm.c
4190
struct termios oldmodes;
usr/src/uts/common/io/ldterm.c
453
static int chgstropts(struct termios *, ldtermstd_state_t *, queue_t *);
usr/src/uts/common/io/ldterm.c
4801
chgstropts(struct termios *oldmodep, ldtermstd_state_t *tp, queue_t *q)
usr/src/uts/common/io/ldterm.c
4881
struct termios *cb =
usr/src/uts/common/io/ldterm.c
4882
(struct termios *)mp->b_cont->b_rptr;
usr/src/uts/common/io/ldterm.c
674
struct termios *termiosp;
usr/src/uts/common/io/ldterm.c
690
len == sizeof (struct termios)) {
usr/src/uts/common/io/ldterm.c
700
bzero(&tp->t_dmodes, sizeof (struct termios));
usr/src/uts/common/io/ldterm.c
959
struct termios *emodes; /* effective modes set by driver */
usr/src/uts/common/io/ptem.c
159
struct termios *termiosp;
usr/src/uts/common/io/ptem.c
219
len == sizeof (struct termios)) {
usr/src/uts/common/io/ptem.c
614
struct termios *termiosp;
usr/src/uts/common/io/ptem.c
669
error = miocpullup(mp, sizeof (struct termios));
usr/src/uts/common/io/ptem.c
674
cflags = ((struct termios *)
usr/src/uts/common/io/ptem.c
726
dp = allocb(sizeof (struct termios), BPRI_MED);
usr/src/uts/common/io/ptem.c
731
termiosp = (struct termios *)dp->b_rptr;
usr/src/uts/common/io/ptem.c
733
mioc2ack(mp, dp, sizeof (struct termios), 0);
usr/src/uts/common/io/rlmod.c
1086
struct termios *tp;
usr/src/uts/common/io/rlmod.c
1104
error = miocpullup(mp, sizeof (struct termios));
usr/src/uts/common/io/rlmod.c
1109
tp = (struct termios *)(mp->b_cont->b_rptr);
usr/src/uts/common/io/ttcompat.c
1037
from_compat(compat_state_t *csp, struct termios *termiosp)
usr/src/uts/common/io/ttcompat.c
1212
to_compat(struct termios *termiosp, compat_state_t *csp)
usr/src/uts/common/io/ttcompat.c
164
static void from_compat(compat_state_t *, struct termios *);
usr/src/uts/common/io/ttcompat.c
165
static void to_compat(struct termios *, compat_state_t *);
usr/src/uts/common/io/ttcompat.c
726
to_compat((struct termios *)datap->b_rptr, &tp->t_curstate);
usr/src/uts/common/io/ttcompat.c
759
to_compat((struct termios *)datap->b_rptr, &tp->t_curstate);
usr/src/uts/common/io/ttcompat.c
768
to_compat((struct termios *)datap->b_rptr, &tp->t_curstate);
usr/src/uts/common/io/ttcompat.c
777
to_compat((struct termios *)datap->b_rptr, &tp->t_curstate);
usr/src/uts/common/io/ttcompat.c
791
to_compat((struct termios *)datap->b_rptr, &tp->t_curstate);
usr/src/uts/common/io/ttcompat.c
822
from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr);
usr/src/uts/common/io/ttcompat.c
835
to_compat((struct termios *)datap->b_rptr, &tp->t_curstate);
usr/src/uts/common/io/ttcompat.c
842
from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr);
usr/src/uts/common/io/ttcompat.c
855
to_compat((struct termios *)datap->b_rptr, &tp->t_curstate);
usr/src/uts/common/io/ttcompat.c
862
from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr);
usr/src/uts/common/io/ttcompat.c
875
to_compat((struct termios *)datap->b_rptr, &tp->t_curstate);
usr/src/uts/common/io/ttcompat.c
881
from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr);
usr/src/uts/common/io/ttcompat.c
894
to_compat((struct termios *)datap->b_rptr, &tp->t_curstate);
usr/src/uts/common/io/ttcompat.c
900
from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr);
usr/src/uts/common/io/ttcompat.c
913
to_compat((struct termios *)datap->b_rptr, &tp->t_curstate);
usr/src/uts/common/io/ttcompat.c
920
from_compat(&tp->t_curstate, (struct termios *)datap->b_rptr);
usr/src/uts/common/io/ttcompat.c
932
((struct termios *)datap->b_rptr)->c_cflag |= HUPCL;
usr/src/uts/common/io/tty_common.c
150
struct termios *cb;
usr/src/uts/common/io/tty_common.c
152
if (miocpullup(mp, sizeof (struct termios)) != 0) {
usr/src/uts/common/io/tty_common.c
161
cb = (struct termios *)mp->b_cont->b_rptr;
usr/src/uts/common/io/tty_common.c
312
struct termios *cb;
usr/src/uts/common/io/tty_common.c
315
if ((datap = allocb(sizeof (struct termios),
usr/src/uts/common/io/tty_common.c
317
ioctlrespsize = sizeof (struct termios);
usr/src/uts/common/io/tty_common.c
320
cb = (struct termios *)datap->b_wptr;
usr/src/uts/common/io/tty_common.c
325
bzero(cb, sizeof (struct termios));
usr/src/uts/common/io/tty_common.c
327
datap->b_wptr += sizeof (struct termios);
usr/src/uts/common/io/tty_common.c
328
iocp->ioc_count = sizeof (struct termios);
usr/src/uts/common/io/tty_common.c
33
static struct termios default_termios = {
usr/src/uts/common/io/tty_common.c
442
struct termios new_termios;
usr/src/uts/common/io/tty_common.c
443
struct termios *tp;
usr/src/uts/common/io/tty_common.c
473
sizeof (struct termios)) != DDI_PROP_SUCCESS) {
usr/src/uts/common/io/tty_common.c
485
bzero(&new_termios, sizeof (struct termios));
usr/src/uts/common/io/tty_common.c
537
(uchar_t *)tp, sizeof (struct termios)) != DDI_PROP_SUCCESS) {
usr/src/uts/common/io/tty_pts.c
687
struct termios *cb;
usr/src/uts/common/io/tty_pts.c
689
error = miocpullup(mp, sizeof (struct termios));
usr/src/uts/common/io/tty_pts.c
693
cb = (struct termios *)mp->b_cont->b_rptr;
usr/src/uts/common/io/tty_pts.c
716
struct termios *cb;
usr/src/uts/common/io/tty_pts.c
718
error = miocpullup(mp, sizeof (struct termios));
usr/src/uts/common/io/tty_pts.c
722
cb = (struct termios *)mp->b_cont->b_rptr;
usr/src/uts/common/io/usb/clients/usbser/usbser.c
1547
struct termios *termiosp;
usr/src/uts/common/io/usb/clients/usbser/usbser.c
1557
if (len == sizeof (struct termios)) {
usr/src/uts/common/io/vcons.c
166
struct termios *termiosp;
usr/src/uts/common/io/vcons.c
181
if (len == sizeof (struct termios))
usr/src/uts/common/os/streamio.c
3453
strioc.ic_len = sizeof (struct termios);
usr/src/uts/common/sys/ldterm.h
208
struct termios t_modes; /* Effective modes set by the provider below */
usr/src/uts/common/sys/ldterm.h
209
struct termios t_amodes; /* Apparent modes for user programs */
usr/src/uts/common/sys/ldterm.h
210
struct termios t_dmodes; /* Modes that driver wishes to process */
usr/src/uts/common/sys/termios.h
103
extern speed_t cfgetospeed(const struct termios *);
usr/src/uts/common/sys/termios.h
104
extern int cfsetospeed(struct termios *, speed_t);
usr/src/uts/common/sys/termios.h
105
extern speed_t cfgetispeed(const struct termios *);
usr/src/uts/common/sys/termios.h
106
extern int cfsetispeed(struct termios *, speed_t);
usr/src/uts/common/sys/termios.h
107
extern int tcgetattr(int, struct termios *);
usr/src/uts/common/sys/termios.h
108
extern int tcsetattr(int, int, const struct termios *);
usr/src/uts/sun/io/ms.c
278
struct termios *cb;
usr/src/uts/sun/io/ms.c
315
while ((datap = allocb(sizeof (struct termios), BPRI_HI)) == NULL) {
usr/src/uts/sun/io/ms.c
316
bufcall_id_t id = qbufcall(q, sizeof (struct termios),
usr/src/uts/sun/io/ms.c
330
iocb->ioc_count = sizeof (struct termios);
usr/src/uts/sun/io/ms.c
332
cb = (struct termios *)datap->b_wptr;
usr/src/uts/sun/io/ms.c
892
struct termios *cb;
usr/src/uts/sun/io/ms.c
964
if ((datap = allocb(sizeof (struct termios),
usr/src/uts/sun/io/ms.c
971
iocb->ioc_count = sizeof (struct termios);
usr/src/uts/sun/io/ms.c
973
cb = (struct termios *)datap->b_rptr;
usr/src/uts/sun/io/zs_async.c
721
struct termios *termiosp;
usr/src/uts/sun/io/zs_async.c
787
len == sizeof (struct termios)) {
usr/src/uts/sun4/io/su_driver.c
919
struct termios *termiosp;
usr/src/uts/sun4/io/su_driver.c
973
len == sizeof (struct termios)) {
usr/src/uts/sun4v/io/vcc.c
1796
struct termios term;
usr/src/uts/sun4v/sys/vcc_impl.h
260
struct termios term; /* terminal emulation */