bin/csh/file.c
141
struct termios tty, tty_normal;
bin/csh/file.c
147
(void)tcgetattr(SHOUT, &tty);
bin/csh/file.c
148
tty_normal = tty;
bin/csh/file.c
149
tty.c_iflag &= ~INLCR;
bin/csh/file.c
150
tty.c_oflag &= ~ONLCR;
bin/csh/file.c
151
(void)tcsetattr(SHOUT, TCSADRAIN, &tty);
bin/csh/file.c
163
struct termios tty, tty_normal;
bin/csh/file.c
174
(void)tcgetattr(SHOUT, &tty);
bin/csh/file.c
175
tty_normal = tty;
bin/csh/file.c
176
tty.c_lflag &= ~(ECHOKE | ECHO | ECHOE | ECHOK | ECHONL | ECHOPRT | ECHOCTL);
bin/csh/file.c
178
tty.c_lflag &= ~ICANON;
bin/csh/file.c
179
tty.c_cc[VMIN] = 0;
bin/csh/file.c
180
(void)tcsetattr(SHOUT, TCSADRAIN, &tty);
bin/csh/file.c
233
tty.c_lflag |= ICANON;
bin/csh/file.c
234
(void)tcsetattr(SHOUT, TCSADRAIN, &tty);
bin/csh/file.c
377
struct termios tty;
bin/csh/file.c
379
(void)tcgetattr(SHOUT, &tty);
bin/csh/file.c
380
tty.c_lflag |= PENDIN;
bin/csh/file.c
381
(void)tcsetattr(SHOUT, TCSADRAIN, &tty);
bin/csh/lex.c
1373
struct termios tty;
bin/csh/lex.c
1377
if (tcgetattr(SHIN, &tty) == 0 && (tty.c_lflag & ICANON))
distrib/utils/more/ttyin.c
51
static int tty;
distrib/utils/more/ttyin.c
60
tty = 2;
distrib/utils/more/ttyin.c
74
result = iread(tty, &c, 1);
games/dm/dm.c
194
c_tty(const char *tty)
games/dm/dm.c
204
if (!strcmp(gametty, tty) || (p_tty && !strcmp(p_tty, tty)))
lib/libc/gen/getttyent.c
114
tty.ty_name = p;
lib/libc/gen/getttyent.c
116
if (*(tty.ty_getty = p) == '\0')
lib/libc/gen/getttyent.c
117
tty.ty_getty = tty.ty_type = NULL;
lib/libc/gen/getttyent.c
120
if (*(tty.ty_type = p) == '\0')
lib/libc/gen/getttyent.c
121
tty.ty_type = NULL;
lib/libc/gen/getttyent.c
125
tty.ty_status = 0;
lib/libc/gen/getttyent.c
126
tty.ty_window = NULL;
lib/libc/gen/getttyent.c
127
tty.ty_class = NULL;
lib/libc/gen/getttyent.c
133
tty.ty_status &= ~TTY_ON;
lib/libc/gen/getttyent.c
135
tty.ty_status |= TTY_ON;
lib/libc/gen/getttyent.c
137
tty.ty_status |= TTY_SECURE;
lib/libc/gen/getttyent.c
139
tty.ty_status |= TTY_LOCAL;
lib/libc/gen/getttyent.c
141
tty.ty_status |= TTY_RTSCTS;
lib/libc/gen/getttyent.c
143
tty.ty_status |= TTY_DTRCTS;
lib/libc/gen/getttyent.c
145
tty.ty_status |= TTY_SOFTCAR;
lib/libc/gen/getttyent.c
147
tty.ty_status |= TTY_MDMBUF;
lib/libc/gen/getttyent.c
149
tty.ty_window = value(p);
lib/libc/gen/getttyent.c
151
tty.ty_class = value(p);
lib/libc/gen/getttyent.c
160
tty.ty_comment = p;
lib/libc/gen/getttyent.c
162
tty.ty_comment = NULL;
lib/libc/gen/getttyent.c
165
return &tty;
lib/libc/gen/getttyent.c
69
getttynam(const char *tty)
lib/libc/gen/getttyent.c
73
_DIAGASSERT(tty != NULL);
lib/libc/gen/getttyent.c
77
if (!strcmp(tty, t->ty_name))
lib/libc/gen/getttyent.c
86
static struct ttyent tty;
lib/libcompat/4.1/gtty.c
52
gtty(fd, tty)
lib/libcompat/4.1/gtty.c
54
struct sgttyb *tty;
lib/libcompat/4.1/gtty.c
58
_DIAGASSERT(tty != 0);
lib/libcompat/4.1/gtty.c
60
return (ioctl(fd, TIOCGETP, tty));
lib/libcompat/4.1/stty.c
52
stty(fd, tty)
lib/libcompat/4.1/stty.c
54
struct sgttyb *tty;
lib/libcompat/4.1/stty.c
58
_DIAGASSERT(tty != 0);
lib/libcompat/4.1/stty.c
60
return (ioctl(fd, TIOCSETP, tty));
lib/libkvm/kvm_proc.c
309
struct tty tty;
lib/libkvm/kvm_proc.c
367
if (KREAD(kd, (u_long)sess.s_ttyp, &tty)) {
lib/libkvm/kvm_proc.c
372
eproc.e_tdev = (uint32_t)tty.t_dev;
lib/libkvm/kvm_proc.c
373
eproc.e_tsess = tty.t_session;
lib/libkvm/kvm_proc.c
374
if (tty.t_pgrp != NULL) {
lib/libkvm/kvm_proc.c
375
if (KREAD(kd, (u_long)tty.t_pgrp, &pgrp)) {
lib/libkvm/kvm_proc.c
378
tty.t_pgrp);
lib/libpam/modules/pam_lastlog/pam_lastlog.c
119
const char *user, *rhost, *tty, *nuser;
lib/libpam/modules/pam_lastlog/pam_lastlog.c
152
tty = (const char *)vtty;
lib/libpam/modules/pam_lastlog/pam_lastlog.c
154
if (tty == NULL) {
lib/libpam/modules/pam_lastlog/pam_lastlog.c
164
if (strncmp(tty, _PATH_DEV, strlen(_PATH_DEV)) == 0)
lib/libpam/modules/pam_lastlog/pam_lastlog.c
165
tty = tty + strlen(_PATH_DEV);
lib/libpam/modules/pam_lastlog/pam_lastlog.c
167
if (*tty == '\0') {
lib/libpam/modules/pam_lastlog/pam_lastlog.c
188
doutmpx(user, rhost, tty, ss, &now);
lib/libpam/modules/pam_lastlog/pam_lastlog.c
189
dolastlogx(pamh, quiet, pwd, rhost, tty, ss, &now);
lib/libpam/modules/pam_lastlog/pam_lastlog.c
193
doutmp(user, rhost, tty, &now);
lib/libpam/modules/pam_lastlog/pam_lastlog.c
194
dolastlog(pamh, quiet, pwd, rhost, tty, &now);
lib/libpam/modules/pam_lastlog/pam_lastlog.c
208
const char *tty, *nuser;
lib/libpam/modules/pam_lastlog/pam_lastlog.c
218
tty = (const char *)vtty;
lib/libpam/modules/pam_lastlog/pam_lastlog.c
220
if (strncmp(tty, _PATH_DEV, strlen(_PATH_DEV)) == 0)
lib/libpam/modules/pam_lastlog/pam_lastlog.c
221
tty = tty + strlen(_PATH_DEV);
lib/libpam/modules/pam_lastlog/pam_lastlog.c
223
if (*tty == '\0')
lib/libpam/modules/pam_lastlog/pam_lastlog.c
229
if (logoutx(tty, 0, DEAD_PROCESS))
lib/libpam/modules/pam_lastlog/pam_lastlog.c
230
logwtmpx(tty, "", "", 0, DEAD_PROCESS);
lib/libpam/modules/pam_lastlog/pam_lastlog.c
233
__func__, tty);
lib/libpam/modules/pam_lastlog/pam_lastlog.c
237
if (logout(tty))
lib/libpam/modules/pam_lastlog/pam_lastlog.c
238
logwtmp(tty, "", "");
lib/libpam/modules/pam_lastlog/pam_lastlog.c
241
__func__, tty);
lib/libpam/modules/pam_lastlog/pam_lastlog.c
271
doutmpx(const char *username, const char *hostname, const char *tty,
lib/libpam/modules/pam_lastlog/pam_lastlog.c
285
(void)strncpy(utmpx.ut_line, tty, sizeof(utmpx.ut_line));
lib/libpam/modules/pam_lastlog/pam_lastlog.c
288
t = tty + strlen(tty);
lib/libpam/modules/pam_lastlog/pam_lastlog.c
289
if ((size_t)(t - tty) >= sizeof(utmpx.ut_id)) {
lib/libpam/modules/pam_lastlog/pam_lastlog.c
293
(void)strncpy(utmpx.ut_id, tty, sizeof(utmpx.ut_id));
lib/libpam/modules/pam_lastlog/pam_lastlog.c
304
const char *hostname, const char *tty, const struct sockaddr_storage *ss,
lib/libpam/modules/pam_lastlog/pam_lastlog.c
315
(void)strncpy(ll.ll_line, tty, sizeof(ll.ll_line));
lib/libpam/modules/pam_lastlog/pam_lastlog.c
335
doutmp(const char *username, const char *hostname, const char *tty,
lib/libpam/modules/pam_lastlog/pam_lastlog.c
345
(void)strncpy(utmp.ut_line, tty, sizeof(utmp.ut_line));
lib/libpam/modules/pam_lastlog/pam_lastlog.c
351
const char *hostname, const char *tty, const struct timeval *now)
lib/libpam/modules/pam_lastlog/pam_lastlog.c
373
(void)strncpy(ll.ll_line, tty, sizeof(ll.ll_line));
lib/libpam/modules/pam_login_access/pam_login_access.c
64
const void *rhost, *tty, *user;
lib/libpam/modules/pam_login_access/pam_login_access.c
81
pam_err = pam_get_item(pamh, PAM_TTY, &tty);
lib/libpam/modules/pam_login_access/pam_login_access.c
89
(const char *)user, (const char *)tty);
lib/libpam/modules/pam_login_access/pam_login_access.c
90
if (login_access(user, tty) != 0)
lib/libpam/modules/pam_login_access/pam_login_access.c
93
(const char *)user, (const char *)tty);
lib/libpam/modules/pam_securetty/pam_securetty.c
100
if (tty != NULL && (ty = getttynam(tty)) != NULL &&
lib/libpam/modules/pam_securetty/pam_securetty.c
113
(const char *)tty);
lib/libpam/modules/pam_securetty/pam_securetty.c
117
pwd->pw_name, (const char *)tty);
lib/libpam/modules/pam_securetty/pam_securetty.c
68
const void *tty;
lib/libpam/modules/pam_securetty/pam_securetty.c
88
pam_err = pam_get_item(pamh, PAM_TTY, &tty);
lib/libpam/modules/pam_securetty/pam_securetty.c
92
PAM_LOG("Got TTY: %s", (const char *)tty);
lib/libpam/modules/pam_securetty/pam_securetty.c
95
if (tty != NULL && strncmp(TTY_PREFIX, tty, sizeof(TTY_PREFIX)) == 0) {
lib/libpam/modules/pam_securetty/pam_securetty.c
97
tty = (const char *)tty + sizeof(TTY_PREFIX) - 1;
lib/libutil/compat/compat_login.c
63
int tty;
lib/libutil/compat/compat_login.c
68
tty = ttyslot();
lib/libutil/compat/compat_login.c
69
if (tty > 0 && (fd = open(_PATH_UTMP, O_WRONLY|O_CREAT, 0644)) >= 0) {
lib/libutil/compat/compat_login.c
70
(void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET);
lib/libutil/login.c
56
int tty;
lib/libutil/login.c
60
tty = ttyslot();
lib/libutil/login.c
61
if (tty > 0 && (fd = open(_PATH_UTMP, O_WRONLY|O_CREAT, 0644)) >= 0) {
lib/libutil/login.c
62
(void)lseek(fd, (off_t)(tty * sizeof(struct utmp)), SEEK_SET);
lib/libutil/pidlock.c
182
checktty(const char *tty)
lib/libutil/pidlock.c
188
(void)strlcat(ttyfile, tty, sizeof(ttyfile));
lib/libutil/pidlock.c
203
makelock(char *buf, size_t bufsiz, const char *tty)
lib/libutil/pidlock.c
206
(void)strlcat(buf, tty, bufsiz);
lib/libutil/pidlock.c
212
ttylock(const char *tty, int flags, pid_t *locker)
lib/libutil/pidlock.c
216
_DIAGASSERT(tty != NULL);
lib/libutil/pidlock.c
218
if (checktty(tty) != 0)
lib/libutil/pidlock.c
222
return pidlock(makelock(lockfile, sizeof(lockfile), tty),
lib/libutil/pidlock.c
227
ttyunlock(const char *tty)
lib/libutil/pidlock.c
231
_DIAGASSERT(tty != NULL);
lib/libutil/pidlock.c
233
if (checktty(tty) != 0)
lib/libutil/pidlock.c
237
return unlink(makelock(lockfile, sizeof(lockfile), tty));
lib/libutil/ttyaction.c
101
snprintf(env_tty, sizeof(env_tty), "TTY=%s", tty);
lib/libutil/ttyaction.c
127
if (fnmatch(p1, tty, 0) || fnmatch(p2, act, 0))
lib/libutil/ttyaction.c
66
ttyaction(const char *tty, const char *act, const char *user)
lib/libutil/ttyaction.c
80
_DIAGASSERT(tty != NULL);
lib/libutil/ttyaction.c
89
if (!strncmp(tty, "/dev/", (size_t)5))
lib/libutil/ttyaction.c
90
tty += 5;
libexec/comsat/comsat.c
226
char tty[sizeof(_PATH_DEV) + sizeof(ep->line) + 1];
libexec/comsat/comsat.c
237
(void)snprintf(tty, sizeof(tty), "%s%s", _PATH_DEV, ep->line);
libexec/comsat/comsat.c
238
if (stat(tty, &stb) == -1 || !(stb.st_mode & S_IEXEC)) {
libexec/comsat/comsat.c
239
dsyslog(LOG_DEBUG, "%s: wrong mode on %s", ep->name, tty);
libexec/comsat/comsat.c
242
dsyslog(LOG_DEBUG, "notify %s on %s", ep->name, tty);
libexec/comsat/comsat.c
254
if ((tp = fopen(tty, "w")) == NULL) {
libexec/comsat/comsat.c
255
dsyslog(LOG_ERR, "open `%s' (%s)", tty, strerror(errno));
libexec/comsat/comsat.c
259
dsyslog(LOG_ERR, "tcgetattr `%s' (%s)", tty, strerror(errno));
libexec/ftpd/ftpd.c
219
char *tty = ttyline;
libexec/rpc.rusersd/rusers_proc.c
140
getidle(const char *tty, char *display)
libexec/rpc.rusersd/rusers_proc.c
148
if (*tty == 'X') {
libexec/rpc.rusersd/rusers_proc.c
161
snprintf(dev_name, sizeof dev_name, "%s/%s", _PATH_DEV, tty);
libexec/talkd/announce.c
162
if (ttymsg(&iovec, 1, tty, RING_WAIT - 5) != NULL)
libexec/talkd/announce.c
94
print_mesg(const char *tty, CTL_MSG *request, const char *remote_machine)
libexec/talkd/process.c
183
find_user(const char *name, char *tty, size_t ttysize)
libexec/talkd/process.c
197
if (*tty == '\0')
libexec/talkd/process.c
216
strlcpy(tty, ep->line, ttysize) < ttysize) {
libexec/talkd/process.c
220
} else if (strcmp(ep->line, tty) == 0) {
libexec/utmp_update/utmp_update.c
136
(void)snprintf(tty, sizeof(tty), "%s%s", _PATH_DEV, utx->ut_line);
libexec/utmp_update/utmp_update.c
137
fd = open(tty, O_RDONLY|O_NONBLOCK, 0);
libexec/utmp_update/utmp_update.c
140
logerr(errno, "Cannot stat `%s'", tty);
libexec/utmp_update/utmp_update.c
142
logerr(0, "%s: Is not owned by you", tty);
libexec/utmp_update/utmp_update.c
144
logerr(0, "%s: Not a tty device", tty);
libexec/utmp_update/utmp_update.c
146
if (access(tty, W_OK|R_OK) == -1)
libexec/utmp_update/utmp_update.c
147
logerr(errno, "Can't access `%s'", tty);
libexec/utmp_update/utmp_update.c
157
logerr(errno, "Cannot open `%s'", tty);
libexec/utmp_update/utmp_update.c
165
"utmp pid %ld != parent %ld", tty,
libexec/utmp_update/utmp_update.c
83
char tty[MAXPATHLEN];
sbin/slattach/slattach.c
129
tty.c_cflag = CREAD | CS8 | cflag;
sbin/slattach/slattach.c
130
tty.c_iflag = 0;
sbin/slattach/slattach.c
131
tty.c_lflag = 0;
sbin/slattach/slattach.c
132
tty.c_oflag = 0;
sbin/slattach/slattach.c
133
tty.c_cc[VMIN] = 1;
sbin/slattach/slattach.c
134
tty.c_cc[VTIME] = 0;
sbin/slattach/slattach.c
135
cfsetspeed(&tty, speed);
sbin/slattach/slattach.c
136
if (tcsetattr(fd, TCSADRAIN, &tty) < 0)
sbin/slattach/slattach.c
81
struct termios tty;
sys/arch/alpha/alpha/promcons.c
158
struct tty *tp = prom_tty[unit];
sys/arch/alpha/alpha/promcons.c
169
struct tty *tp = prom_tty[minor(dev)];
sys/arch/alpha/alpha/promcons.c
177
struct tty *tp = prom_tty[minor(dev)];
sys/arch/alpha/alpha/promcons.c
185
struct tty *tp = prom_tty[minor(dev)];
sys/arch/alpha/alpha/promcons.c
194
struct tty *tp = prom_tty[unit];
sys/arch/alpha/alpha/promcons.c
204
promparam(struct tty *tp, struct termios *t)
sys/arch/alpha/alpha/promcons.c
211
promstart(struct tty *tp)
sys/arch/alpha/alpha/promcons.c
231
promstop(struct tty *tp, int flag)
sys/arch/alpha/alpha/promcons.c
245
struct tty *tp = v;
sys/arch/alpha/alpha/promcons.c
255
struct tty *
sys/arch/alpha/alpha/promcons.c
86
static struct tty *prom_tty[1];
sys/arch/alpha/alpha/promcons.c
89
void promstart(struct tty *);
sys/arch/alpha/alpha/promcons.c
91
int promparam(struct tty *, struct termios *);
sys/arch/alpha/alpha/promcons.c
99
struct tty *tp;
sys/arch/amiga/dev/ite.c
1011
struct tty *kbd_tty;
sys/arch/amiga/dev/ite.c
1336
struct tty *kbd_tty;
sys/arch/amiga/dev/ite.c
419
struct tty *tp;
sys/arch/amiga/dev/ite.c
480
struct tty *tp;
sys/arch/amiga/dev/ite.c
494
struct tty *tp;
sys/arch/amiga/dev/ite.c
505
struct tty *tp;
sys/arch/amiga/dev/ite.c
516
struct tty *tp;
sys/arch/amiga/dev/ite.c
524
struct tty *
sys/arch/amiga/dev/ite.c
536
struct tty *tp;
sys/arch/amiga/dev/ite.c
603
itestart(struct tty *tp)
sys/arch/amiga/dev/ite.c
693
ite_param(struct tty *tp, struct termios *t)
sys/arch/amiga/dev/ite.c
834
struct tty *kbd_tty;
sys/arch/amiga/dev/itevar.h
200
void itestart(struct tty *);
sys/arch/amiga/dev/itevar.h
206
int ite_param(struct tty *, struct termios *);
sys/arch/amiga/dev/itevar.h
52
struct tty *tp;
sys/arch/amiga/dev/mfc.c
1047
struct tty *tp = sc->sc_tty;
sys/arch/amiga/dev/mfc.c
1090
struct tty *tp;
sys/arch/amiga/dev/mfc.c
1135
struct tty *tp;
sys/arch/amiga/dev/mfc.c
1176
struct tty *tp = sc->sc_tty;
sys/arch/amiga/dev/mfc.c
176
struct tty *sc_tty;
sys/arch/amiga/dev/mfc.c
210
int mfcsparam( struct tty *, struct termios *);
sys/arch/amiga/dev/mfc.c
211
int mfcshwiflow(struct tty *, int);
sys/arch/amiga/dev/mfc.c
212
void mfcsstart(struct tty *);
sys/arch/amiga/dev/mfc.c
493
struct tty *tp;
sys/arch/amiga/dev/mfc.c
511
tp->t_oproc = (void (*) (struct tty *)) mfcsstart;
sys/arch/amiga/dev/mfc.c
589
struct tty *tp;
sys/arch/amiga/dev/mfc.c
621
sc->sc_tty = (struct tty *) NULL;
sys/arch/amiga/dev/mfc.c
631
struct tty *tp = sc->sc_tty;
sys/arch/amiga/dev/mfc.c
641
struct tty *tp = sc->sc_tty;
sys/arch/amiga/dev/mfc.c
652
struct tty *tp = sc->sc_tty;
sys/arch/amiga/dev/mfc.c
659
struct tty *
sys/arch/amiga/dev/mfc.c
670
register struct tty *tp;
sys/arch/amiga/dev/mfc.c
740
mfcsparam(struct tty *tp, struct termios *t)
sys/arch/amiga/dev/mfc.c
808
mfcshwiflow(struct tty *tp, int flag)
sys/arch/amiga/dev/mfc.c
821
mfcsstart(struct tty *tp)
sys/arch/amiga/dev/mfc.c
878
mfcsstop(struct tty *tp, int flag)
sys/arch/amiga/dev/mfc.c
960
struct tty *tp;
sys/arch/amiga/dev/msc.c
1080
mscstop(register struct tty *tp, int flag)
sys/arch/amiga/dev/msc.c
1176
struct tty *
sys/arch/amiga/dev/msc.c
151
int mscparam(struct tty *, struct termios *);
sys/arch/amiga/dev/msc.c
152
void mscstart(struct tty *);
sys/arch/amiga/dev/msc.c
153
int mschwiflow(struct tty *, int);
sys/arch/amiga/dev/msc.c
159
struct tty *msc_tty[MSCTTYS]; /* ttys for all lines */
sys/arch/amiga/dev/msc.c
330
register struct tty *tp;
sys/arch/amiga/dev/msc.c
363
msc_tty[ttyn+1] = (struct tty *)NULL;
sys/arch/amiga/dev/msc.c
378
tp->t_oproc = (void (*) (struct tty *)) mscstart;
sys/arch/amiga/dev/msc.c
484
register struct tty *tp;
sys/arch/amiga/dev/msc.c
521
register struct tty *tp;
sys/arch/amiga/dev/msc.c
535
register struct tty *tp;
sys/arch/amiga/dev/msc.c
548
register struct tty *tp;
sys/arch/amiga/dev/msc.c
574
register struct tty *tp;
sys/arch/amiga/dev/msc.c
791
register struct tty *tp;
sys/arch/amiga/dev/msc.c
891
mscparam(register struct tty *tp, register struct termios *t)
sys/arch/amiga/dev/msc.c
949
mschwiflow(struct tty *tp, int flag)
sys/arch/amiga/dev/msc.c
984
mscstart(register struct tty *tp)
sys/arch/amiga/dev/ser.c
117
void serstart(struct tty *);
sys/arch/amiga/dev/ser.c
119
int serparam(struct tty *, struct termios *);
sys/arch/amiga/dev/ser.c
121
int serhwiflow(struct tty *, int);
sys/arch/amiga/dev/ser.c
125
static void ser_putchar(struct tty *, u_short);
sys/arch/amiga/dev/ser.c
145
struct tty ser_cons;
sys/arch/amiga/dev/ser.c
146
struct tty *ser_tty;
sys/arch/amiga/dev/ser.c
231
struct tty *tp;
sys/arch/amiga/dev/ser.c
270
tp->t_oproc = (void (*) (struct tty *)) serstart;
sys/arch/amiga/dev/ser.c
287
struct tty *tp;
sys/arch/amiga/dev/ser.c
379
struct tty *tp;
sys/arch/amiga/dev/ser.c
400
struct tty *tp = sc->ser_tty;
sys/arch/amiga/dev/ser.c
432
ser_tty = (struct tty *) NULL;
sys/arch/amiga/dev/ser.c
464
struct tty *
sys/arch/amiga/dev/ser.c
536
struct tty *tp = ser_tty;
sys/arch/amiga/dev/ser.c
579
struct tty *tp;
sys/arch/amiga/dev/ser.c
639
struct tty *tp;
sys/arch/amiga/dev/ser.c
695
register struct tty *tp;
sys/arch/amiga/dev/ser.c
76
struct tty *ser_tty;
sys/arch/amiga/dev/ser.c
763
serparam(struct tty *tp, struct termios *t)
sys/arch/amiga/dev/ser.c
823
int serhwiflow(struct tty *tp, int flag)
sys/arch/amiga/dev/ser.c
836
ser_putchar(struct tty *tp, u_short c)
sys/arch/amiga/dev/ser.c
868
struct tty *tp;
sys/arch/amiga/dev/ser.c
908
serstart(struct tty *tp)
sys/arch/amiga/dev/ser.c
972
serstop(struct tty *tp, int flag)
sys/arch/arc/dev/pccons.c
208
void pcstart(struct tty *);
sys/arch/arc/dev/pccons.c
209
int pcparam(struct tty *, struct termios *);
sys/arch/arc/dev/pccons.c
606
struct tty *tp;
sys/arch/arc/dev/pccons.c
646
struct tty *tp = sc->sc_tty;
sys/arch/arc/dev/pccons.c
660
struct tty *tp = sc->sc_tty;
sys/arch/arc/dev/pccons.c
669
struct tty *tp = sc->sc_tty;
sys/arch/arc/dev/pccons.c
678
struct tty *tp = sc->sc_tty;
sys/arch/arc/dev/pccons.c
683
struct tty *
sys/arch/arc/dev/pccons.c
687
struct tty *tp = sc->sc_tty;
sys/arch/arc/dev/pccons.c
701
struct tty *tp = sc->sc_tty;
sys/arch/arc/dev/pccons.c
724
struct tty *tp = sc->sc_tty;
sys/arch/arc/dev/pccons.c
802
pcstart(struct tty *tp)
sys/arch/arc/dev/pccons.c
922
pcparam(struct tty *tp, struct termios *t)
sys/arch/arc/dev/pcconsvar.h
109
struct tty;
sys/arch/arc/dev/pcconsvar.h
113
struct tty *sc_tty;
sys/arch/arm/amlogic/meson_uart.c
169
struct tty *tp;
sys/arch/arm/amlogic/meson_uart.c
305
struct tty *tp = sc->sc_tty;
sys/arch/arm/amlogic/meson_uart.c
337
struct tty *tp = sc->sc_tty;
sys/arch/arm/amlogic/meson_uart.c
357
struct tty *tp = sc->sc_tty;
sys/arch/arm/amlogic/meson_uart.c
367
struct tty *tp = sc->sc_tty;
sys/arch/arm/amlogic/meson_uart.c
377
struct tty *tp = sc->sc_tty;
sys/arch/arm/amlogic/meson_uart.c
387
struct tty *tp = sc->sc_tty;
sys/arch/arm/amlogic/meson_uart.c
397
static struct tty *
sys/arch/arm/amlogic/meson_uart.c
407
meson_uart_stop(struct tty *tp, int flag)
sys/arch/arm/amlogic/meson_uart.c
412
meson_uart_start(struct tty *tp)
sys/arch/arm/amlogic/meson_uart.c
449
meson_uart_param(struct tty *tp, struct termios *t)
sys/arch/arm/amlogic/meson_uart.c
463
struct tty *tp = sc->sc_tty;
sys/arch/arm/amlogic/meson_uart.c
502
struct tty *tp = sc->sc_tty;
sys/arch/arm/amlogic/meson_uart.c
76
static void meson_uart_start(struct tty *);
sys/arch/arm/amlogic/meson_uart.c
77
static int meson_uart_param(struct tty *, struct termios *);
sys/arch/arm/amlogic/meson_uart.c
97
struct tty *sc_tty;
sys/arch/arm/at91/at91dbgu.c
128
static int at91dbgu_param(struct tty *, struct termios *);
sys/arch/arm/at91/at91dbgu.c
129
static void at91dbgu_start(struct tty *);
sys/arch/arm/at91/at91dbgu.c
130
static int at91dbgu_hwiflow(struct tty *, int);
sys/arch/arm/at91/at91dbgu.c
143
inline static void at91dbgu_txsoft(struct at91dbgu_softc *, struct tty *);
sys/arch/arm/at91/at91dbgu.c
144
inline static void at91dbgu_rxsoft(struct at91dbgu_softc *, struct tty *);
sys/arch/arm/at91/at91dbgu.c
222
struct tty *tp;
sys/arch/arm/at91/at91dbgu.c
292
at91dbgu_param(struct tty *tp, struct termios *t)
sys/arch/arm/at91/at91dbgu.c
357
at91dbgu_hwiflow(struct tty *tp, int block)
sys/arch/arm/at91/at91dbgu.c
383
at91dbgu_start(struct tty *tp)
sys/arch/arm/at91/at91dbgu.c
464
struct tty *tp;
sys/arch/arm/at91/at91dbgu.c
602
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91dbgu.c
630
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91dbgu.c
642
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91dbgu.c
654
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91dbgu.c
662
struct tty *
sys/arch/arm/at91/at91dbgu.c
666
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91dbgu.c
675
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91dbgu.c
729
at91dbgu_stop(struct tty *tp, int flag)
sys/arch/arm/at91/at91dbgu.c
909
at91dbgu_txsoft(struct at91dbgu_softc *sc, struct tty *tp)
sys/arch/arm/at91/at91dbgu.c
920
at91dbgu_rxsoft(struct at91dbgu_softc *sc, struct tty *tp)
sys/arch/arm/at91/at91dbgu.c
922
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/arm/at91/at91dbguvar.h
60
struct tty *sc_tty;
sys/arch/arm/at91/at91usart.c
1034
at91usart_txsoft(struct at91usart_softc *sc, struct tty *tp)
sys/arch/arm/at91/at91usart.c
127
static int at91usart_param(struct tty *, struct termios *);
sys/arch/arm/at91/at91usart.c
128
static void at91usart_start(struct tty *);
sys/arch/arm/at91/at91usart.c
129
static int at91usart_hwiflow(struct tty *, int);
sys/arch/arm/at91/at91usart.c
159
inline static void at91usart_txsoft(struct at91usart_softc *, struct tty *);
sys/arch/arm/at91/at91usart.c
160
inline static void at91usart_rxsoft(struct at91usart_softc *, struct tty *, unsigned csr);
sys/arch/arm/at91/at91usart.c
243
struct tty *tp;
sys/arch/arm/at91/at91usart.c
330
at91usart_param(struct tty *tp, struct termios *t)
sys/arch/arm/at91/at91usart.c
392
at91usart_hwiflow(struct tty *tp, int block)
sys/arch/arm/at91/at91usart.c
444
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91usart.c
479
at91usart_start(struct tty *tp)
sys/arch/arm/at91/at91usart.c
566
struct tty *tp;
sys/arch/arm/at91/at91usart.c
694
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91usart.c
722
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91usart.c
734
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91usart.c
746
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91usart.c
754
struct tty *
sys/arch/arm/at91/at91usart.c
758
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91usart.c
767
struct tty *tp = sc->sc_tty;
sys/arch/arm/at91/at91usart.c
821
at91usart_stop(struct tty *tp, int flag)
sys/arch/arm/at91/at91usart.c
964
at91usart_rxsoft(struct at91usart_softc *sc, struct tty *tp, unsigned csr)
sys/arch/arm/at91/at91usart.c
976
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/arm/at91/at91usartvar.h
76
struct tty *sc_tty;
sys/arch/arm/clps711x/clpscom.c
139
static void clpscom_start(struct tty *);
sys/arch/arm/clps711x/clpscom.c
140
static int clpscom_param(struct tty *, struct termios *);
sys/arch/arm/clps711x/clpscom.c
141
static int clpscom_hwiflow(struct tty *, int);
sys/arch/arm/clps711x/clpscom.c
157
static void clpscom_rxsoft(struct clpscom_softc *, struct tty *);
sys/arch/arm/clps711x/clpscom.c
158
static void clpscom_mssoft(struct clpscom_softc *, struct tty *);
sys/arch/arm/clps711x/clpscom.c
394
struct tty *tp = sc->sc_tty;
sys/arch/arm/clps711x/clpscom.c
420
clpscom_start(struct tty *tp)
sys/arch/arm/clps711x/clpscom.c
473
clpscom_param(struct tty *tp, struct termios *t)
sys/arch/arm/clps711x/clpscom.c
562
clpscom_hwiflow(struct tty *tp, int block)
sys/arch/arm/clps711x/clpscom.c
573
struct tty *tp;
sys/arch/arm/clps711x/clpscom.c
682
struct tty *tp = sc->sc_tty;
sys/arch/arm/clps711x/clpscom.c
716
struct tty *tp = sc->sc_tty;
sys/arch/arm/clps711x/clpscom.c
729
struct tty *tp = sc->sc_tty;
sys/arch/arm/clps711x/clpscom.c
742
struct tty *tp = sc->sc_tty;
sys/arch/arm/clps711x/clpscom.c
803
struct tty *tp = sc->sc_tty;
sys/arch/arm/clps711x/clpscom.c
811
struct tty *
sys/arch/arm/clps711x/clpscom.c
821
clpscomstop(struct tty *tp, int flag)
sys/arch/arm/clps711x/clpscom.c
906
clpscom_rxsoft(struct clpscom_softc *sc, struct tty *tp)
sys/arch/arm/clps711x/clpscom.c
979
clpscom_mssoft(struct clpscom_softc *sc, struct tty *tp)
sys/arch/arm/clps711x/clpscom.c
98
struct tty *sc_tty;
sys/arch/arm/ep93xx/epcom.c
123
static int epcomparam(struct tty *, struct termios *);
sys/arch/arm/ep93xx/epcom.c
124
static void epcomstart(struct tty *);
sys/arch/arm/ep93xx/epcom.c
125
static int epcomhwiflow(struct tty *, int);
sys/arch/arm/ep93xx/epcom.c
136
inline static void epcom_txsoft(struct epcom_softc *, struct tty *);
sys/arch/arm/ep93xx/epcom.c
137
inline static void epcom_rxsoft(struct epcom_softc *, struct tty *);
sys/arch/arm/ep93xx/epcom.c
214
struct tty *tp;
sys/arch/arm/ep93xx/epcom.c
287
epcomparam(struct tty *tp, struct termios *t)
sys/arch/arm/ep93xx/epcom.c
354
epcomhwiflow(struct tty *tp, int block)
sys/arch/arm/ep93xx/epcom.c
379
epcomstart(struct tty *tp)
sys/arch/arm/ep93xx/epcom.c
465
struct tty *tp;
sys/arch/arm/ep93xx/epcom.c
603
struct tty *tp = sc->sc_tty;
sys/arch/arm/ep93xx/epcom.c
631
struct tty *tp = sc->sc_tty;
sys/arch/arm/ep93xx/epcom.c
643
struct tty *tp = sc->sc_tty;
sys/arch/arm/ep93xx/epcom.c
655
struct tty *tp = sc->sc_tty;
sys/arch/arm/ep93xx/epcom.c
663
struct tty *
sys/arch/arm/ep93xx/epcom.c
667
struct tty *tp = sc->sc_tty;
sys/arch/arm/ep93xx/epcom.c
676
struct tty *tp = sc->sc_tty;
sys/arch/arm/ep93xx/epcom.c
730
epcomstop(struct tty *tp, int flag)
sys/arch/arm/ep93xx/epcom.c
903
epcom_txsoft(struct epcom_softc *sc, struct tty *tp)
sys/arch/arm/ep93xx/epcom.c
914
epcom_rxsoft(struct epcom_softc *sc, struct tty *tp)
sys/arch/arm/ep93xx/epcom.c
916
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/arm/ep93xx/epcomvar.h
57
struct tty *sc_tty;
sys/arch/arm/footbridge/footbridge_com.c
227
static void fcomstart(struct tty *);
sys/arch/arm/footbridge/footbridge_com.c
228
static int fcomparam(struct tty *, struct termios *);
sys/arch/arm/footbridge/footbridge_com.c
234
struct tty *tp;
sys/arch/arm/footbridge/footbridge_com.c
287
struct tty *tp = sc->sc_tty;
sys/arch/arm/footbridge/footbridge_com.c
310
struct tty *tp = sc->sc_tty;
sys/arch/arm/footbridge/footbridge_com.c
319
struct tty *tp = sc->sc_tty;
sys/arch/arm/footbridge/footbridge_com.c
328
struct tty *tp = sc->sc_tty;
sys/arch/arm/footbridge/footbridge_com.c
337
struct tty *tp = sc->sc_tty;
sys/arch/arm/footbridge/footbridge_com.c
363
struct tty *
sys/arch/arm/footbridge/footbridge_com.c
372
fcomstart(struct tty *tp)
sys/arch/arm/footbridge/footbridge_com.c
430
fcomparam(struct tty *tp, struct termios *t)
sys/arch/arm/footbridge/footbridge_com.c
531
struct tty *tp = sc->sc_tty;
sys/arch/arm/footbridge/footbridge_com.c
567
struct tty *tp = sc->sc_tty;
sys/arch/arm/footbridge/footbridge_com.c
98
struct tty *sc_tty;
sys/arch/arm/imx/imxuart.c
1175
imxuparam(struct tty *tp, struct termios *t)
sys/arch/arm/imx/imxuart.c
1366
imxuhwiflow(struct tty *tp, int block)
sys/arch/arm/imx/imxuart.c
1426
imxustart(struct tty *tp)
sys/arch/arm/imx/imxuart.c
1483
imxustop(struct tty *tp, int flag)
sys/arch/arm/imx/imxuart.c
1522
imxuart_rxsoft(struct imxuart_softc *sc, struct tty *tp)
sys/arch/arm/imx/imxuart.c
1524
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/arm/imx/imxuart.c
1624
imxuart_txsoft(struct imxuart_softc *sc, struct tty *tp)
sys/arch/arm/imx/imxuart.c
1636
imxuart_stsoft(struct imxuart_softc *sc, struct tty *tp)
sys/arch/arm/imx/imxuart.c
1675
struct tty *tp;
sys/arch/arm/imx/imxuart.c
170
int imxuparam(struct tty *, struct termios *);
sys/arch/arm/imx/imxuart.c
171
void imxustart(struct tty *);
sys/arch/arm/imx/imxuart.c
172
int imxuhwiflow(struct tty *, int);
sys/arch/arm/imx/imxuart.c
207
integrate void imxuart_rxsoft(struct imxuart_softc *, struct tty *);
sys/arch/arm/imx/imxuart.c
208
integrate void imxuart_txsoft(struct imxuart_softc *, struct tty *);
sys/arch/arm/imx/imxuart.c
209
integrate void imxuart_stsoft(struct imxuart_softc *, struct tty *);
sys/arch/arm/imx/imxuart.c
327
struct tty *tp;
sys/arch/arm/imx/imxuart.c
495
struct tty *tp = sc->sc_tty;
sys/arch/arm/imx/imxuart.c
601
struct tty *tp = sc->sc_tty;
sys/arch/arm/imx/imxuart.c
648
struct tty *tp;
sys/arch/arm/imx/imxuart.c
801
struct tty *tp = sc->sc_tty;
sys/arch/arm/imx/imxuart.c
830
struct tty *tp = sc->sc_tty;
sys/arch/arm/imx/imxuart.c
843
struct tty *tp = sc->sc_tty;
sys/arch/arm/imx/imxuart.c
856
struct tty *tp = sc->sc_tty;
sys/arch/arm/imx/imxuart.c
864
struct tty *
sys/arch/arm/imx/imxuart.c
869
struct tty *tp = sc->sc_tty;
sys/arch/arm/imx/imxuart.c
878
struct tty *tp;
sys/arch/arm/imx/imxuartvar.h
125
struct tty *sc_tty;
sys/arch/arm/ixp12x0/ixp12x0_com.c
105
static int ixpcomparam(struct tty *, struct termios *);
sys/arch/arm/ixp12x0/ixp12x0_com.c
106
static void ixpcomstart(struct tty *);
sys/arch/arm/ixp12x0/ixp12x0_com.c
107
static int ixpcomhwiflow(struct tty *, int);
sys/arch/arm/ixp12x0/ixp12x0_com.c
118
inline static void ixpcom_txsoft(struct ixpcom_softc *, struct tty *);
sys/arch/arm/ixp12x0/ixp12x0_com.c
119
inline static void ixpcom_rxsoft(struct ixpcom_softc *, struct tty *);
sys/arch/arm/ixp12x0/ixp12x0_com.c
192
struct tty *tp;
sys/arch/arm/ixp12x0/ixp12x0_com.c
258
ixpcomparam(struct tty *tp, struct termios *t)
sys/arch/arm/ixp12x0/ixp12x0_com.c
343
ixpcomhwiflow(struct tty *tp, int block)
sys/arch/arm/ixp12x0/ixp12x0_com.c
368
ixpcomstart(struct tty *tp)
sys/arch/arm/ixp12x0/ixp12x0_com.c
467
struct tty *tp;
sys/arch/arm/ixp12x0/ixp12x0_com.c
610
struct tty *tp = sc->sc_tty;
sys/arch/arm/ixp12x0/ixp12x0_com.c
638
struct tty *tp = sc->sc_tty;
sys/arch/arm/ixp12x0/ixp12x0_com.c
650
struct tty *tp = sc->sc_tty;
sys/arch/arm/ixp12x0/ixp12x0_com.c
662
struct tty *tp = sc->sc_tty;
sys/arch/arm/ixp12x0/ixp12x0_com.c
670
struct tty *
sys/arch/arm/ixp12x0/ixp12x0_com.c
674
struct tty *tp = sc->sc_tty;
sys/arch/arm/ixp12x0/ixp12x0_com.c
683
struct tty *tp = sc->sc_tty;
sys/arch/arm/ixp12x0/ixp12x0_com.c
739
ixpcomstop(struct tty *tp, int flag)
sys/arch/arm/ixp12x0/ixp12x0_com.c
907
ixpcom_txsoft(struct ixpcom_softc *sc, struct tty *tp)
sys/arch/arm/ixp12x0/ixp12x0_com.c
918
ixpcom_rxsoft(struct ixpcom_softc *sc, struct tty *tp)
sys/arch/arm/ixp12x0/ixp12x0_com.c
920
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/arm/ixp12x0/ixp12x0_comvar.h
55
struct tty *sc_tty;
sys/arch/arm/s3c2xx0/sscom.c
1027
sscomparam(struct tty *tp, struct termios *t)
sys/arch/arm/s3c2xx0/sscom.c
1218
sscomhwiflow(struct tty *tp, int block)
sys/arch/arm/s3c2xx0/sscom.c
1274
sscomstart(struct tty *tp)
sys/arch/arm/s3c2xx0/sscom.c
1325
sscomstop(struct tty *tp, int flag)
sys/arch/arm/s3c2xx0/sscom.c
1367
sscom_rxsoft(struct sscom_softc *sc, struct tty *tp)
sys/arch/arm/s3c2xx0/sscom.c
1369
int (*rint) (int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/arm/s3c2xx0/sscom.c
1463
sscom_txsoft(struct sscom_softc *sc, struct tty *tp)
sys/arch/arm/s3c2xx0/sscom.c
1475
sscom_stsoft(struct sscom_softc *sc, struct tty *tp)
sys/arch/arm/s3c2xx0/sscom.c
1513
struct tty *tp;
sys/arch/arm/s3c2xx0/sscom.c
167
integrate void sscom_rxsoft (struct sscom_softc *, struct tty *);
sys/arch/arm/s3c2xx0/sscom.c
168
integrate void sscom_txsoft (struct sscom_softc *, struct tty *);
sys/arch/arm/s3c2xx0/sscom.c
169
integrate void sscom_stsoft (struct sscom_softc *, struct tty *);
sys/arch/arm/s3c2xx0/sscom.c
182
static int sscomhwiflow(struct tty *tp, int block);
sys/arch/arm/s3c2xx0/sscom.c
340
struct tty *tp = sc->sc_tty;
sys/arch/arm/s3c2xx0/sscom.c
408
struct tty *tp;
sys/arch/arm/s3c2xx0/sscom.c
556
struct tty *tp = sc->sc_tty;
sys/arch/arm/s3c2xx0/sscom.c
605
struct tty *tp;
sys/arch/arm/s3c2xx0/sscom.c
739
struct tty *tp = sc->sc_tty;
sys/arch/arm/s3c2xx0/sscom.c
767
struct tty *tp = sc->sc_tty;
sys/arch/arm/s3c2xx0/sscom.c
779
struct tty *tp = sc->sc_tty;
sys/arch/arm/s3c2xx0/sscom.c
791
struct tty *tp = sc->sc_tty;
sys/arch/arm/s3c2xx0/sscom.c
799
struct tty *
sys/arch/arm/s3c2xx0/sscom.c
803
struct tty *tp = sc->sc_tty;
sys/arch/arm/s3c2xx0/sscom.c
812
struct tty *tp = sc->sc_tty;
sys/arch/arm/s3c2xx0/sscom_var.h
105
struct tty *sc_tty;
sys/arch/arm/s3c2xx0/sscom_var.h
246
void sscomstart(struct tty *);
sys/arch/arm/s3c2xx0/sscom_var.h
247
int sscomparam(struct tty *, struct termios *);
sys/arch/arm/sa11x0/sa11x0_com.c
1051
sacomstart(struct tty *tp)
sys/arch/arm/sa11x0/sa11x0_com.c
1125
sacomstop(struct tty *tp, int flag)
sys/arch/arm/sa11x0/sa11x0_com.c
1145
sacom_rxsoft(struct sacom_softc *sc, struct tty *tp)
sys/arch/arm/sa11x0/sa11x0_com.c
1147
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/arm/sa11x0/sa11x0_com.c
1220
sacom_txsoft(struct sacom_softc *sc, struct tty *tp)
sys/arch/arm/sa11x0/sa11x0_com.c
1232
sacom_stsoft(struct sacom_softc *sc, struct tty *tp)
sys/arch/arm/sa11x0/sa11x0_com.c
1240
struct tty *tp;
sys/arch/arm/sa11x0/sa11x0_com.c
148
int sacomparam(struct tty *, struct termios *);
sys/arch/arm/sa11x0/sa11x0_com.c
149
void sacomstart(struct tty *);
sys/arch/arm/sa11x0/sa11x0_com.c
150
int sacomhwiflow(struct tty *, int);
sys/arch/arm/sa11x0/sa11x0_com.c
167
static inline void sacom_rxsoft(struct sacom_softc *, struct tty *);
sys/arch/arm/sa11x0/sa11x0_com.c
168
static inline void sacom_txsoft(struct sacom_softc *, struct tty *);
sys/arch/arm/sa11x0/sa11x0_com.c
169
static inline void sacom_stsoft(struct sacom_softc *, struct tty *);
sys/arch/arm/sa11x0/sa11x0_com.c
296
struct tty *tp;
sys/arch/arm/sa11x0/sa11x0_com.c
449
struct tty *tp = sc->sc_tty;
sys/arch/arm/sa11x0/sa11x0_com.c
493
struct tty *tp;
sys/arch/arm/sa11x0/sa11x0_com.c
628
struct tty *tp = sc->sc_tty;
sys/arch/arm/sa11x0/sa11x0_com.c
657
struct tty *tp = sc->sc_tty;
sys/arch/arm/sa11x0/sa11x0_com.c
670
struct tty *tp = sc->sc_tty;
sys/arch/arm/sa11x0/sa11x0_com.c
683
struct tty *tp = sc->sc_tty;
sys/arch/arm/sa11x0/sa11x0_com.c
691
struct tty *
sys/arch/arm/sa11x0/sa11x0_com.c
696
struct tty *tp = sc->sc_tty;
sys/arch/arm/sa11x0/sa11x0_com.c
706
struct tty *tp = sc->sc_tty;
sys/arch/arm/sa11x0/sa11x0_com.c
853
sacomparam(struct tty *tp, struct termios *t)
sys/arch/arm/sa11x0/sa11x0_com.c
997
sacomhwiflow(struct tty *tp, int block)
sys/arch/arm/sa11x0/sa11x0_comvar.h
55
struct tty *sc_tty;
sys/arch/arm/samsung/exynos_uart.c
100
struct tty *sc_tty;
sys/arch/arm/samsung/exynos_uart.c
194
struct tty *tp;
sys/arch/arm/samsung/exynos_uart.c
370
struct tty *tp = sc->sc_tty;
sys/arch/arm/samsung/exynos_uart.c
419
struct tty *tp = sc->sc_tty;
sys/arch/arm/samsung/exynos_uart.c
449
struct tty *tp = sc->sc_tty;
sys/arch/arm/samsung/exynos_uart.c
459
struct tty *tp = sc->sc_tty;
sys/arch/arm/samsung/exynos_uart.c
469
struct tty *tp = sc->sc_tty;
sys/arch/arm/samsung/exynos_uart.c
479
struct tty *tp = sc->sc_tty;
sys/arch/arm/samsung/exynos_uart.c
489
static struct tty *
sys/arch/arm/samsung/exynos_uart.c
499
exynos_uart_stop(struct tty *tp, int flag)
sys/arch/arm/samsung/exynos_uart.c
504
exynos_uart_start(struct tty *tp)
sys/arch/arm/samsung/exynos_uart.c
536
exynos_uart_param(struct tty *tp, struct termios *t)
sys/arch/arm/samsung/exynos_uart.c
592
struct tty *tp = sc->sc_tty;
sys/arch/arm/samsung/exynos_uart.c
74
static void exynos_uart_start(struct tty *);
sys/arch/arm/samsung/exynos_uart.c
75
static int exynos_uart_param(struct tty *, struct termios *);
sys/arch/arm/xilinx/zynq_uart.c
1138
zynquartparam(struct tty *tp, struct termios *t)
sys/arch/arm/xilinx/zynq_uart.c
1324
zynquarthwiflow(struct tty *tp, int block)
sys/arch/arm/xilinx/zynq_uart.c
1384
zynquartstart(struct tty *tp)
sys/arch/arm/xilinx/zynq_uart.c
1437
zynquartstop(struct tty *tp, int flag)
sys/arch/arm/xilinx/zynq_uart.c
1476
zynquart_rxsoft(struct zynquart_softc *sc, struct tty *tp)
sys/arch/arm/xilinx/zynq_uart.c
1478
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/arm/xilinx/zynq_uart.c
1574
zynquart_txsoft(struct zynquart_softc *sc, struct tty *tp)
sys/arch/arm/xilinx/zynq_uart.c
1586
zynquart_stsoft(struct zynquart_softc *sc, struct tty *tp)
sys/arch/arm/xilinx/zynq_uart.c
1625
struct tty *tp;
sys/arch/arm/xilinx/zynq_uart.c
228
struct tty *sc_tty;
sys/arch/arm/xilinx/zynq_uart.c
251
int zynquartparam(struct tty *, struct termios *);
sys/arch/arm/xilinx/zynq_uart.c
252
void zynquartstart(struct tty *);
sys/arch/arm/xilinx/zynq_uart.c
253
int zynquarthwiflow(struct tty *, int);
sys/arch/arm/xilinx/zynq_uart.c
285
integrate void zynquart_rxsoft(struct zynquart_softc *, struct tty *);
sys/arch/arm/xilinx/zynq_uart.c
286
integrate void zynquart_txsoft(struct zynquart_softc *, struct tty *);
sys/arch/arm/xilinx/zynq_uart.c
287
integrate void zynquart_stsoft(struct zynquart_softc *, struct tty *);
sys/arch/arm/xilinx/zynq_uart.c
373
struct tty *tp;
sys/arch/arm/xilinx/zynq_uart.c
491
struct tty *tp = sc->sc_tty;
sys/arch/arm/xilinx/zynq_uart.c
597
struct tty *tp = sc->sc_tty;
sys/arch/arm/xilinx/zynq_uart.c
644
struct tty *tp;
sys/arch/arm/xilinx/zynq_uart.c
797
struct tty *tp = sc->sc_tty;
sys/arch/arm/xilinx/zynq_uart.c
826
struct tty *tp = sc->sc_tty;
sys/arch/arm/xilinx/zynq_uart.c
839
struct tty *tp = sc->sc_tty;
sys/arch/arm/xilinx/zynq_uart.c
852
struct tty *tp = sc->sc_tty;
sys/arch/arm/xilinx/zynq_uart.c
860
struct tty *
sys/arch/arm/xilinx/zynq_uart.c
865
struct tty *tp = sc->sc_tty;
sys/arch/arm/xilinx/zynq_uart.c
874
struct tty *tp;
sys/arch/atari/dev/ite.c
1074
struct tty *kbd_tty;
sys/arch/atari/dev/ite.c
134
static void itestart(struct tty *);
sys/arch/atari/dev/ite.c
1374
struct tty *kbd_tty;
sys/arch/atari/dev/ite.c
385
struct tty *tp;
sys/arch/atari/dev/ite.c
455
struct tty *tp;
sys/arch/atari/dev/ite.c
469
struct tty *tp;
sys/arch/atari/dev/ite.c
480
struct tty *tp;
sys/arch/atari/dev/ite.c
491
struct tty *tp;
sys/arch/atari/dev/ite.c
499
static struct tty *
sys/arch/atari/dev/ite.c
510
struct tty *tp;
sys/arch/atari/dev/ite.c
595
itestart(struct tty *tp)
sys/arch/atari/dev/ite.c
708
ite_param(struct tty *tp, struct termios *t)
sys/arch/atari/dev/ite.c
860
struct tty *kbd_tty;
sys/arch/atari/dev/itevar.h
211
int ite_param(struct tty *, struct termios *);
sys/arch/atari/dev/itevar.h
60
struct tty *tp;
sys/arch/atari/dev/ser.c
1036
struct tty *tp = sc->sc_tty;
sys/arch/atari/dev/ser.c
1066
serrxint(struct ser_softc *sc, struct tty *tp)
sys/arch/atari/dev/ser.c
1122
sertxint(struct ser_softc *sc, struct tty *tp)
sys/arch/atari/dev/ser.c
1134
sermsrint(struct ser_softc *sc, struct tty *tp)
sys/arch/atari/dev/ser.c
1172
struct tty *tp;
sys/arch/atari/dev/ser.c
162
struct tty *sc_tty;
sys/arch/atari/dev/ser.c
221
static int serhwiflow(struct tty *, int);
sys/arch/atari/dev/ser.c
226
static int serparam(struct tty *, struct termios *);
sys/arch/atari/dev/ser.c
227
static void serstart(struct tty *);
sys/arch/atari/dev/ser.c
236
static void sermsrint(struct ser_softc *, struct tty*);
sys/arch/atari/dev/ser.c
237
static void serrxint(struct ser_softc *, struct tty*);
sys/arch/atari/dev/ser.c
241
static void sertxint(struct ser_softc *, struct tty*);
sys/arch/atari/dev/ser.c
354
struct tty *tp = sc->sc_tty;
sys/arch/atari/dev/ser.c
379
struct tty *tp;
sys/arch/atari/dev/ser.c
497
struct tty *tp = sc->sc_tty;
sys/arch/atari/dev/ser.c
522
struct tty *tp = sc->sc_tty;
sys/arch/atari/dev/ser.c
531
struct tty *tp = sc->sc_tty;
sys/arch/atari/dev/ser.c
540
struct tty *tp = sc->sc_tty;
sys/arch/atari/dev/ser.c
545
static struct tty *
sys/arch/atari/dev/ser.c
549
struct tty *tp = sc->sc_tty;
sys/arch/atari/dev/ser.c
559
struct tty *tp = sc->sc_tty;
sys/arch/atari/dev/ser.c
659
serparam(struct tty *tp, struct termios *t)
sys/arch/atari/dev/ser.c
872
serhwiflow(struct tty *tp, int block)
sys/arch/atari/dev/ser.c
930
serstart(struct tty *tp)
sys/arch/atari/dev/ser.c
993
serstop(struct tty *tp, int flag)
sys/arch/atari/dev/zs.c
1031
zsstop(struct tty *tp, int flag)
sys/arch/atari/dev/zs.c
1053
struct tty *tp = cs->cs_ttyp;
sys/arch/atari/dev/zs.c
1088
zsparam(struct tty *tp, struct termios *t)
sys/arch/atari/dev/zs.c
263
static void zsstart(struct tty *);
sys/arch/atari/dev/zs.c
267
static int zsparam(struct tty *, struct termios *);
sys/arch/atari/dev/zs.c
392
struct tty *tp;
sys/arch/atari/dev/zs.c
490
struct tty *tp;
sys/arch/atari/dev/zs.c
520
struct tty *tp;
sys/arch/atari/dev/zs.c
536
struct tty *tp;
sys/arch/atari/dev/zs.c
552
struct tty *tp;
sys/arch/atari/dev/zs.c
563
static struct tty *
sys/arch/atari/dev/zs.c
745
struct tty *tp;
sys/arch/atari/dev/zs.c
863
struct tty *tp = cs->cs_ttyp;
sys/arch/atari/dev/zs.c
978
zsstart(struct tty *tp)
sys/arch/atari/dev/zsvar.h
124
struct tty *cs_ttyp; /* ### */
sys/arch/emips/ebus/dz_ebus.c
131
struct tty *tp;
sys/arch/emips/ebus/dz_ebus.c
189
struct tty *tp;
sys/arch/emips/ebus/dz_ebus.c
213
struct tty *tp;
sys/arch/emips/ebus/dz_ebus.c
225
struct tty *tp;
sys/arch/emips/ebus/dz_ebus.c
239
struct tty *tp;
sys/arch/emips/ebus/dz_ebus.c
298
dzstop(struct tty *tp, int flag)
sys/arch/emips/ebus/dz_ebus.c
306
struct tty *
sys/arch/emips/ebus/dz_ebus.c
310
struct tty *tp;
sys/arch/emips/ebus/dz_ebus.c
322
struct tty *tp;
sys/arch/emips/ebus/dz_ebus.c
331
dzstart(struct tty *tp)
sys/arch/emips/ebus/dz_ebus.c
387
dzparam(struct tty *tp, struct termios *t)
sys/arch/emips/ebus/dz_ebus.c
526
struct tty *tp;
sys/arch/emips/ebus/dz_ebus.c
568
struct tty *tp;
sys/arch/emips/ebus/dz_ebus.c
85
struct tty *dz_tty; /* what we work on */
sys/arch/emips/ebus/dz_ebus.c
95
static void dzstart(struct tty *);
sys/arch/emips/ebus/dz_ebus.c
96
static int dzparam(struct tty *, struct termios *);
sys/arch/epoc32/windermere/wmcom.c
105
static void wmcom_start(struct tty *);
sys/arch/epoc32/windermere/wmcom.c
106
static int wmcom_param(struct tty *, struct termios *);
sys/arch/epoc32/windermere/wmcom.c
107
static int wmcom_hwiflow(struct tty *, int);
sys/arch/epoc32/windermere/wmcom.c
122
static void wmcom_rxsoft(struct wmcom_softc *, struct tty *);
sys/arch/epoc32/windermere/wmcom.c
324
struct tty *tp = sc->sc_tty;
sys/arch/epoc32/windermere/wmcom.c
346
wmcom_start(struct tty *tp)
sys/arch/epoc32/windermere/wmcom.c
396
wmcom_param(struct tty *tp, struct termios *t)
sys/arch/epoc32/windermere/wmcom.c
448
wmcom_hwiflow(struct tty *tp, int block)
sys/arch/epoc32/windermere/wmcom.c
459
struct tty *tp;
sys/arch/epoc32/windermere/wmcom.c
568
struct tty *tp = sc->sc_tty;
sys/arch/epoc32/windermere/wmcom.c
600
struct tty *tp = sc->sc_tty;
sys/arch/epoc32/windermere/wmcom.c
612
struct tty *tp = sc->sc_tty;
sys/arch/epoc32/windermere/wmcom.c
624
struct tty *tp = sc->sc_tty;
sys/arch/epoc32/windermere/wmcom.c
680
struct tty *tp = sc->sc_tty;
sys/arch/epoc32/windermere/wmcom.c
688
struct tty *
sys/arch/epoc32/windermere/wmcom.c
697
wmcomstop(struct tty *tp, int flag)
sys/arch/epoc32/windermere/wmcom.c
73
struct tty *sc_tty;
sys/arch/epoc32/windermere/wmcom.c
759
wmcom_rxsoft(struct wmcom_softc *sc, struct tty *tp)
sys/arch/evbarm/dev/plcom.c
1018
struct tty *tp = sc->sc_tty;
sys/arch/evbarm/dev/plcom.c
1031
struct tty *tp = sc->sc_tty;
sys/arch/evbarm/dev/plcom.c
1044
struct tty *tp = sc->sc_tty;
sys/arch/evbarm/dev/plcom.c
1052
struct tty *
sys/arch/evbarm/dev/plcom.c
1057
struct tty *tp = sc->sc_tty;
sys/arch/evbarm/dev/plcom.c
1067
struct tty *tp;
sys/arch/evbarm/dev/plcom.c
1402
plcomparam(struct tty *tp, struct termios *t)
sys/arch/evbarm/dev/plcom.c
158
int plcomparam (struct tty *, struct termios *);
sys/arch/evbarm/dev/plcom.c
159
void plcomstart (struct tty *);
sys/arch/evbarm/dev/plcom.c
160
int plcomhwiflow (struct tty *, int);
sys/arch/evbarm/dev/plcom.c
1698
plcomhwiflow(struct tty *tp, int block)
sys/arch/evbarm/dev/plcom.c
1767
plcomstart(struct tty *tp)
sys/arch/evbarm/dev/plcom.c
1836
plcomstop(struct tty *tp, int flag)
sys/arch/evbarm/dev/plcom.c
1873
plcom_rxsoft(struct plcom_softc *sc, struct tty *tp)
sys/arch/evbarm/dev/plcom.c
1875
int (*rint) (int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/evbarm/dev/plcom.c
190
static inline void plcom_rxsoft (struct plcom_softc *, struct tty *);
sys/arch/evbarm/dev/plcom.c
191
static inline void plcom_txsoft (struct plcom_softc *, struct tty *);
sys/arch/evbarm/dev/plcom.c
192
static inline void plcom_stsoft (struct plcom_softc *, struct tty *);
sys/arch/evbarm/dev/plcom.c
1974
plcom_txsoft(struct plcom_softc *sc, struct tty *tp)
sys/arch/evbarm/dev/plcom.c
1986
plcom_stsoft(struct plcom_softc *sc, struct tty *tp)
sys/arch/evbarm/dev/plcom.c
2023
struct tty *tp;
sys/arch/evbarm/dev/plcom.c
385
struct tty *tp = sc->sc_tty;
sys/arch/evbarm/dev/plcom.c
472
struct tty *tp;
sys/arch/evbarm/dev/plcom.c
735
struct tty *tp = sc->sc_tty;
sys/arch/evbarm/dev/plcom.c
811
struct tty *tp;
sys/arch/evbarm/dev/plcom.c
989
struct tty *tp = sc->sc_tty;
sys/arch/evbarm/dev/plcomvar.h
95
struct tty *sc_tty;
sys/arch/evbppc/virtex/dev/xlcom.c
158
static int xlcom_param(struct tty *, struct termios *);
sys/arch/evbppc/virtex/dev/xlcom.c
159
static void xlcom_start(struct tty *);
sys/arch/evbppc/virtex/dev/xlcom.c
173
struct tty *tp;
sys/arch/evbppc/virtex/dev/xlcom.c
256
struct tty *tp = sc->sc_tty;
sys/arch/evbppc/virtex/dev/xlcom.c
270
struct tty *tp = sc->sc_tty;
sys/arch/evbppc/virtex/dev/xlcom.c
271
int (*rint)(int, struct tty *);
sys/arch/evbppc/virtex/dev/xlcom.c
406
struct tty *tp;
sys/arch/evbppc/virtex/dev/xlcom.c
463
struct tty *tp;
sys/arch/evbppc/virtex/dev/xlcom.c
477
struct tty *tp;
sys/arch/evbppc/virtex/dev/xlcom.c
491
struct tty *tp;
sys/arch/evbppc/virtex/dev/xlcom.c
501
static struct tty *
sys/arch/evbppc/virtex/dev/xlcom.c
505
struct tty *tp;
sys/arch/evbppc/virtex/dev/xlcom.c
519
struct tty *tp;
sys/arch/evbppc/virtex/dev/xlcom.c
544
struct tty *tp;
sys/arch/evbppc/virtex/dev/xlcom.c
562
xlcom_stop(struct tty *tp, int flag)
sys/arch/evbppc/virtex/dev/xlcom.c
585
xlcom_param(struct tty *tp, struct termios *t)
sys/arch/evbppc/virtex/dev/xlcom.c
598
xlcom_start(struct tty *tp)
sys/arch/evbppc/virtex/dev/xlcom.c
77
struct tty *sc_tty;
sys/arch/hp300/dev/dcm.c
1075
dcmparam(struct tty *tp, struct termios *t)
sys/arch/hp300/dev/dcm.c
1153
dcmstart(struct tty *tp)
sys/arch/hp300/dev/dcm.c
1279
dcmstop(struct tty *tp, int flag)
sys/arch/hp300/dev/dcm.c
1388
struct tty *tp;
sys/arch/hp300/dev/dcm.c
246
struct tty *sc_tty[NDCMPORT]; /* our tty instances */
sys/arch/hp300/dev/dcm.c
279
static int dcmparam(struct tty *, struct termios *);
sys/arch/hp300/dev/dcm.c
280
static void dcmstart(struct tty *);
sys/arch/hp300/dev/dcm.c
489
struct tty *tp;
sys/arch/hp300/dev/dcm.c
579
struct tty *tp;
sys/arch/hp300/dev/dcm.c
615
struct tty *tp;
sys/arch/hp300/dev/dcm.c
632
struct tty *tp;
sys/arch/hp300/dev/dcm.c
649
struct tty *tp;
sys/arch/hp300/dev/dcm.c
661
static struct tty *
sys/arch/hp300/dev/dcm.c
809
struct tty *tp;
sys/arch/hp300/dev/dcm.c
905
struct tty *tp;
sys/arch/hp300/dev/dcm.c
921
struct tty *tp;
sys/arch/hp300/dev/dcm.c
963
struct tty *tp;
sys/arch/hpcmips/tx/txcom.c
1000
txcomstop(struct tty *tp, int flag)
sys/arch/hpcmips/tx/txcom.c
1021
txcomstart(struct tty *tp)
sys/arch/hpcmips/tx/txcom.c
1062
txcomparam(struct tty *tp, struct termios *t)
sys/arch/hpcmips/tx/txcom.c
1151
struct tty *tp = sc->sc_tty;
sys/arch/hpcmips/tx/txcom.c
1167
struct tty *tp = sc->sc_tty;
sys/arch/hpcmips/tx/txcom.c
136
void txcomstart(struct tty *);
sys/arch/hpcmips/tx/txcom.c
137
int txcomparam(struct tty *, struct termios *);
sys/arch/hpcmips/tx/txcom.c
207
struct tty *tp;
sys/arch/hpcmips/tx/txcom.c
626
struct tty *tp = sc->sc_tty;
sys/arch/hpcmips/tx/txcom.c
714
struct tty *tp = sc->sc_tty;
sys/arch/hpcmips/tx/txcom.c
715
int (*rint)(int, struct tty *);
sys/arch/hpcmips/tx/txcom.c
764
struct tty *tp = sc->sc_tty;
sys/arch/hpcmips/tx/txcom.c
784
struct tty *tp;
sys/arch/hpcmips/tx/txcom.c
881
struct tty *tp = sc->sc_tty;
sys/arch/hpcmips/tx/txcom.c
906
struct tty *tp = sc->sc_tty;
sys/arch/hpcmips/tx/txcom.c
915
struct tty *tp = sc->sc_tty;
sys/arch/hpcmips/tx/txcom.c
924
struct tty *tp = sc->sc_tty;
sys/arch/hpcmips/tx/txcom.c
929
struct tty *
sys/arch/hpcmips/tx/txcom.c
941
struct tty *tp = sc->sc_tty;
sys/arch/hpcmips/tx/txcom.c
98
struct tty *sc_tty;
sys/arch/hppa/dev/pdc.c
106
void pdcstart(struct tty *);
sys/arch/hppa/dev/pdc.c
108
int pdcparam(struct tty *, struct termios *);
sys/arch/hppa/dev/pdc.c
265
struct tty *tp;
sys/arch/hppa/dev/pdc.c
319
struct tty *tp;
sys/arch/hppa/dev/pdc.c
336
struct tty *tp;
sys/arch/hppa/dev/pdc.c
350
struct tty *tp;
sys/arch/hppa/dev/pdc.c
365
struct tty *tp = sc->sc_tty;
sys/arch/hppa/dev/pdc.c
374
struct tty *tp;
sys/arch/hppa/dev/pdc.c
393
pdcparam(struct tty *tp, struct termios *t)
sys/arch/hppa/dev/pdc.c
400
pdcstart(struct tty *tp)
sys/arch/hppa/dev/pdc.c
418
pdcstop(struct tty *tp, int flag)
sys/arch/hppa/dev/pdc.c
433
struct tty *tp = sc->sc_tty;
sys/arch/hppa/dev/pdc.c
444
struct tty *
sys/arch/hppa/dev/pdc.c
56
struct tty *sc_tty;
sys/arch/luna68k/dev/siotty.c
115
static void siostart(struct tty *);
sys/arch/luna68k/dev/siotty.c
116
static int sioparam(struct tty *, struct termios *);
sys/arch/luna68k/dev/siotty.c
119
static void siotty_rxsoft(struct siotty_softc *, struct tty *);
sys/arch/luna68k/dev/siotty.c
120
static void siotty_txsoft(struct siotty_softc *, struct tty *);
sys/arch/luna68k/dev/siotty.c
174
struct tty *tp;
sys/arch/luna68k/dev/siotty.c
287
struct tty *tp;
sys/arch/luna68k/dev/siotty.c
303
siotty_rxsoft(struct siotty_softc *sc, struct tty *tp)
sys/arch/luna68k/dev/siotty.c
343
siotty_txsoft(struct siotty_softc *sc, struct tty *tp)
sys/arch/luna68k/dev/siotty.c
355
siostart(struct tty *tp)
sys/arch/luna68k/dev/siotty.c
385
siostop(struct tty *tp, int flag)
sys/arch/luna68k/dev/siotty.c
400
sioparam(struct tty *tp, struct termios *t)
sys/arch/luna68k/dev/siotty.c
513
struct tty *tp;
sys/arch/luna68k/dev/siotty.c
568
struct tty *tp = sc->sc_tty;
sys/arch/luna68k/dev/siotty.c
591
struct tty *tp;
sys/arch/luna68k/dev/siotty.c
602
struct tty *tp;
sys/arch/luna68k/dev/siotty.c
613
struct tty *tp;
sys/arch/luna68k/dev/siotty.c
624
struct tty *tp;
sys/arch/luna68k/dev/siotty.c
676
static struct tty *
sys/arch/luna68k/dev/siotty.c
88
struct tty *sc_tty;
sys/arch/luna68k/stand/boot/cons.c
97
struct tty *constty = 0; /* virtual console output device */
sys/arch/mac68k/dev/ite_compat.c
144
struct tty *
sys/arch/mips/adm5120/dev/uart.c
106
void uart_start(struct tty *);
sys/arch/mips/adm5120/dev/uart.c
107
int uart_param(struct tty *, struct termios *);
sys/arch/mips/adm5120/dev/uart.c
129
struct tty *tp;
sys/arch/mips/adm5120/dev/uart.c
203
struct tty *tp = sc->sc_tty;
sys/arch/mips/adm5120/dev/uart.c
235
struct tty *tp = sc->sc_tty;
sys/arch/mips/adm5120/dev/uart.c
247
struct tty *tp = sc->sc_tty;
sys/arch/mips/adm5120/dev/uart.c
256
struct tty *tp = sc->sc_tty;
sys/arch/mips/adm5120/dev/uart.c
265
struct tty *tp = sc->sc_tty;
sys/arch/mips/adm5120/dev/uart.c
274
struct tty *tp = sc->sc_tty;
sys/arch/mips/adm5120/dev/uart.c
284
uart_param(struct tty *tp, struct termios *t)
sys/arch/mips/adm5120/dev/uart.c
290
struct tty*
sys/arch/mips/adm5120/dev/uart.c
300
uart_start(struct tty *tp)
sys/arch/mips/adm5120/dev/uart.c
321
uart_stop(struct tty *tp, int flag)
sys/arch/mips/adm5120/dev/uart.c
336
struct tty *tp = sc->sc_tty;
sys/arch/mips/adm5120/dev/uart.c
93
struct tty * sc_tty;
sys/arch/mips/sibyte/dev/sbjcn.c
1067
sbjcn_hwiflow(struct tty *tp, int block)
sys/arch/mips/sibyte/dev/sbjcn.c
1116
sbjcn_start(struct tty *tp)
sys/arch/mips/sibyte/dev/sbjcn.c
1176
sbjcnstop(struct tty *tp, int flag)
sys/arch/mips/sibyte/dev/sbjcn.c
1216
sbjcn_rxsoft(struct sbjcn_channel *ch, struct tty *tp)
sys/arch/mips/sibyte/dev/sbjcn.c
1218
int (*rint)(int c, struct tty *tp) = tp->t_linesw->l_rint;
sys/arch/mips/sibyte/dev/sbjcn.c
1305
sbjcn_txsoft(struct sbjcn_channel *ch, struct tty *tp)
sys/arch/mips/sibyte/dev/sbjcn.c
1317
sbjcn_stsoft(struct sbjcn_channel *ch, struct tty *tp)
sys/arch/mips/sibyte/dev/sbjcn.c
1435
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbjcn.c
149
int sbjcn_param(struct tty *, struct termios *);
sys/arch/mips/sibyte/dev/sbjcn.c
150
void sbjcn_start(struct tty *);
sys/arch/mips/sibyte/dev/sbjcn.c
151
int sbjcn_hwiflow(struct tty *, int);
sys/arch/mips/sibyte/dev/sbjcn.c
193
integrate void sbjcn_rxsoft(struct sbjcn_channel *, struct tty *);
sys/arch/mips/sibyte/dev/sbjcn.c
194
integrate void sbjcn_txsoft(struct sbjcn_channel *, struct tty *);
sys/arch/mips/sibyte/dev/sbjcn.c
195
integrate void sbjcn_stsoft(struct sbjcn_channel *, struct tty *);
sys/arch/mips/sibyte/dev/sbjcn.c
278
struct tty *tp;
sys/arch/mips/sibyte/dev/sbjcn.c
400
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbjcn.c
463
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbjcn.c
501
struct tty *tp;
sys/arch/mips/sibyte/dev/sbjcn.c
628
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbjcn.c
654
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbjcn.c
664
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbjcn.c
669
struct tty *
sys/arch/mips/sibyte/dev/sbjcn.c
674
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbjcn.c
684
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbjcn.c
896
sbjcn_param(struct tty *tp, struct termios *t)
sys/arch/mips/sibyte/dev/sbjcnvar.h
98
struct tty *ch_tty; /* tty struct */
sys/arch/mips/sibyte/dev/sbscn.c
1175
sbscn_hwiflow(struct tty *tp, int block)
sys/arch/mips/sibyte/dev/sbscn.c
1225
sbscn_start(struct tty *tp)
sys/arch/mips/sibyte/dev/sbscn.c
1281
sbscnstop(struct tty *tp, int flag)
sys/arch/mips/sibyte/dev/sbscn.c
1321
sbscn_rxsoft(struct sbscn_channel *ch, struct tty *tp)
sys/arch/mips/sibyte/dev/sbscn.c
1323
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/mips/sibyte/dev/sbscn.c
1411
sbscn_txsoft(struct sbscn_channel *ch, struct tty *tp)
sys/arch/mips/sibyte/dev/sbscn.c
1423
sbscn_stsoft(struct sbscn_channel *ch, struct tty *tp)
sys/arch/mips/sibyte/dev/sbscn.c
1462
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbscn.c
159
int sbscn_param(struct tty *, struct termios *);
sys/arch/mips/sibyte/dev/sbscn.c
160
void sbscn_start(struct tty *);
sys/arch/mips/sibyte/dev/sbscn.c
161
int sbscn_hwiflow(struct tty *, int);
sys/arch/mips/sibyte/dev/sbscn.c
206
integrate void sbscn_rxsoft(struct sbscn_channel *, struct tty *);
sys/arch/mips/sibyte/dev/sbscn.c
207
integrate void sbscn_txsoft(struct sbscn_channel *, struct tty *);
sys/arch/mips/sibyte/dev/sbscn.c
208
integrate void sbscn_stsoft(struct sbscn_channel *, struct tty *);
sys/arch/mips/sibyte/dev/sbscn.c
306
struct tty *tp;
sys/arch/mips/sibyte/dev/sbscn.c
436
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbscn.c
506
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbscn.c
553
struct tty *tp;
sys/arch/mips/sibyte/dev/sbscn.c
684
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbscn.c
710
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbscn.c
720
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbscn.c
730
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbscn.c
735
struct tty *
sys/arch/mips/sibyte/dev/sbscn.c
740
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbscn.c
750
struct tty *tp = ch->ch_tty;
sys/arch/mips/sibyte/dev/sbscn.c
979
sbscn_param(struct tty *tp, struct termios *t)
sys/arch/mips/sibyte/dev/sbscnvar.h
98
struct tty *ch_tty; /* tty struct */
sys/arch/news68k/news68k/romcons.c
134
static void romcons_start(struct tty *);
sys/arch/news68k/news68k/romcons.c
135
static int romcons_param(struct tty *, struct termios *);
sys/arch/news68k/news68k/romcons.c
142
struct tty *tp;
sys/arch/news68k/news68k/romcons.c
178
struct tty *tp;
sys/arch/news68k/news68k/romcons.c
193
struct tty *tp;
sys/arch/news68k/news68k/romcons.c
205
struct tty *tp;
sys/arch/news68k/news68k/romcons.c
216
struct tty *tp;
sys/arch/news68k/news68k/romcons.c
226
struct tty *tp;
sys/arch/news68k/news68k/romcons.c
237
struct tty *
sys/arch/news68k/news68k/romcons.c
247
romcons_start(struct tty *tp)
sys/arch/news68k/news68k/romcons.c
273
romcons_param(struct tty *tp, struct termios *t)
sys/arch/news68k/news68k/romcons.c
286
struct tty *tp = sc->sc_tty;
sys/arch/news68k/news68k/romcons.c
301
struct tty *tp;
sys/arch/news68k/news68k/romcons.c
58
struct tty *sc_tty;
sys/arch/powerpc/mpc5200/psc.c
115
static int pscparam(struct tty *, struct termios *);
sys/arch/powerpc/mpc5200/psc.c
116
static void pscstart(struct tty *);
sys/arch/powerpc/mpc5200/psc.c
177
struct tty *tp;
sys/arch/powerpc/mpc5200/psc.c
373
psc_rxsoft(struct psc_softc *sc, struct tty *tp)
sys/arch/powerpc/mpc5200/psc.c
375
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/powerpc/mpc5200/psc.c
394
struct tty *tp = sc->sc_tty;
sys/arch/powerpc/mpc5200/psc.c
418
pscstart(struct tty *tp)
sys/arch/powerpc/mpc5200/psc.c
448
pscparam(struct tty *tp, struct termios *t)
sys/arch/powerpc/mpc5200/psc.c
471
struct tty *tp;
sys/arch/powerpc/mpc5200/psc.c
516
struct tty *tp = sc->sc_tty;
sys/arch/powerpc/mpc5200/psc.c
540
struct tty *tp = sc->sc_tty;
sys/arch/powerpc/mpc5200/psc.c
549
struct tty *tp = sc->sc_tty;
sys/arch/powerpc/mpc5200/psc.c
558
struct tty *tp = sc->sc_tty;
sys/arch/powerpc/mpc5200/psc.c
563
struct tty *
sys/arch/powerpc/mpc5200/psc.c
575
struct tty *tp = sc->sc_tty;
sys/arch/powerpc/mpc5200/psc.c
586
pscstop(struct tty *tp, int flag)
sys/arch/powerpc/mpc5200/psc.c
84
static void psc_rxsoft(struct psc_softc *, struct tty *);
sys/arch/powerpc/mpc5200/pscvar.h
56
struct tty *sc_tty;
sys/arch/sgimips/dev/scn.c
1074
struct tty *tp;
sys/arch/sgimips/dev/scn.c
1088
sc->sc_tty = sc->sc_duart->chan[sc->sc_channel].tty = tp;
sys/arch/sgimips/dev/scn.c
1167
struct tty *tp = sc->sc_tty;
sys/arch/sgimips/dev/scn.c
1197
sc->sc_tty = (struct tty *) NULL;
sys/arch/sgimips/dev/scn.c
1208
struct tty *tp = sc->sc_tty;
sys/arch/sgimips/dev/scn.c
1217
struct tty *tp = sc->sc_tty;
sys/arch/sgimips/dev/scn.c
1226
struct tty *tp = sc->sc_tty;
sys/arch/sgimips/dev/scn.c
1231
struct tty *
sys/arch/sgimips/dev/scn.c
1241
dcd_int(struct scn_softc *sc, struct tty *tp, u_char new)
sys/arch/sgimips/dev/scn.c
1283
scnhwiflow(struct tty *tp, int stop)
sys/arch/sgimips/dev/scn.c
130
int scnparam(struct tty *, struct termios *);
sys/arch/sgimips/dev/scn.c
1306
struct tty *tp0 = (sc0 != NULL) ? sc0->sc_tty : NULL;
sys/arch/sgimips/dev/scn.c
1307
struct tty *tp1 = (sc1 != NULL) ? sc1->sc_tty : NULL;
sys/arch/sgimips/dev/scn.c
131
void scnstart(struct tty *);
sys/arch/sgimips/dev/scn.c
132
int scnhwiflow(struct tty *, int);
sys/arch/sgimips/dev/scn.c
1500
struct tty *tp;
sys/arch/sgimips/dev/scn.c
1607
struct tty *tp = sc->sc_tty;
sys/arch/sgimips/dev/scn.c
1739
scnparam(struct tty *tp, struct termios *t)
sys/arch/sgimips/dev/scn.c
1813
scnstart(struct tty *tp)
sys/arch/sgimips/dev/scn.c
1844
scnstop(struct tty *tp, int flags)
sys/arch/sgimips/dev/scn.c
218
static void dcd_int(struct scn_softc *, struct tty *, u_char);
sys/arch/sgimips/dev/scn.c
616
struct tty *otp; /* other channel tty struct */
sys/arch/sgimips/dev/scn.c
628
otp = ocp->tty;
sys/arch/sgimips/dev/scnvar.h
116
struct tty *sc_tty;
sys/arch/sgimips/dev/scnvar.h
92
struct tty *tty;
sys/arch/sh3/dev/sci.c
1037
struct tty *tp;
sys/arch/sh3/dev/sci.c
129
static void scistart(struct tty *);
sys/arch/sh3/dev/sci.c
130
static int sciparam(struct tty *, struct termios *);
sys/arch/sh3/dev/sci.c
141
struct tty *sc_tty;
sys/arch/sh3/dev/sci.c
200
integrate void sci_rxsoft(struct sci_softc *, struct tty *);
sys/arch/sh3/dev/sci.c
201
integrate void sci_txsoft(struct sci_softc *, struct tty *);
sys/arch/sh3/dev/sci.c
202
integrate void sci_stsoft(struct sci_softc *, struct tty *);
sys/arch/sh3/dev/sci.c
388
struct tty *tp;
sys/arch/sh3/dev/sci.c
436
scistart(struct tty *tp)
sys/arch/sh3/dev/sci.c
488
sciparam(struct tty *tp, struct termios *t)
sys/arch/sh3/dev/sci.c
618
struct tty *tp;
sys/arch/sh3/dev/sci.c
725
struct tty *tp = sc->sc_tty;
sys/arch/sh3/dev/sci.c
744
struct tty *tp = sc->sc_tty;
sys/arch/sh3/dev/sci.c
753
struct tty *tp = sc->sc_tty;
sys/arch/sh3/dev/sci.c
762
struct tty *tp = sc->sc_tty;
sys/arch/sh3/dev/sci.c
767
struct tty *
sys/arch/sh3/dev/sci.c
771
struct tty *tp = sc->sc_tty;
sys/arch/sh3/dev/sci.c
780
struct tty *tp = sc->sc_tty;
sys/arch/sh3/dev/sci.c
865
scistop(struct tty *tp, int flag)
sys/arch/sh3/dev/sci.c
903
sci_rxsoft(struct sci_softc *sc, struct tty *tp)
sys/arch/sh3/dev/sci.c
905
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/sh3/dev/sci.c
987
sci_txsoft(struct sci_softc *sc, struct tty *tp)
sys/arch/sh3/dev/sci.c
999
sci_stsoft(struct sci_softc *sc, struct tty *tp)
sys/arch/sh3/dev/scif.c
1026
scif_rxsoft(struct scif_softc *sc, struct tty *tp)
sys/arch/sh3/dev/scif.c
1028
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/arch/sh3/dev/scif.c
1110
scif_txsoft(struct scif_softc *sc, struct tty *tp)
sys/arch/sh3/dev/scif.c
1123
scif_stsoft(struct scif_softc *sc, struct tty *tp)
sys/arch/sh3/dev/scif.c
1159
struct tty *tp;
sys/arch/sh3/dev/scif.c
129
struct tty *sc_tty;
sys/arch/sh3/dev/scif.c
238
static void scifstart(struct tty *);
sys/arch/sh3/dev/scif.c
239
static int scifparam(struct tty *, struct termios *);
sys/arch/sh3/dev/scif.c
249
static void scif_rxsoft(struct scif_softc *, struct tty *);
sys/arch/sh3/dev/scif.c
250
static void scif_txsoft(struct scif_softc *, struct tty *);
sys/arch/sh3/dev/scif.c
252
static void scif_stsoft(struct scif_softc *, struct tty *);
sys/arch/sh3/dev/scif.c
445
struct tty *tp;
sys/arch/sh3/dev/scif.c
520
scifstart(struct tty *tp)
sys/arch/sh3/dev/scif.c
584
scifparam(struct tty *tp, struct termios *t)
sys/arch/sh3/dev/scif.c
722
struct tty *tp;
sys/arch/sh3/dev/scif.c
829
struct tty *tp;
sys/arch/sh3/dev/scif.c
851
struct tty *tp;
sys/arch/sh3/dev/scif.c
863
struct tty *tp;
sys/arch/sh3/dev/scif.c
875
struct tty *tp;
sys/arch/sh3/dev/scif.c
883
struct tty *
sys/arch/sh3/dev/scif.c
887
struct tty *tp;
sys/arch/sh3/dev/scif.c
899
struct tty *tp;
sys/arch/sh3/dev/scif.c
986
scifstop(struct tty *tp, int flag)
sys/arch/sparc/dev/kd.c
100
static void kd_putfb(struct tty *);
sys/arch/sparc/dev/kd.c
101
static int kdparam(struct tty *, struct termios *);
sys/arch/sparc/dev/kd.c
133
struct tty *tp;
sys/arch/sparc/dev/kd.c
185
struct tty *
sys/arch/sparc/dev/kd.c
199
struct tty *tp;
sys/arch/sparc/dev/kd.c
253
struct tty *tp;
sys/arch/sparc/dev/kd.c
276
struct tty *tp;
sys/arch/sparc/dev/kd.c
288
struct tty *tp;
sys/arch/sparc/dev/kd.c
300
struct tty *tp;
sys/arch/sparc/dev/kd.c
312
struct tty *tp;
sys/arch/sparc/dev/kd.c
334
kdparam(struct tty *tp, struct termios *t)
sys/arch/sparc/dev/kd.c
345
kdstart(struct tty *tp)
sys/arch/sparc/dev/kd.c
379
struct tty *tp = arg;
sys/arch/sparc/dev/kd.c
396
kd_putfb(struct tty *tp)
sys/arch/sparc/dev/kd.c
423
struct tty *tp;
sys/arch/sparc/dev/kd.c
81
struct tty *kd_tty;
sys/arch/sparc/dev/kd.c
98
static void kdstart(struct tty *);
sys/arch/sparc/dev/zs.c
188
extern struct tty *zstty_get_tty_from_dev(device_t);
sys/arch/sparc/dev/zs.c
533
struct tty *tp = zstty_get_tty_from_dev(child);
sys/arch/sparc/include/cpu.h
563
void zsconsole(struct tty *, int, int, void (**)(struct tty *, int));
sys/arch/sparc64/dev/cons.h
39
struct tty *of_tty;
sys/arch/sparc64/dev/kd.c
109
static int kdparam(struct tty *, struct termios *);
sys/arch/sparc64/dev/kd.c
110
static void kdstart(struct tty *);
sys/arch/sparc64/dev/kd.c
115
static void kd_putfb(struct tty *);
sys/arch/sparc64/dev/kd.c
126
struct tty *tp;
sys/arch/sparc64/dev/kd.c
156
struct tty *
sys/arch/sparc64/dev/kd.c
170
struct tty *tp;
sys/arch/sparc64/dev/kd.c
225
struct tty *tp;
sys/arch/sparc64/dev/kd.c
248
struct tty *tp;
sys/arch/sparc64/dev/kd.c
260
struct tty *tp;
sys/arch/sparc64/dev/kd.c
272
struct tty *tp;
sys/arch/sparc64/dev/kd.c
284
struct tty *tp;
sys/arch/sparc64/dev/kd.c
306
kdparam(struct tty *tp, struct termios *t)
sys/arch/sparc64/dev/kd.c
316
kdstart(struct tty *tp)
sys/arch/sparc64/dev/kd.c
363
struct tty *tp = tpaddr;
sys/arch/sparc64/dev/kd.c
380
kd_putfb(struct tty *tp)
sys/arch/sparc64/dev/kd.c
426
struct tty *tp;
sys/arch/sparc64/dev/kd.c
90
struct tty *fbconstty = 0; /* tty structure for frame buffer console */
sys/arch/sparc64/dev/kd.c
95
struct tty *kd_tty;
sys/arch/sparc64/dev/pcons.c
127
static void pconsstart(struct tty *);
sys/arch/sparc64/dev/pcons.c
128
static int pconsparam(struct tty *, struct termios *);
sys/arch/sparc64/dev/pcons.c
135
struct tty *tp;
sys/arch/sparc64/dev/pcons.c
172
struct tty *tp = sc->of_tty;
sys/arch/sparc64/dev/pcons.c
185
struct tty *tp = sc->of_tty;
sys/arch/sparc64/dev/pcons.c
194
struct tty *tp = sc->of_tty;
sys/arch/sparc64/dev/pcons.c
203
struct tty *tp = sc->of_tty;
sys/arch/sparc64/dev/pcons.c
212
struct tty *tp = sc->of_tty;
sys/arch/sparc64/dev/pcons.c
220
struct tty *
sys/arch/sparc64/dev/pcons.c
229
pconsstart(struct tty *tp)
sys/arch/sparc64/dev/pcons.c
255
pconsparam(struct tty *tp, struct termios *t)
sys/arch/sparc64/dev/pcons.c
267
struct tty *tp = sc->of_tty;
sys/arch/sparc64/dev/sab.c
1004
sabttyparam(struct sabtty_softc *sc, struct tty *tp, struct termios *t)
sys/arch/sparc64/dev/sab.c
1089
sabtty_param(struct tty *tp, struct termios *t)
sys/arch/sparc64/dev/sab.c
1097
sabtty_start(struct tty *tp)
sys/arch/sparc64/dev/sab.c
143
void sabtty_start(struct tty *);
sys/arch/sparc64/dev/sab.c
144
int sabtty_param(struct tty *, struct termios *);
sys/arch/sparc64/dev/sab.c
156
int sabttyparam(struct sabtty_softc *, struct tty *, struct termios *);
sys/arch/sparc64/dev/sab.c
621
struct tty *tp = sc->sc_tty;
sys/arch/sparc64/dev/sab.c
676
struct tty *tp;
sys/arch/sparc64/dev/sab.c
782
struct tty *tp = sc->sc_tty;
sys/arch/sparc64/dev/sab.c
821
struct tty *tp = sc->sc_tty;
sys/arch/sparc64/dev/sab.c
830
struct tty *tp = sc->sc_tty;
sys/arch/sparc64/dev/sab.c
839
struct tty *tp = sc->sc_tty;
sys/arch/sparc64/dev/sab.c
898
struct tty *
sys/arch/sparc64/dev/sab.c
907
sabstop(struct tty *tp, int flag)
sys/arch/sparc64/dev/sab.c
927
struct tty *tp = sc->sc_tty;
sys/arch/sparc64/dev/sab.c
99
struct tty * sc_tty;
sys/arch/sparc64/dev/zs.c
187
struct tty *zstty_get_tty_from_dev(device_t);
sys/arch/sparc64/dev/zs.c
432
struct tty *tp;
sys/arch/sparc64/dev/zsvar.h
96
struct tty *cs_ttyp; /* ### */
sys/arch/sparc64/include/cpu.h
452
void zsconsole(struct tty *, int, int, void (**)(struct tty *, int));
sys/arch/sun2/dev/cons.h
38
struct tty *of_tty;
sys/arch/sun2/dev/kd.c
129
struct tty *tp;
sys/arch/sun2/dev/kd.c
199
struct tty *
sys/arch/sun2/dev/kd.c
213
struct tty *tp;
sys/arch/sun2/dev/kd.c
268
struct tty *tp;
sys/arch/sun2/dev/kd.c
291
struct tty *tp;
sys/arch/sun2/dev/kd.c
303
struct tty *tp;
sys/arch/sun2/dev/kd.c
315
struct tty *tp;
sys/arch/sun2/dev/kd.c
327
struct tty *tp;
sys/arch/sun2/dev/kd.c
349
kdparam(struct tty *tp, struct termios *t)
sys/arch/sun2/dev/kd.c
359
static void kd_putfb(struct tty *);
sys/arch/sun2/dev/kd.c
362
kdstart(struct tty *tp)
sys/arch/sun2/dev/kd.c
408
struct tty *tp = tpaddr;
sys/arch/sun2/dev/kd.c
425
kd_putfb(struct tty *tp)
sys/arch/sun2/dev/kd.c
471
struct tty *tp;
sys/arch/sun2/dev/kd.c
73
struct tty *fbconstty = 0; /* tty structure for frame buffer console */
sys/arch/sun2/dev/kd.c
78
struct tty *kd_tty;
sys/arch/sun2/dev/kd.c
92
static int kdparam(struct tty *, struct termios *);
sys/arch/sun2/dev/kd.c
93
static void kdstart(struct tty *);
sys/arch/sun2/dev/pcons.c
125
static void pconsstart(struct tty *);
sys/arch/sun2/dev/pcons.c
126
static int pconsparam(struct tty *, struct termios *);
sys/arch/sun2/dev/pcons.c
133
struct tty *tp;
sys/arch/sun2/dev/pcons.c
170
struct tty *tp = sc->of_tty;
sys/arch/sun2/dev/pcons.c
183
struct tty *tp = sc->of_tty;
sys/arch/sun2/dev/pcons.c
192
struct tty *tp = sc->of_tty;
sys/arch/sun2/dev/pcons.c
201
struct tty *tp = sc->of_tty;
sys/arch/sun2/dev/pcons.c
210
struct tty *tp = sc->of_tty;
sys/arch/sun2/dev/pcons.c
220
struct tty *
sys/arch/sun2/dev/pcons.c
229
pconsstart(struct tty *tp)
sys/arch/sun2/dev/pcons.c
255
pconsparam(struct tty *tp, struct termios *t)
sys/arch/sun2/dev/pcons.c
268
struct tty *tp = sc->of_tty;
sys/arch/sun2/dev/zs.c
261
struct tty *zst_tty;
sys/arch/sun2/dev/zs.c
264
struct tty *tp;
sys/arch/sun3/dev/kd.c
118
struct tty *tp;
sys/arch/sun3/dev/kd.c
133
static struct tty *
sys/arch/sun3/dev/kd.c
147
struct tty *tp;
sys/arch/sun3/dev/kd.c
198
struct tty *tp;
sys/arch/sun3/dev/kd.c
219
struct tty *tp;
sys/arch/sun3/dev/kd.c
231
struct tty *tp;
sys/arch/sun3/dev/kd.c
243
struct tty *tp;
sys/arch/sun3/dev/kd.c
255
struct tty *tp;
sys/arch/sun3/dev/kd.c
277
kdparam(struct tty *tp, struct termios *t)
sys/arch/sun3/dev/kd.c
287
static void kd_putfb(struct tty *);
sys/arch/sun3/dev/kd.c
290
kdstart(struct tty *tp)
sys/arch/sun3/dev/kd.c
336
struct tty *tp = tpaddr;
sys/arch/sun3/dev/kd.c
353
kd_putfb(struct tty *tp)
sys/arch/sun3/dev/kd.c
409
struct tty *tp;
sys/arch/sun3/dev/kd.c
70
struct tty *kd_tty;
sys/arch/sun3/dev/kd.c
83
static int kdparam(struct tty *, struct termios *);
sys/arch/sun3/dev/kd.c
84
static void kdstart(struct tty *);
sys/arch/usermode/dev/ttycons.c
101
static void ttycons_start(struct tty *);
sys/arch/usermode/dev/ttycons.c
102
static int ttycons_param(struct tty *, struct termios *);
sys/arch/usermode/dev/ttycons.c
202
struct tty *t;
sys/arch/usermode/dev/ttycons.c
232
struct tty *t;
sys/arch/usermode/dev/ttycons.c
250
struct tty *t;
sys/arch/usermode/dev/ttycons.c
262
struct tty *t;
sys/arch/usermode/dev/ttycons.c
274
struct tty *t;
sys/arch/usermode/dev/ttycons.c
282
struct tty *
sys/arch/usermode/dev/ttycons.c
296
struct tty *t;
sys/arch/usermode/dev/ttycons.c
314
ttycons_start(struct tty *t)
sys/arch/usermode/dev/ttycons.c
348
ttycons_stop(struct tty *t, int flag)
sys/arch/usermode/dev/ttycons.c
353
ttycons_param(struct tty *t, struct termios *c)
sys/arch/usermode/dev/ttycons.c
375
struct tty *t = sc->sc_tty;
sys/arch/usermode/dev/ttycons.c
407
struct tty *t = sc->sc_tty;
sys/arch/usermode/dev/ttycons.c
433
struct tty *t = sc->sc_tty;
sys/arch/usermode/dev/ttycons.c
53
struct tty *sc_tty;
sys/arch/vax/uba/qvaux.c
205
static void qvauxstart(struct tty *);
sys/arch/vax/uba/qvaux.c
206
static int qvauxparam(struct tty *, struct termios *);
sys/arch/vax/uba/qvaux.c
397
struct tty *tp;
sys/arch/vax/uba/qvaux.c
462
struct tty *tp;
sys/arch/vax/uba/qvaux.c
514
struct tty *tp;
sys/arch/vax/uba/qvaux.c
573
struct tty *tp = sc->sc_qvaux[line].qvaux_tty;
sys/arch/vax/uba/qvaux.c
592
struct tty *tp = sc->sc_qvaux[QVA_PORT(minor(dev))].qvaux_tty;
sys/arch/vax/uba/qvaux.c
602
struct tty *tp = sc->sc_qvaux[QVA_PORT(minor(dev))].qvaux_tty;
sys/arch/vax/uba/qvaux.c
612
struct tty *tp = sc->sc_qvaux[QVA_PORT(minor(dev))].qvaux_tty;
sys/arch/vax/uba/qvaux.c
624
struct tty *tp = sc->sc_qvaux[line].qvaux_tty;
sys/arch/vax/uba/qvaux.c
674
struct tty *
sys/arch/vax/uba/qvaux.c
685
qvauxstop(struct tty *tp, int flag)
sys/arch/vax/uba/qvaux.c
692
qvauxstart(struct tty *tp)
sys/arch/vax/uba/qvaux.c
719
qvauxparam(struct tty *tp, struct termios *t)
sys/arch/vax/uba/qvaux.c
877
struct tty *tp;
sys/arch/vax/uba/qvavar.h
113
struct tty *qvaux_tty; /* what we work on */
sys/arch/vax/vax/gencons.c
105
struct tty *tp;
sys/arch/vax/vax/gencons.c
143
struct tty *tp = gc_softc[minor(dev)].gencn_tty;
sys/arch/vax/vax/gencons.c
151
struct tty *
sys/arch/vax/vax/gencons.c
160
struct tty *tp = gc_softc[minor(dev)].gencn_tty;
sys/arch/vax/vax/gencons.c
168
struct tty *tp = gc_softc[minor(dev)].gencn_tty;
sys/arch/vax/vax/gencons.c
176
struct tty *tp = gc_softc[minor(dev)].gencn_tty;
sys/arch/vax/vax/gencons.c
184
struct tty *tp = gc_softc[minor(dev)].gencn_tty;
sys/arch/vax/vax/gencons.c
194
gencnstart(struct tty *tp)
sys/arch/vax/vax/gencons.c
222
struct tty *tp = sc->gencn_tty;
sys/arch/vax/vax/gencons.c
252
struct tty *tp = sc->gencn_tty;
sys/arch/vax/vax/gencons.c
264
gencnparam(struct tty *tp, struct termios *t)
sys/arch/vax/vax/gencons.c
63
struct tty *gencn_tty;
sys/arch/vax/vax/gencons.c
75
static int gencnparam(struct tty *, struct termios *);
sys/arch/vax/vax/gencons.c
76
static void gencnstart(struct tty *);
sys/arch/x68k/dev/ite.c
139
struct tty *ite_tty[NITE];
sys/arch/x68k/dev/ite.c
145
static struct tty *kbd_tty = NULL;
sys/arch/x68k/dev/ite.c
154
static void itestart(struct tty *);
sys/arch/x68k/dev/ite.c
369
struct tty *tp;
sys/arch/x68k/dev/ite.c
415
struct tty *tp = ite_tty[UNIT(dev)];
sys/arch/x68k/dev/ite.c
430
struct tty *tp = ite_tty[UNIT(dev)];
sys/arch/x68k/dev/ite.c
438
struct tty *tp = ite_tty[UNIT(dev)];
sys/arch/x68k/dev/ite.c
446
struct tty *tp = ite_tty[UNIT(dev)];
sys/arch/x68k/dev/ite.c
451
static struct tty *
sys/arch/x68k/dev/ite.c
462
struct tty *tp = ite_tty[UNIT(dev)];
sys/arch/x68k/dev/ite.c
518
itestart(struct tty *tp)
sys/arch/xen/xen/xencons.c
106
struct tty *sc_tty;
sys/arch/xen/xen/xencons.c
155
static void xencons_start(struct tty *);
sys/arch/xen/xen/xencons.c
156
static int xencons_param(struct tty *, struct termios *);
sys/arch/xen/xen/xencons.c
261
struct tty *tp;
sys/arch/xen/xen/xencons.c
293
struct tty *tp = sc->sc_tty;
sys/arch/xen/xen/xencons.c
310
struct tty *tp = sc->sc_tty;
sys/arch/xen/xen/xencons.c
320
struct tty *tp = sc->sc_tty;
sys/arch/xen/xen/xencons.c
330
struct tty *tp = sc->sc_tty;
sys/arch/xen/xen/xencons.c
335
static struct tty *
sys/arch/xen/xen/xencons.c
340
struct tty *tp = sc->sc_tty;
sys/arch/xen/xen/xencons.c
350
struct tty *tp = sc->sc_tty;
sys/arch/xen/xen/xencons.c
372
xencons_start(struct tty *tp)
sys/arch/xen/xen/xencons.c
439
xencons_stop(struct tty *tp, int flag)
sys/arch/xen/xen/xencons.c
494
struct tty *tp;
sys/arch/xen/xen/xencons.c
635
xencons_param(struct tty *tp, struct termios *t)
sys/compat/common/tty_43.c
117
static int ttcompatgetflags(struct tty *);
sys/compat/common/tty_43.c
118
static void ttcompatsetflags(struct tty *, struct termios *);
sys/compat/common/tty_43.c
119
static void ttcompatsetlflags(struct tty *, struct termios *);
sys/compat/common/tty_43.c
123
compat_43_ttioctl(struct tty *tp, u_long com, void *data, int flag,
sys/compat/common/tty_43.c
285
ttcompatgetflags(struct tty *tp)
sys/compat/common/tty_43.c
350
ttcompatsetflags(struct tty *tp, struct termios *t)
sys/compat/common/tty_43.c
439
ttcompatsetlflags(struct tty *tp, struct termios *t)
sys/compat/common/tty_60.c
104
compat_60_ttioctl(struct tty *tp, u_long cmd, void *data, int flag,
sys/compat/linux/common/linux_file.c
303
struct tty *tp;
sys/compat/sys/ttycom.h
42
struct tty;
sys/compat/sys/ttycom.h
61
int compat_60_ttioctl(struct tty *, u_long, void *, int, struct lwp *);
sys/compat/sys/ttycom.h
69
int compat_43_ttioctl(struct tty *, u_long, void *, int, struct lwp *);
sys/dev/arcbios/arcbios_tty.c
139
struct tty *tp = arcbios_tty[unit];
sys/dev/arcbios/arcbios_tty.c
150
struct tty *tp = arcbios_tty[minor(dev)];
sys/dev/arcbios/arcbios_tty.c
158
struct tty *tp = arcbios_tty[minor(dev)];
sys/dev/arcbios/arcbios_tty.c
166
struct tty *tp = arcbios_tty[minor(dev)];
sys/dev/arcbios/arcbios_tty.c
175
struct tty *tp = arcbios_tty[unit];
sys/dev/arcbios/arcbios_tty.c
185
arcbios_tty_param(struct tty *tp, struct termios *t)
sys/dev/arcbios/arcbios_tty.c
192
arcbios_tty_start(struct tty *tp)
sys/dev/arcbios/arcbios_tty.c
213
arcbios_ttystop(struct tty *tp, int flag)
sys/dev/arcbios/arcbios_tty.c
246
struct tty *tp = v;
sys/dev/arcbios/arcbios_tty.c
256
struct tty *
sys/dev/arcbios/arcbios_tty.c
51
static struct tty *arcbios_tty[1];
sys/dev/arcbios/arcbios_tty.c
53
void arcbios_tty_start(struct tty *);
sys/dev/arcbios/arcbios_tty.c
55
int arcbios_tty_param(struct tty *, struct termios *);
sys/dev/arcbios/arcbios_tty.c
85
struct tty *tp;
sys/dev/bluetooth/bcsp.c
139
static int bcspopen(dev_t, struct tty *);
sys/dev/bluetooth/bcsp.c
140
static int bcspclose(struct tty *, int);
sys/dev/bluetooth/bcsp.c
141
static int bcspioctl(struct tty *, u_long, void *, int, struct lwp *);
sys/dev/bluetooth/bcsp.c
143
static int bcsp_slip_transmit(struct tty *);
sys/dev/bluetooth/bcsp.c
144
static int bcsp_slip_receive(int, struct tty *);
sys/dev/bluetooth/bcsp.c
366
bcspopen(dev_t device __unused, struct tty *tp)
sys/dev/bluetooth/bcsp.c
428
bcspclose(struct tty *tp, int flag __unused)
sys/dev/bluetooth/bcsp.c
462
bcspioctl(struct tty *tp, u_long cmd, void *data, int flag __unused,
sys/dev/bluetooth/bcsp.c
498
bcsp_slip_transmit(struct tty *tp)
sys/dev/bluetooth/bcsp.c
605
bcsp_slip_receive(int c, struct tty *tp)
sys/dev/bluetooth/bcsp.c
77
struct tty *sc_tp;
sys/dev/bluetooth/bth5.c
144
static int bth5open(dev_t, struct tty *);
sys/dev/bluetooth/bth5.c
145
static int bth5close(struct tty *, int);
sys/dev/bluetooth/bth5.c
146
static int bth5ioctl(struct tty *, u_long, void *, int, struct lwp *);
sys/dev/bluetooth/bth5.c
148
static int bth5_slip_transmit(struct tty *);
sys/dev/bluetooth/bth5.c
149
static int bth5_slip_receive(int, struct tty *);
sys/dev/bluetooth/bth5.c
371
bth5open(dev_t device __unused, struct tty *tp)
sys/dev/bluetooth/bth5.c
433
bth5close(struct tty *tp, int flag __unused)
sys/dev/bluetooth/bth5.c
467
bth5ioctl(struct tty *tp, u_long cmd, void *data, int flag __unused,
sys/dev/bluetooth/bth5.c
497
bth5_slip_transmit(struct tty *tp)
sys/dev/bluetooth/bth5.c
641
bth5_slip_receive(int c, struct tty *tp)
sys/dev/bluetooth/bth5.c
80
struct tty *sc_tp;
sys/dev/bluetooth/btuart.c
220
btuartopen(dev_t devno __unused, struct tty *tp)
sys/dev/bluetooth/btuart.c
278
btuartclose(struct tty *tp, int flag __unused)
sys/dev/bluetooth/btuart.c
308
btuartioctl(struct tty *tp, u_long cmd, void *data __unused,
sys/dev/bluetooth/btuart.c
333
btuartinput(int c, struct tty *tp)
sys/dev/bluetooth/btuart.c
480
btuartstart(struct tty *tp)
sys/dev/bluetooth/btuart.c
56
struct tty * sc_tp; /* tty pointer */
sys/dev/bluetooth/btuart.c
88
static int btuartopen(dev_t, struct tty *);
sys/dev/bluetooth/btuart.c
89
static int btuartclose(struct tty *, int);
sys/dev/bluetooth/btuart.c
90
static int btuartioctl(struct tty *, u_long, void *, int, struct lwp *);
sys/dev/bluetooth/btuart.c
91
static int btuartinput(int, struct tty *);
sys/dev/bluetooth/btuart.c
92
static int btuartstart(struct tty *);
sys/dev/cons.c
207
struct tty *ctp = NULL;
sys/dev/cons.c
227
struct tty *ctp = NULL;
sys/dev/cons.c
241
struct tty *ctp = NULL;
sys/dev/cons.c
251
struct tty *tp;
sys/dev/cons.c
284
struct tty *ctp = NULL;
sys/dev/cons.c
303
struct tty *ctp = NULL;
sys/dev/cons.c
481
cn_redirect(dev_t *devp, int is_read, int *error, struct tty **ctpp)
sys/dev/cons.c
484
struct tty *ctp;
sys/dev/cons.c
511
cn_release(struct tty *ctp)
sys/dev/cons.c
74
static bool cn_redirect(dev_t *, int, int *, struct tty **);
sys/dev/cons.c
75
static void cn_release(struct tty *);
sys/dev/cons.c
94
struct tty *volatile constty; /* virtual console output device */
sys/dev/dec/dz.c
175
static void dzstart(struct tty *);
sys/dev/dec/dz.c
176
static int dzparam(struct tty *, struct termios *);
sys/dev/dec/dz.c
259
struct tty *tp;
sys/dev/dec/dz.c
309
struct tty *tp;
sys/dev/dec/dz.c
374
struct tty *tp;
sys/dev/dec/dz.c
431
struct tty *tp = sc->sc_dz[line].dz_tty;
sys/dev/dec/dz.c
449
struct tty *tp = sc->sc_dz[DZ_PORT(minor(dev))].dz_tty;
sys/dev/dec/dz.c
458
struct tty *tp = sc->sc_dz[DZ_PORT(minor(dev))].dz_tty;
sys/dev/dec/dz.c
467
struct tty *tp = sc->sc_dz[DZ_PORT(minor(dev))].dz_tty;
sys/dev/dec/dz.c
478
struct tty *tp = sc->sc_dz[line].dz_tty;
sys/dev/dec/dz.c
528
struct tty *
sys/dev/dec/dz.c
538
dzstop(struct tty *tp, int flag)
sys/dev/dec/dz.c
545
dzstart(struct tty *tp)
sys/dev/dec/dz.c
574
dzparam(struct tty *tp, struct termios *t)
sys/dev/dec/dz.c
706
struct tty *tp;
sys/dev/dec/dz.c
765
struct tty *tp;
sys/dev/dec/dzvar.h
101
struct tty * dz_tty; /* what we work on */
sys/dev/goldfish/gftty.c
119
static void gftty_start(struct tty *);
sys/dev/goldfish/gftty.c
120
static int gftty_param_locked(struct tty *, struct termios *);
sys/dev/goldfish/gftty.c
121
static int gftty_param(struct tty *, struct termios *);
sys/dev/goldfish/gftty.c
216
struct tty *tp = tty_alloc();
sys/dev/goldfish/gftty.c
378
struct tty *tp = sc->sc_tty;
sys/dev/goldfish/gftty.c
407
struct tty *tp = sc->sc_tty;
sys/dev/goldfish/gftty.c
430
struct tty *tp;
sys/dev/goldfish/gftty.c
505
struct tty *tp = sc->sc_tty;
sys/dev/goldfish/gftty.c
546
struct tty *tp = sc->sc_tty;
sys/dev/goldfish/gftty.c
562
struct tty *tp = sc->sc_tty;
sys/dev/goldfish/gftty.c
578
struct tty *tp = sc->sc_tty;
sys/dev/goldfish/gftty.c
586
static struct tty *
sys/dev/goldfish/gftty.c
609
struct tty *tp = sc->sc_tty;
sys/dev/goldfish/gftty.c
667
gftty_start(struct tty *tp)
sys/dev/goldfish/gftty.c
711
gftty_stop(struct tty *tp, int flag)
sys/dev/goldfish/gftty.c
727
gftty_param_locked(struct tty *tp, struct termios *t)
sys/dev/goldfish/gftty.c
744
gftty_param(struct tty *tp, struct termios *t)
sys/dev/goldfish/gfttyvar.h
58
struct tty *sc_tty;
sys/dev/hpc/biconsdev.c
117
struct tty *tp = &biconsdev_tty[0];
sys/dev/hpc/biconsdev.c
134
tp->t_param = (int (*)(struct tty *, struct termios *))nullop;
sys/dev/hpc/biconsdev.c
144
biconsdev_output(struct tty *tp)
sys/dev/hpc/biconsdev.c
173
struct tty *tp = &biconsdev_tty[0];
sys/dev/hpc/biconsdev.c
201
struct tty *tp = &biconsdev_tty[0];
sys/dev/hpc/biconsdev.c
213
struct tty *tp = &biconsdev_tty[0];
sys/dev/hpc/biconsdev.c
222
struct tty *tp = &biconsdev_tty[0];
sys/dev/hpc/biconsdev.c
231
struct tty *tp = &biconsdev_tty[0];
sys/dev/hpc/biconsdev.c
237
struct tty *
sys/dev/hpc/biconsdev.c
240
struct tty *tp = &biconsdev_tty[0];
sys/dev/hpc/biconsdev.c
248
struct tty *tp = &biconsdev_tty[0];
sys/dev/hpc/biconsdev.c
88
struct tty biconsdev_tty[NBICONSDEV];
sys/dev/hpc/biconsdev.c
89
static void biconsdev_output(struct tty *);
sys/dev/hpc/hpf1275a_tty.c
299
hpf1275a_open(dev_t dev, struct tty *tp)
sys/dev/hpc/hpf1275a_tty.c
342
hpf1275a_close(struct tty *tp, int flag)
sys/dev/hpc/hpf1275a_tty.c
367
hpf1275a_input(int c, struct tty *tp)
sys/dev/hpc/hpf1275a_tty.c
60
struct tty *sc_tp; /* back reference to the tty */
sys/dev/hpc/hpf1275a_tty.c
73
static int hpf1275a_open(dev_t, struct tty *);
sys/dev/hpc/hpf1275a_tty.c
74
static int hpf1275a_close(struct tty *, int);
sys/dev/hpc/hpf1275a_tty.c
75
static int hpf1275a_input(int, struct tty *);
sys/dev/ic/cd18xx.c
126
void cdtty_rxsoft(struct cd18xx_softc *, struct cdtty_port *, struct tty *);
sys/dev/ic/cd18xx.c
127
void cdtty_txsoft(struct cd18xx_softc *, struct cdtty_port *, struct tty *);
sys/dev/ic/cd18xx.c
128
void cdtty_stsoft(struct cd18xx_softc *, struct cdtty_port *, struct tty *);
sys/dev/ic/cd18xx.c
1335
cdtty_rxsoft(struct cd18xx_softc *sc, struct cdtty_port *p, struct tty *tp)
sys/dev/ic/cd18xx.c
1433
cdtty_txsoft(struct cd18xx_softc *sc, struct cdtty_port *p, struct tty *tp)
sys/dev/ic/cd18xx.c
1445
cdtty_stsoft(struct cd18xx_softc *sc, struct cdtty_port *p, struct tty *tp)
sys/dev/ic/cd18xx.c
1479
struct tty *tp;
sys/dev/ic/cd18xx.c
156
static void cdttystart(struct tty *);
sys/dev/ic/cd18xx.c
157
static int cdttyparam(struct tty *, struct termios *);
sys/dev/ic/cd18xx.c
160
static int cdttyhwiflow(struct tty *, int);
sys/dev/ic/cd18xx.c
356
struct tty *tp = p->p_tty;
sys/dev/ic/cd18xx.c
394
struct tty *tp;
sys/dev/ic/cd18xx.c
496
struct tty *tp;
sys/dev/ic/cd18xx.c
537
struct tty *tp = port->p_tty;
sys/dev/ic/cd18xx.c
550
struct tty *tp = port->p_tty;
sys/dev/ic/cd18xx.c
560
struct tty *tp = port->p_tty;
sys/dev/ic/cd18xx.c
568
struct tty *
sys/dev/ic/cd18xx.c
585
struct tty *tp = port->p_tty;
sys/dev/ic/cd18xx.c
643
cdttystart(struct tty *tp)
sys/dev/ic/cd18xx.c
695
cdttystop(struct tty *tp, int flag)
sys/dev/ic/cd18xx.c
751
cdttyparam(struct tty *tp, struct termios *t)
sys/dev/ic/cd18xx.c
992
cdttyhwiflow(struct tty *tp, int block)
sys/dev/ic/cd18xxvar.h
38
struct tty *p_tty;
sys/dev/ic/clmpcc.c
1023
clmpccstop(struct tty *tp, int flag)
sys/dev/ic/clmpcc.c
1338
struct tty *tp;
sys/dev/ic/clmpcc.c
1339
int (*rint)(int, struct tty *);
sys/dev/ic/clmpcc.c
275
struct tty *tp;
sys/dev/ic/clmpcc.c
475
struct tty *tp;
sys/dev/ic/clmpcc.c
577
struct tty *tp = ch->ch_tty;
sys/dev/ic/clmpcc.c
607
struct tty *tp = sc->sc_chans[CLMPCCCHAN(dev)].ch_tty;
sys/dev/ic/clmpcc.c
616
struct tty *tp = sc->sc_chans[CLMPCCCHAN(dev)].ch_tty;
sys/dev/ic/clmpcc.c
625
struct tty *tp = sc->sc_chans[CLMPCCCHAN(dev)].ch_tty;
sys/dev/ic/clmpcc.c
630
struct tty *
sys/dev/ic/clmpcc.c
643
struct tty *tp = ch->ch_tty;
sys/dev/ic/clmpcc.c
719
struct tty *tp = ch->ch_tty;
sys/dev/ic/clmpcc.c
74
static int clmpcc_param(struct tty *, struct termios *);
sys/dev/ic/clmpcc.c
76
static void clmpcc_start(struct tty *);
sys/dev/ic/clmpcc.c
794
clmpcc_param(struct tty *tp, struct termios *t)
sys/dev/ic/clmpcc.c
984
clmpcc_start(struct tty *tp)
sys/dev/ic/clmpccvar.h
54
struct tty *ch_tty; /* This channel's tty structure */
sys/dev/ic/com.c
1065
struct tty *tp = sc->sc_tty;
sys/dev/ic/com.c
1118
struct tty *tp;
sys/dev/ic/com.c
1299
struct tty *tp = sc->sc_tty;
sys/dev/ic/com.c
1334
struct tty *tp = sc->sc_tty;
sys/dev/ic/com.c
1347
struct tty *tp = sc->sc_tty;
sys/dev/ic/com.c
1360
struct tty *tp = sc->sc_tty;
sys/dev/ic/com.c
1368
struct tty *
sys/dev/ic/com.c
1373
struct tty *tp = sc->sc_tty;
sys/dev/ic/com.c
1382
struct tty *tp;
sys/dev/ic/com.c
1645
comparam(struct tty *tp, struct termios *t)
sys/dev/ic/com.c
167
int comparam(struct tty *, struct termios *);
sys/dev/ic/com.c
168
void comstart(struct tty *);
sys/dev/ic/com.c
169
void comstartsoft(struct tty *);
sys/dev/ic/com.c
170
int comhwiflow(struct tty *, int);
sys/dev/ic/com.c
171
int comhwiflowsoft(struct tty *, int);
sys/dev/ic/com.c
194
static inline void com_rxsoft(struct com_softc *, struct tty *);
sys/dev/ic/com.c
195
static inline void com_txsoft(struct com_softc *, struct tty *);
sys/dev/ic/com.c
196
static inline void com_stsoft(struct com_softc *, struct tty *);
sys/dev/ic/com.c
2000
comhwiflow(struct tty *tp, int block)
sys/dev/ic/com.c
2034
comhwiflowsoft(struct tty *tp, int block)
sys/dev/ic/com.c
2068
comstart(struct tty *tp)
sys/dev/ic/com.c
2127
comstartsoft(struct tty *tp)
sys/dev/ic/com.c
2142
comstop(struct tty *tp, int flag)
sys/dev/ic/com.c
2182
com_rxsoft(struct com_softc *sc, struct tty *tp)
sys/dev/ic/com.c
2184
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/dev/ic/com.c
2286
com_txsoft(struct com_softc *sc, struct tty *tp)
sys/dev/ic/com.c
2306
com_stsoft(struct com_softc *sc, struct tty *tp)
sys/dev/ic/com.c
2344
struct tty *tp;
sys/dev/ic/com.c
491
struct tty *tp = sc->sc_tty;
sys/dev/ic/com.c
571
struct tty *tp;
sys/dev/ic/comvar.h
148
struct tty *sc_tty;
sys/dev/ic/cy.c
1227
struct tty *tp;
sys/dev/ic/cy.c
284
struct tty *tp;
sys/dev/ic/cy.c
408
struct tty *tp;
sys/dev/ic/cy.c
43
static int cyparam(struct tty *, struct termios *);
sys/dev/ic/cy.c
44
static void cystart(struct tty *);
sys/dev/ic/cy.c
445
struct tty *tp;
sys/dev/ic/cy.c
460
struct tty *tp;
sys/dev/ic/cy.c
475
struct tty *tp;
sys/dev/ic/cy.c
486
struct tty *
sys/dev/ic/cy.c
504
struct tty *tp;
sys/dev/ic/cy.c
583
cystart(struct tty *tp)
sys/dev/ic/cy.c
613
cystop(struct tty *tp, int flag)
sys/dev/ic/cy.c
639
cyparam(struct tty *tp, struct termios *t)
sys/dev/ic/cy.c
777
struct tty *tp = cy->cy_tty;
sys/dev/ic/cy.c
882
struct tty *tp;
sys/dev/ic/cyvar.h
53
struct tty *cy_tty;
sys/dev/ic/z8530tty.c
1276
zshwiflow(struct tty *tp, int block)
sys/dev/ic/z8530tty.c
1338
integrate void zstty_rxsoft(struct zstty_softc *, struct tty *);
sys/dev/ic/z8530tty.c
1339
integrate void zstty_txsoft(struct zstty_softc *, struct tty *);
sys/dev/ic/z8530tty.c
1340
integrate void zstty_stsoft(struct zstty_softc *, struct tty *);
sys/dev/ic/z8530tty.c
1540
zstty_rxsoft(struct zstty_softc *zst, struct tty *tp)
sys/dev/ic/z8530tty.c
1543
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/dev/ic/z8530tty.c
1642
zstty_txsoft(struct zstty_softc *zst, struct tty *tp)
sys/dev/ic/z8530tty.c
1657
zstty_stsoft(struct zstty_softc *zst, struct tty *tp)
sys/dev/ic/z8530tty.c
1709
struct tty *tp = zst->zst_tty;
sys/dev/ic/z8530tty.c
190
struct tty *zst_tty;
sys/dev/ic/z8530tty.c
272
static void zsstart(struct tty *);
sys/dev/ic/z8530tty.c
273
static int zsparam(struct tty *, struct termios *);
sys/dev/ic/z8530tty.c
277
static int zshwiflow(struct tty *, int);
sys/dev/ic/z8530tty.c
291
struct tty *zstty_get_tty_from_dev(device_t);
sys/dev/ic/z8530tty.c
299
struct tty *
sys/dev/ic/z8530tty.c
334
struct tty *tp;
sys/dev/ic/z8530tty.c
472
struct tty *
sys/dev/ic/z8530tty.c
487
struct tty *tp = zst->zst_tty;
sys/dev/ic/z8530tty.c
544
struct tty *tp;
sys/dev/ic/z8530tty.c
700
struct tty *tp;
sys/dev/ic/z8530tty.c
731
struct tty *tp;
sys/dev/ic/z8530tty.c
743
struct tty *tp;
sys/dev/ic/z8530tty.c
755
struct tty *tp;
sys/dev/ic/z8530tty.c
768
struct tty *tp;
sys/dev/ic/z8530tty.c
896
zsstart(struct tty *tp)
sys/dev/ic/z8530tty.c
944
zsstop(struct tty *tp, int flag)
sys/dev/ic/z8530tty.c
967
zsparam(struct tty *tp, struct termios *t)
sys/dev/ir/irframe_tty.c
1004
irts_tekram(struct tty *tp, u_int speed)
sys/dev/ir/irframe_tty.c
1044
irts_jeteye(struct tty *tp, u_int speed)
sys/dev/ir/irframe_tty.c
1064
irts_actisys(struct tty *tp, u_int speed)
sys/dev/ir/irframe_tty.c
1104
irts_litelink(struct tty *tp, u_int speed)
sys/dev/ir/irframe_tty.c
1166
irts_girbil(struct tty *tp, u_int speed)
sys/dev/ir/irframe_tty.c
123
int irframetopen(dev_t, struct tty *);
sys/dev/ir/irframe_tty.c
124
int irframetclose(struct tty *, int);
sys/dev/ir/irframe_tty.c
125
int irframetioctl(struct tty *, u_long, void *, int, struct lwp *);
sys/dev/ir/irframe_tty.c
126
int irframetinput(int, struct tty *);
sys/dev/ir/irframe_tty.c
127
int irframetstart(struct tty *);
sys/dev/ir/irframe_tty.c
143
static int irt_write_frame(struct tty *, u_int8_t *, size_t);
sys/dev/ir/irframe_tty.c
144
static int irt_putc(struct tty *, int);
sys/dev/ir/irframe_tty.c
147
static void irt_ioctl(struct tty *, u_long, void *);
sys/dev/ir/irframe_tty.c
148
static void irt_setspeed(struct tty *, u_int);
sys/dev/ir/irframe_tty.c
149
static void irt_setline(struct tty *, u_int);
sys/dev/ir/irframe_tty.c
150
static void irt_delay(struct tty *, u_int);
sys/dev/ir/irframe_tty.c
159
static void irts_none(struct tty *, u_int);
sys/dev/ir/irframe_tty.c
160
static void irts_tekram(struct tty *, u_int);
sys/dev/ir/irframe_tty.c
161
static void irts_jeteye(struct tty *, u_int);
sys/dev/ir/irframe_tty.c
162
static void irts_actisys(struct tty *, u_int);
sys/dev/ir/irframe_tty.c
163
static void irts_litelink(struct tty *, u_int);
sys/dev/ir/irframe_tty.c
164
static void irts_girbil(struct tty *, u_int);
sys/dev/ir/irframe_tty.c
170
void (*setspeed)(struct tty *, u_int);
sys/dev/ir/irframe_tty.c
267
irframetopen(dev_t dev, struct tty *tp)
sys/dev/ir/irframe_tty.c
335
irframetclose(struct tty *tp, int flag)
sys/dev/ir/irframe_tty.c
371
irframetioctl(struct tty *tp, u_long cmd, void *data, int flag,
sys/dev/ir/irframe_tty.c
415
irframetstart(struct tty *tp)
sys/dev/ir/irframe_tty.c
500
irframetinput(int c, struct tty *tp)
sys/dev/ir/irframe_tty.c
511
if (sc == NULL || tp != (struct tty *)sc->sc_tp)
sys/dev/ir/irframe_tty.c
584
struct tty *tp = h;
sys/dev/ir/irframe_tty.c
604
struct tty *tp = h;
sys/dev/ir/irframe_tty.c
625
struct tty *tp = h;
sys/dev/ir/irframe_tty.c
676
irt_putc(struct tty *tp, int c)
sys/dev/ir/irframe_tty.c
712
struct tty *tp = h;
sys/dev/ir/irframe_tty.c
732
irt_write_frame(struct tty *tp, u_int8_t *tbuf, size_t len)
sys/dev/ir/irframe_tty.c
755
struct tty *tp = h;
sys/dev/ir/irframe_tty.c
785
struct tty *tp = kn->kn_hook;
sys/dev/ir/irframe_tty.c
797
struct tty *tp = kn->kn_hook;
sys/dev/ir/irframe_tty.c
807
struct tty *tp = kn->kn_hook;
sys/dev/ir/irframe_tty.c
819
struct tty *tp = kn->kn_hook;
sys/dev/ir/irframe_tty.c
849
struct tty *tp = h;
sys/dev/ir/irframe_tty.c
879
struct tty *tp = h;
sys/dev/ir/irframe_tty.c
88
struct tty *sc_tp;
sys/dev/ir/irframe_tty.c
904
struct tty *tp = h;
sys/dev/ir/irframe_tty.c
919
struct tty *tp = h;
sys/dev/ir/irframe_tty.c
929
irt_ioctl(struct tty *tp, u_long cmd, void *arg)
sys/dev/ir/irframe_tty.c
948
irt_setspeed(struct tty *tp, u_int speed)
sys/dev/ir/irframe_tty.c
960
irt_setline(struct tty *tp, u_int line)
sys/dev/ir/irframe_tty.c
971
irt_delay(struct tty *tp, u_int ms)
sys/dev/ir/irframe_tty.c
984
irts_none(struct tty *tp, u_int speed)
sys/dev/marvell/gtmpsc.c
115
STATIC void gtmpscstart(struct tty *);
sys/dev/marvell/gtmpsc.c
116
STATIC int gtmpscparam(struct tty *, struct termios *);
sys/dev/marvell/gtmpsc.c
1219
struct tty *tp;
sys/dev/marvell/gtmpsc.c
236
struct tty *tp;
sys/dev/marvell/gtmpsc.c
451
struct tty *tp = sc->sc_tty;
sys/dev/marvell/gtmpsc.c
456
int (*rint)(int, struct tty *) = tp->t_linesw->l_rint;
sys/dev/marvell/gtmpsc.c
521
struct tty *tp;
sys/dev/marvell/gtmpsc.c
624
struct tty *tp = sc->sc_tty;
sys/dev/marvell/gtmpsc.c
649
struct tty *tp = sc->sc_tty;
sys/dev/marvell/gtmpsc.c
659
struct tty *tp = sc->sc_tty;
sys/dev/marvell/gtmpsc.c
669
struct tty *tp = sc->sc_tty;
sys/dev/marvell/gtmpsc.c
733
gtmpscstop(struct tty *tp, int flag)
sys/dev/marvell/gtmpsc.c
737
struct tty *
sys/dev/marvell/gtmpsc.c
751
struct tty *tp = sc->sc_tty;
sys/dev/marvell/gtmpsc.c
758
gtmpscstart(struct tty *tp)
sys/dev/marvell/gtmpsc.c
799
gtmpscparam(struct tty *tp, struct termios *t)
sys/dev/marvell/gtmpscvar.h
102
struct tty *sc_tty; /* our tty */
sys/dev/nullcons_subr.c
44
static struct tty *nulltty; /* null console tty */
sys/dev/nullcons_subr.c
98
struct tty*
sys/dev/ofw/ofcons.c
120
static void ofcons_start(struct tty *);
sys/dev/ofw/ofcons.c
121
static int ofcons_param(struct tty *, struct termios *);
sys/dev/ofw/ofcons.c
128
struct tty *tp;
sys/dev/ofw/ofcons.c
164
struct tty *tp = sc->of_tty;
sys/dev/ofw/ofcons.c
177
struct tty *tp = sc->of_tty;
sys/dev/ofw/ofcons.c
186
struct tty *tp = sc->of_tty;
sys/dev/ofw/ofcons.c
195
struct tty *tp = sc->of_tty;
sys/dev/ofw/ofcons.c
203
struct tty *tp = sc->of_tty;
sys/dev/ofw/ofcons.c
211
struct tty *
sys/dev/ofw/ofcons.c
220
ofcons_start(struct tty *tp)
sys/dev/ofw/ofcons.c
244
ofcons_param(struct tty *tp, struct termios *t)
sys/dev/ofw/ofcons.c
256
struct tty *tp = sc->of_tty;
sys/dev/ofw/ofcons.c
51
struct tty *of_tty;
sys/dev/pci/cz.c
1065
struct tty *tp = sc->sc_tty;
sys/dev/pci/cz.c
1095
struct tty *tp = sc->sc_tty;
sys/dev/pci/cz.c
1109
struct tty *tp = sc->sc_tty;
sys/dev/pci/cz.c
1123
struct tty *tp = sc->sc_tty;
sys/dev/pci/cz.c
1137
struct tty *tp = sc->sc_tty;
sys/dev/pci/cz.c
121
struct tty *sc_tty;
sys/dev/pci/cz.c
1328
czttyparam(struct tty *tp, struct termios *t)
sys/dev/pci/cz.c
1467
czttystart(struct tty *tp)
sys/dev/pci/cz.c
1488
czttystop(struct tty *tp, int flag)
sys/dev/pci/cz.c
1573
cztty_transmit(struct cztty_softc *sc, struct tty *tp)
sys/dev/pci/cz.c
1619
cztty_receive(struct cztty_softc *sc, struct tty *tp)
sys/dev/pci/cz.c
175
static int cztty_transmit(struct cztty_softc *, struct tty *);
sys/dev/pci/cz.c
176
static int cztty_receive(struct cztty_softc *, struct tty *);
sys/dev/pci/cz.c
182
static void czttystart(struct tty *tp);
sys/dev/pci/cz.c
183
static int czttyparam(struct tty *tp, struct termios *t);
sys/dev/pci/cz.c
292
struct tty *tp;
sys/dev/pci/cz.c
691
struct tty *tp;
sys/dev/pci/cz.c
883
static struct tty *
sys/dev/pci/cz.c
905
struct tty *tp = sc->sc_tty;
sys/dev/pci/cz.c
948
struct tty *tp;
sys/dev/pci/xmm7360.c
1574
if (qp->tty_needs_wake && xmm7360_qp_can_write(qp) && qp->port.tty) {
sys/dev/pci/xmm7360.c
1575
struct tty_ldisc *ldisc = tty_ldisc_ref(qp->port.tty);
sys/dev/pci/xmm7360.c
1578
ldisc->ops->write_wakeup(qp->port.tty);
sys/dev/pci/xmm7360.c
1639
static int xmm7360_tty_open(struct tty_struct *tty, struct file *filp)
sys/dev/pci/xmm7360.c
1641
struct queue_pair *qp = tty->driver_data;
sys/dev/pci/xmm7360.c
1642
return tty_port_open(&qp->port, tty, filp);
sys/dev/pci/xmm7360.c
1645
static void xmm7360_tty_close(struct tty_struct *tty, struct file *filp)
sys/dev/pci/xmm7360.c
1647
struct queue_pair *qp = tty->driver_data;
sys/dev/pci/xmm7360.c
1649
tty_port_close(&qp->port, tty, filp);
sys/dev/pci/xmm7360.c
1652
static int xmm7360_tty_write(struct tty_struct *tty, const unsigned char *buffer,
sys/dev/pci/xmm7360.c
1655
struct queue_pair *qp = tty->driver_data;
sys/dev/pci/xmm7360.c
1663
static int xmm7360_tty_write_room(struct tty_struct *tty)
sys/dev/pci/xmm7360.c
1665
struct queue_pair *qp = tty->driver_data;
sys/dev/pci/xmm7360.c
1672
static int xmm7360_tty_install(struct tty_driver *driver, struct tty_struct *tty)
sys/dev/pci/xmm7360.c
1677
ret = tty_standard_install(driver, tty);
sys/dev/pci/xmm7360.c
1681
tty->port = driver->ports[tty->index];
sys/dev/pci/xmm7360.c
1682
qp = container_of(tty->port, struct queue_pair, port);
sys/dev/pci/xmm7360.c
1683
tty->driver_data = qp;
sys/dev/pci/xmm7360.c
1688
static int xmm7360_tty_port_activate(struct tty_port *tport, struct tty_struct *tty)
sys/dev/pci/xmm7360.c
1690
struct queue_pair *qp = tty->driver_data;
sys/dev/pci/xmm7360.c
1696
struct queue_pair *qp = tport->tty->driver_data;
sys/dev/pci/xmm7360.c
1955
struct tty *sc_tty[XMM_QP_COUNT];
sys/dev/pci/xmm7360.c
2042
struct tty *tp;
sys/dev/pci/xmm7360.c
2424
static int wwancparam(struct tty *, struct termios *);
sys/dev/pci/xmm7360.c
2425
static void wwancstart(struct tty *);
sys/dev/pci/xmm7360.c
2432
struct tty *tp = sc->sc_tty[func];
sys/dev/pci/xmm7360.c
2446
struct tty *tp;
sys/dev/pci/xmm7360.c
2502
struct tty *tp = sc->sc_tty[func];
sys/dev/pci/xmm7360.c
2555
struct tty *tp = sc->sc_tty[func];
sys/dev/pci/xmm7360.c
2604
struct tty *tp = sc->sc_tty[DEVFUNC(dev)];
sys/dev/pci/xmm7360.c
2625
struct tty *tp = sc->sc_tty[func];
sys/dev/pci/xmm7360.c
2638
struct tty *
sys/dev/pci/xmm7360.c
2642
struct tty *tp = sc->sc_tty[DEVFUNC(dev)];
sys/dev/pci/xmm7360.c
2651
wwancparam(struct tty *tp, struct termios *t)
sys/dev/pci/xmm7360.c
2670
wwancstart(struct tty *tp)
sys/dev/pci/xmm7360.c
2721
struct tty *tp = sc->sc_tty[func];
sys/dev/pci/xmm7360.c
2758
struct tty *tp = sc->sc_tty[func];
sys/dev/pci/xmm7360.c
2789
struct tty *tp = sc->sc_tty[func];
sys/dev/pci/xmm7360.c
2831
struct tty *tp = sc->sc_tty[func];
sys/dev/qbus/dhu.c
113
struct tty *dhu_tty; /* what we work on */
sys/dev/qbus/dhu.c
178
static void dhustart(struct tty *);
sys/dev/qbus/dhu.c
179
static int dhuparam(struct tty *, struct termios *);
sys/dev/qbus/dhu.c
180
static int dhuiflow(struct tty *, int);
sys/dev/qbus/dhu.c
290
struct tty *tp;
sys/dev/qbus/dhu.c
320
struct tty *tp;
sys/dev/qbus/dhu.c
392
struct tty *tp;
sys/dev/qbus/dhu.c
427
struct tty *tp;
sys/dev/qbus/dhu.c
497
struct tty *tp = sc->sc_dhu[line].dhu_tty;
sys/dev/qbus/dhu.c
517
struct tty *tp = sc->sc_dhu[DHU_LINE(minor(dev))].dhu_tty;
sys/dev/qbus/dhu.c
526
struct tty *tp = sc->sc_dhu[DHU_LINE(minor(dev))].dhu_tty;
sys/dev/qbus/dhu.c
535
struct tty *tp = sc->sc_dhu[DHU_LINE(minor(dev))].dhu_tty;
sys/dev/qbus/dhu.c
547
struct tty *tp = sc->sc_dhu[line].dhu_tty;
sys/dev/qbus/dhu.c
598
struct tty *
sys/dev/qbus/dhu.c
608
dhustop(struct tty *tp, int flag)
sys/dev/qbus/dhu.c
636
dhustart(struct tty *tp)
sys/dev/qbus/dhu.c
691
dhuparam(struct tty *tp, struct termios *t)
sys/dev/qbus/dhu.c
778
dhuiflow(struct tty *tp, int flag)
sys/dev/qbus/dl.c
137
struct tty *sc_tty;
sys/dev/qbus/dl.c
144
static void dlstart (struct tty *);
sys/dev/qbus/dl.c
145
static int dlparam (struct tty *, struct termios *);
sys/dev/qbus/dl.c
282
struct tty *tp = sc->sc_tty;
sys/dev/qbus/dl.c
322
struct tty *tp = sc->sc_tty;
sys/dev/qbus/dl.c
333
struct tty *tp;
sys/dev/qbus/dl.c
375
struct tty *tp = sc->sc_tty;
sys/dev/qbus/dl.c
389
struct tty *tp = sc->sc_tty;
sys/dev/qbus/dl.c
398
struct tty *tp = sc->sc_tty;
sys/dev/qbus/dl.c
407
struct tty *tp = sc->sc_tty;
sys/dev/qbus/dl.c
416
struct tty *tp = sc->sc_tty;
sys/dev/qbus/dl.c
449
struct tty *
sys/dev/qbus/dl.c
458
dlstop(struct tty *tp, int flag)
sys/dev/qbus/dl.c
468
dlstart(struct tty *tp)
sys/dev/qbus/dl.c
488
dlparam(struct tty *tp, struct termios *t)
sys/dev/qbus/qd.c
1079
struct tty *tp;
sys/dev/qbus/qd.c
1503
struct tty *tp;
sys/dev/qbus/qd.c
154
struct tty *qd_tty[NQD*4]; /* teletype structures for each.. */
sys/dev/qbus/qd.c
1636
struct tty *tp;
sys/dev/qbus/qd.c
1662
struct tty *tp;
sys/dev/qbus/qd.c
1763
struct tty *tp;
sys/dev/qbus/qd.c
1803
qdstop(struct tty *tp, int flag)
sys/dev/qbus/qd.c
2299
struct tty *tp;
sys/dev/qbus/qd.c
333
void qdstart(struct tty *);
sys/dev/qbus/qd.c
798
struct tty *tp;
sys/dev/qbus/qd.c
882
struct tty *tp;
sys/dev/rcons/rcons.h
102
void rcons_ttyinit(struct tty *);
sys/dev/rcons/rcons_kern.c
180
rcons_ttyinit(struct tty *tp)
sys/dev/rcons/rcons_kern.c
60
static void rcons_output(struct tty *);
sys/dev/rcons/rcons_kern.c
84
rcons_output(struct tty *tp)
sys/dev/sbus/magma.c
1028
struct tty *tp = mp->mp_tty;
sys/dev/sbus/magma.c
1042
struct tty *tp = mp->mp_tty;
sys/dev/sbus/magma.c
1056
struct tty *tp = mp->mp_tty;
sys/dev/sbus/magma.c
1064
struct tty *
sys/dev/sbus/magma.c
1083
struct tty *tp = mp->mp_tty;
sys/dev/sbus/magma.c
1154
mttystop(struct tty *tp, int flags)
sys/dev/sbus/magma.c
1181
mtty_start(struct tty *tp)
sys/dev/sbus/magma.c
1219
struct tty *tp = mp->mp_tty;
sys/dev/sbus/magma.c
1279
mtty_param(struct tty *tp, struct termios *t)
sys/dev/sbus/magma.c
741
struct tty *tp = mp->mp_tty;
sys/dev/sbus/magma.c
858
struct tty *tp;
sys/dev/sbus/magma.c
897
struct tty *tp;
sys/dev/sbus/magma.c
989
struct tty *tp = mp->mp_tty;
sys/dev/sbus/magmareg.h
130
struct tty *mp_tty;
sys/dev/sbus/magmareg.h
205
int mtty_param(struct tty *, struct termios *);
sys/dev/sbus/magmareg.h
206
void mtty_start(struct tty *);
sys/dev/sbus/spif.c
310
struct tty *tp;
sys/dev/sbus/spif.c
338
struct tty *tp;
sys/dev/sbus/spif.c
412
struct tty *tp = sp->sp_tty;
sys/dev/sbus/spif.c
438
struct tty *tp = sp->sp_tty;
sys/dev/sbus/spif.c
505
struct tty *tp = sp->sp_tty;
sys/dev/sbus/spif.c
556
stty_param(struct tty *tp, struct termios *t)
sys/dev/sbus/spif.c
657
struct tty *tp = sp->sp_tty;
sys/dev/sbus/spif.c
667
struct tty *tp = sp->sp_tty;
sys/dev/sbus/spif.c
677
struct tty *tp = sp->sp_tty;
sys/dev/sbus/spif.c
682
struct tty *
sys/dev/sbus/spif.c
692
stty_stop(struct tty *tp, int flags)
sys/dev/sbus/spif.c
709
stty_start(struct tty *tp)
sys/dev/sbus/spif.c
900
struct tty *tp;
sys/dev/sbus/spifreg.h
399
int stty_param(struct tty *, struct termios *);
sys/dev/sbus/spifreg.h
403
void stty_start(struct tty *);
sys/dev/sbus/spifvar.h
39
struct tty *sp_tty; /* tty device */
sys/dev/sun/kbd_ms_ttyvar.h
48
struct tty;
sys/dev/sun/kbd_ms_ttyvar.h
54
struct tty *kmta_tp; /* tty to take over */
sys/dev/sun/sunkbd.c
134
struct tty *tp = args->kmta_tp;
sys/dev/sun/sunkbd.c
215
struct tty *tp = k->k_priv;
sys/dev/sun/sunkbd.c
241
sunkbdinput(int c, struct tty *tp)
sys/dev/sun/sunkbd.c
283
sunkbdstart(struct tty *tp)
sys/dev/sun/sunkbd.c
302
struct tty *tp = k->k_priv;
sys/dev/sun/sunkbd.c
92
int sunkbdinput(int, struct tty *);
sys/dev/sun/sunkbd.c
93
int sunkbdstart(struct tty *);
sys/dev/sun/sunms.c
144
struct tty *tp = args->kmta_tp;
sys/dev/sun/sunms.c
190
struct tty *tp = ms->ms_priv;
sys/dev/sun/sunms.c
213
sunmsinput(int c, struct tty *tp)
sys/dev/sun/sunms.c
94
int sunmsinput(int, struct tty *);
sys/dev/usb/ucom.c
1143
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
1193
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
1244
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
1256
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
1268
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
1275
struct tty *
sys/dev/usb/ucom.c
1289
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
1498
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
1531
ucomparam(struct tty *tp, struct termios *t)
sys/dev/usb/ucom.c
1603
ucomhwiflow(struct tty *tp, int block)
sys/dev/usb/ucom.c
1627
ucomstart(struct tty *tp)
sys/dev/usb/ucom.c
1685
ucomstop(struct tty *tp, int flag)
sys/dev/usb/ucom.c
1707
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
175
struct tty *sc_tty; /* our tty */
sys/dev/usb/ucom.c
1782
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
1831
int (*rint)(int, struct tty *);
sys/dev/usb/ucom.c
1833
struct tty *tp;
sys/dev/usb/ucom.c
2076
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
233
static int ucomparam(struct tty *, struct termios *);
sys/dev/usb/ucom.c
234
static int ucomhwiflow(struct tty *, int);
sys/dev/usb/ucom.c
235
static void ucomstart(struct tty *);
sys/dev/usb/ucom.c
538
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
713
struct tty *tp = tty_alloc();
sys/dev/usb/ucom.c
781
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
874
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucom.c
922
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucycom.c
125
struct tty *sc_tty;
sys/dev/usb/ucycom.c
176
Static int ucycomparam(struct tty *, struct termios *);
sys/dev/usb/ucycom.c
177
Static void ucycomstart(struct tty *);
sys/dev/usb/ucycom.c
265
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucycom.c
329
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucycom.c
348
struct tty *tp;
sys/dev/usb/ucycom.c
463
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucycom.c
485
ucycomstart(struct tty *tp)
sys/dev/usb/ucycom.c
634
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucycom.c
673
ucycomparam(struct tty *tp, struct termios *t)
sys/dev/usb/ucycom.c
758
ucycomstop(struct tty *tp, int flag)
sys/dev/usb/ucycom.c
768
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucycom.c
786
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucycom.c
798
static struct tty *
sys/dev/usb/ucycom.c
803
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucycom.c
815
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucycom.c
891
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucycom.c
964
struct tty *tp = sc->sc_tty;
sys/dev/usb/ucycom.c
965
int (*rint)(int , struct tty *) = tp->t_linesw->l_rint;
sys/dev/usb/uhso.c
1317
struct tty *tp = hp->hp_tp;
sys/dev/usb/uhso.c
1371
struct tty *tp;
sys/dev/usb/uhso.c
1401
struct tty *tp = hp->hp_tp;
sys/dev/usb/uhso.c
1434
struct tty *tp = hp->hp_tp;
sys/dev/usb/uhso.c
1484
struct tty *tp;
sys/dev/usb/uhso.c
1529
struct tty *tp = hp->hp_tp;
sys/dev/usb/uhso.c
1586
struct tty *tp = hp->hp_tp;
sys/dev/usb/uhso.c
1637
struct tty *tp = hp->hp_tp;
sys/dev/usb/uhso.c
1660
struct tty *tp = hp->hp_tp;
sys/dev/usb/uhso.c
1704
struct tty *tp = hp->hp_tp;
sys/dev/usb/uhso.c
1763
uhso_tty_stop(struct tty *tp, int flag)
sys/dev/usb/uhso.c
1774
static struct tty *
sys/dev/usb/uhso.c
1788
struct tty *tp = hp->hp_tp;
sys/dev/usb/uhso.c
1805
uhso_tty_param(struct tty *tp, struct termios *t)
sys/dev/usb/uhso.c
1843
uhso_tty_start(struct tty *tp)
sys/dev/usb/uhso.c
279
struct tty *hp_tp; /* tty pointer */
sys/dev/usb/uhso.c
401
Static void uhso_tty_start(struct tty *);
sys/dev/usb/uhso.c
402
Static int uhso_tty_param(struct tty *, struct termios *);
sys/dev/virtio/viocon.c
106
struct tty *vp_tty;
sys/dev/virtio/viocon.c
145
void vioconstart(struct tty *);
sys/dev/virtio/viocon.c
146
int vioconhwiflow(struct tty *, int);
sys/dev/virtio/viocon.c
147
int vioconparam(struct tty *, struct termios *);
sys/dev/virtio/viocon.c
152
void vioconstop(struct tty *, int);
sys/dev/virtio/viocon.c
154
struct tty *viocontty(dev_t dev);
sys/dev/virtio/viocon.c
247
struct tty *tp;
sys/dev/virtio/viocon.c
352
struct tty *tp = vp->vp_tty;
sys/dev/virtio/viocon.c
404
struct tty *tp = vp->vp_tty;
sys/dev/virtio/viocon.c
423
vioconstart(struct tty *tp)
sys/dev/virtio/viocon.c
478
vioconhwiflow(struct tty *tp, int stop)
sys/dev/virtio/viocon.c
496
vioconparam(struct tty *tp, struct termios *t)
sys/dev/virtio/viocon.c
513
struct tty *tp;
sys/dev/virtio/viocon.c
564
struct tty *tp = vp->vp_tty;
sys/dev/virtio/viocon.c
586
struct tty *tp = vp->vp_tty;
sys/dev/virtio/viocon.c
595
struct tty *tp = vp->vp_tty;
sys/dev/virtio/viocon.c
600
struct tty *
sys/dev/virtio/viocon.c
609
vioconstop(struct tty *tp, int flag)
sys/dev/virtio/viocon.c
624
struct tty *tp;
sys/dev/wscons/wsdisplay.c
1009
struct tty *tp;
sys/dev/wscons/wsdisplay.c
1076
struct tty *tp;
sys/dev/wscons/wsdisplay.c
1137
struct tty *tp;
sys/dev/wscons/wsdisplay.c
1165
struct tty *tp;
sys/dev/wscons/wsdisplay.c
1191
struct tty *tp;
sys/dev/wscons/wsdisplay.c
1233
struct tty *
sys/dev/wscons/wsdisplay.c
1258
struct tty *tp;
sys/dev/wscons/wsdisplay.c
1663
wsdisplaystart(struct tty *tp)
sys/dev/wscons/wsdisplay.c
1757
wsdisplaystop(struct tty *tp, int flag)
sys/dev/wscons/wsdisplay.c
1770
wsdisplayparam(struct tty *tp, struct termios *t)
sys/dev/wscons/wsdisplay.c
1801
struct tty *tp;
sys/dev/wscons/wsdisplay.c
1802
int (*ifcn)(int, struct tty *);
sys/dev/wscons/wsdisplay.c
1840
struct tty *tp;
sys/dev/wscons/wsdisplay.c
219
static void wsdisplaystart(struct tty *);
sys/dev/wscons/wsdisplay.c
220
static int wsdisplayparam(struct tty *, struct termios *);
sys/dev/wscons/wsdisplay.c
302
struct tty *tp = scr->scr_tty;
sys/dev/wscons/wsdisplay.c
504
struct tty *tp = scr->scr_tty;
sys/dev/wscons/wsdisplay.c
97
struct tty *scr_tty;
sys/kern/kern_auth.c
1093
struct tty *tty)
sys/kern/kern_auth.c
1096
action, tty, NULL, NULL, NULL));
sys/kern/kern_exit.c
378
struct tty *tp;
sys/kern/kern_proc.c
1519
struct tty *ttyp;
sys/kern/kern_proc.c
2715
struct tty *tp;
sys/kern/kern_proc.c
2771
struct tty *tp;
sys/kern/subr_devsw.c
1545
cdev_stop(struct tty *tp, int flag)
sys/kern/subr_devsw.c
1560
struct tty *
sys/kern/subr_prf.c
397
putone(int c, int flags, struct tty *tp)
sys/kern/subr_prf.c
399
struct tty *ctp;
sys/kern/subr_prf.c
453
addtstamp(int flags, struct tty *tp)
sys/kern/subr_prf.c
492
putchar(int c, int flags, struct tty *tp)
sys/kern/subr_prf.c
636
struct tty *tp = NULL;
sys/kern/subr_prf.c
668
ttyprintf(struct tty *tp, const char *fmt, ...)
sys/kern/subr_prf.c
98
static void putchar(int, int, struct tty *);
sys/kern/tty.c
1028
ttioctl(struct tty *tp, u_long cmd, void *data, int flag, struct lwp *l)
sys/kern/tty.c
106
static int ttnread(struct tty *);
sys/kern/tty.c
107
static void ttyblock(struct tty *);
sys/kern/tty.c
108
static void ttyecho(int, struct tty *);
sys/kern/tty.c
109
static void ttyrubo(struct tty *, int);
sys/kern/tty.c
110
static void ttyprintf_nolock(struct tty *, const char *fmt, ...)
sys/kern/tty.c
1133
struct tty *ctp;
sys/kern/tty.c
1549
ttpoll(struct tty *tp, int events, struct lwp *l)
sys/kern/tty.c
1583
struct tty *tp;
sys/kern/tty.c
1594
struct tty *tp;
sys/kern/tty.c
1610
struct tty *tp;
sys/kern/tty.c
1621
struct tty *tp;
sys/kern/tty.c
1651
struct tty *tp;
sys/kern/tty.c
1684
ttnread(struct tty *tp)
sys/kern/tty.c
1705
ttywait_timo(struct tty *tp, int timo)
sys/kern/tty.c
1730
ttywait(struct tty *tp)
sys/kern/tty.c
1739
ttywflush(struct tty *tp)
sys/kern/tty.c
1757
ttyflush(struct tty *tp, int rw)
sys/kern/tty.c
1783
ttychars(struct tty *tp)
sys/kern/tty.c
1794
ttyblock(struct tty *tp)
sys/kern/tty.c
1831
struct tty *tp;
sys/kern/tty.c
1851
ttstart(struct tty *tp)
sys/kern/tty.c
1863
ttylclose(struct tty *tp, int flag)
sys/kern/tty.c
1881
ttymodem(struct tty *tp, int flag)
sys/kern/tty.c
1917
nullmodem(struct tty *tp, int flag)
sys/kern/tty.c
1940
ttypend(struct tty *tp)
sys/kern/tty.c
1961
ttread(struct tty *tp, struct uio *uio, int flag)
sys/kern/tty.c
2192
ttycheckoutq_wlock(struct tty *tp)
sys/kern/tty.c
2209
ttycheckoutq(struct tty *tp)
sys/kern/tty.c
2224
ttwrite(struct tty *tp, struct uio *uio, int flag)
sys/kern/tty.c
2415
ttypull(struct tty *tp)
sys/kern/tty.c
2433
ttyrub(int c, struct tty *tp)
sys/kern/tty.c
244
tty_set_qsize(struct tty *tp, int newsize)
sys/kern/tty.c
2511
ttyrubo(struct tty *tp, int cnt)
sys/kern/tty.c
2531
ttyretype(struct tty *tp)
sys/kern/tty.c
2559
ttyecho(int c, struct tty *tp)
sys/kern/tty.c
2588
ttwakeup(struct tty *tp)
sys/kern/tty.c
2620
ttsetwater(struct tty *tp)
sys/kern/tty.c
2641
ttygetinfo(struct tty *tp, int fromsig, char *buf, size_t bufsz)
sys/kern/tty.c
2790
ttyputinfo(struct tty *tp, char *buf)
sys/kern/tty.c
2824
tputchar(int c, int flags, struct tty *tp)
sys/kern/tty.c
2854
ttysleep(struct tty *tp, kcondvar_t *cv, bool catch_p, int timo)
sys/kern/tty.c
2876
ttypause(struct tty *tp, int timo)
sys/kern/tty.c
2899
tty_attach(struct tty *tp)
sys/kern/tty.c
2912
tty_detach(struct tty *tp)
sys/kern/tty.c
2928
struct tty *
sys/kern/tty.c
2931
struct tty *tp;
sys/kern/tty.c
2967
tty_free(struct tty *tp)
sys/kern/tty.c
3017
ttyprintf_nolock(struct tty *tp, const char *fmt, ...)
sys/kern/tty.c
3031
struct tty *tty;
sys/kern/tty.c
3039
tty = arg0;
sys/kern/tty.c
3042
if ((tty->t_state & TS_ISOPEN) == 0)
sys/kern/tty.c
3050
if ((tty->t_state & TS_XCLUDE) == 0)
sys/kern/tty.c
3082
ttysig(struct tty *tp, enum ttysigtype st, int sig)
sys/kern/tty.c
3107
struct tty *tp;
sys/kern/tty.c
3170
tty_getctrlchar(struct tty *tp, unsigned which)
sys/kern/tty.c
3177
tty_setctrlchar(struct tty *tp, unsigned which, unsigned char val)
sys/kern/tty.c
3184
tty_try_xonxoff(struct tty *tp, unsigned char c)
sys/kern/tty.c
360
ttylock(struct tty *tp)
sys/kern/tty.c
367
ttyunlock(struct tty *tp)
sys/kern/tty.c
374
ttylocked(struct tty *tp)
sys/kern/tty.c
381
ttyopen(struct tty *tp, int dialout, int nonblock)
sys/kern/tty.c
436
ttylopen(dev_t device, struct tty *tp)
sys/kern/tty.c
457
ttycancel(struct tty *tp)
sys/kern/tty.c
473
ttyclose(struct tty *tp)
sys/kern/tty.c
533
tty_acquire(struct tty *tp)
sys/kern/tty.c
542
tty_release(struct tty *tp)
sys/kern/tty.c
580
ttyinput_wlock(int c, struct tty *tp)
sys/kern/tty.c
908
ttyinput(int c, struct tty *tp)
sys/kern/tty.c
934
ttyoutput(int c, struct tty *tp)
sys/kern/tty_conf.c
149
ttynullioctl(struct tty *tp, u_long cmd, void *data, int flags, struct lwp *l)
sys/kern/tty_conf.c
161
ttyerrpoll(struct tty *tp, int events, struct lwp *l)
sys/kern/tty_pty.c
1046
struct tty *
sys/kern/tty_pty.c
1050
struct tty *tp = pti->pt_tty;
sys/kern/tty_pty.c
1060
struct tty *tp = pti->pt_tty;
sys/kern/tty_pty.c
373
struct tty *tp;
sys/kern/tty_pty.c
420
struct tty *tp = pti->pt_tty;
sys/kern/tty_pty.c
434
struct tty *tp = pti->pt_tty;
sys/kern/tty_pty.c
494
struct tty *tp = pti->pt_tty;
sys/kern/tty_pty.c
508
struct tty *tp = pti->pt_tty;
sys/kern/tty_pty.c
521
ptsstart(struct tty *tp)
sys/kern/tty_pty.c
545
ptsstop(struct tty *tp, int flush)
sys/kern/tty_pty.c
576
ptcwakeup(struct tty *tp, int flag)
sys/kern/tty_pty.c
603
struct tty *tp;
sys/kern/tty_pty.c
634
struct tty *tp = pti->pt_tty;
sys/kern/tty_pty.c
648
struct tty *tp = pti->pt_tty;
sys/kern/tty_pty.c
73
struct tty *pt_tty;
sys/kern/tty_pty.c
737
struct tty *tp = pti->pt_tty;
sys/kern/tty_pty.c
862
struct tty *tp = pti->pt_tty;
sys/kern/tty_pty.c
91
void ptcwakeup(struct tty *, int);
sys/kern/tty_pty.c
915
struct tty *tp;
sys/kern/tty_pty.c
92
void ptsstart(struct tty *);
sys/kern/tty_pty.c
969
struct tty *tp;
sys/miscfs/procfs/procfs_status.c
95
struct tty *tp;
sys/net/if_sl.c
197
static int slclose(struct tty *, int);
sys/net/if_sl.c
198
static int slinput(int, struct tty *);
sys/net/if_sl.c
200
static int slopen(dev_t, struct tty *);
sys/net/if_sl.c
203
static int slstart(struct tty *);
sys/net/if_sl.c
204
static int sltioctl(struct tty *, u_long, void *, int, struct lwp *);
sys/net/if_sl.c
326
slopen(dev_t dev, struct tty *tp)
sys/net/if_sl.c
394
slclose(struct tty *tp, int flag)
sys/net/if_sl.c
443
sltioctl(struct tty *tp, u_long cmd, void *data, int flag,
sys/net/if_sl.c
552
slstart(struct tty *tp)
sys/net/if_sl.c
613
slinput(int c, struct tty *tp)
sys/net/if_sl.c
715
struct tty *tp = sc->sc_ttyp;
sys/net/if_slvar.h
48
struct tty *sc_ttyp; /* pointer to tty structure */
sys/net/ppp_tty.c
134
static int pppopen(dev_t dev, struct tty *tp);
sys/net/ppp_tty.c
135
static int pppclose(struct tty *tp, int flag);
sys/net/ppp_tty.c
136
static int pppread(struct tty *tp, struct uio *uio, int flag);
sys/net/ppp_tty.c
137
static int pppwrite(struct tty *tp, struct uio *uio, int flag);
sys/net/ppp_tty.c
138
static int ppptioctl(struct tty *tp, u_long cmd, void *data, int flag,
sys/net/ppp_tty.c
140
static int pppinput(int c, struct tty *tp);
sys/net/ppp_tty.c
141
static int pppstart(struct tty *tp);
sys/net/ppp_tty.c
187
pppopen(dev_t dev, struct tty *tp)
sys/net/ppp_tty.c
250
pppclose(struct tty *tp, int flag)
sys/net/ppp_tty.c
264
if (tp == (struct tty *) sc->sc_devp) {
sys/net/ppp_tty.c
300
pppread(struct tty *tp, struct uio *uio, int flag)
sys/net/ppp_tty.c
314
if (tp != (struct tty *) sc->sc_devp ||
sys/net/ppp_tty.c
355
pppwrite(struct tty *tp, struct uio *uio, int flag)
sys/net/ppp_tty.c
366
if (sc == NULL || tp != (struct tty *) sc->sc_devp)
sys/net/ppp_tty.c
417
ppptioctl(struct tty *tp, u_long cmd, void *data, int flag, struct lwp *l)
sys/net/ppp_tty.c
427
if (tp != (struct tty *) sc->sc_devp) {
sys/net/ppp_tty.c
539
struct tty *tp = (struct tty *) sc->sc_devp;
sys/net/ppp_tty.c
714
struct tty *tp;
sys/net/ppp_tty.c
717
tp = (struct tty *) sc->sc_devp;
sys/net/ppp_tty.c
731
pppstart(struct tty *tp)
sys/net/ppp_tty.c
760
&& sc != NULL && tp == (struct tty *) sc->sc_devp) {
sys/net/ppp_tty.c
774
struct tty *tp = (struct tty *) sc->sc_devp;
sys/net/ppp_tty.c
814
pppinput(int c, struct tty *tp)
sys/net/ppp_tty.c
822
if (sc == NULL || tp != (struct tty *) sc->sc_devp)
sys/rump/librump/rumpkern/emul.c
351
int rump_ttycheckoutq(struct tty *, int);
sys/rump/librump/rumpkern/emul.c
353
rump_ttycheckoutq(struct tty *tp, int wait)
sys/rump/librump/rumpkern/emul.c
360
int rump_tputchar(int, int, struct tty *);
sys/rump/librump/rumpkern/emul.c
362
rump_tputchar(int c, int flags, struct tty *tp)
sys/rump/librump/rumpkern/emul.c
71
struct tty *constty;
sys/sys/compat_stub.h
222
struct tty;
sys/sys/compat_stub.h
225
(struct tty *, u_long, void *, int, struct lwp *));
sys/sys/compat_stub.h
326
(struct tty *, u_long, void *, int, struct lwp *));
sys/sys/conf.h
126
typedef void dev_stop_t(struct tty *, int);
sys/sys/conf.h
127
typedef struct tty *dev_tty_t(dev_t);
sys/sys/conf.h
155
int ttyenodev(struct tty *, ...);
sys/sys/conf.h
156
void ttyvenodev(struct tty *, ...);
sys/sys/conf.h
157
void ttyvnullop(struct tty *, ...);
sys/sys/conf.h
233
int (*l_open) (dev_t, struct tty *);
sys/sys/conf.h
234
int (*l_close) (struct tty *, int);
sys/sys/conf.h
235
int (*l_read) (struct tty *, struct uio *, int);
sys/sys/conf.h
236
int (*l_write) (struct tty *, struct uio *, int);
sys/sys/conf.h
237
int (*l_ioctl) (struct tty *, u_long, void *, int,
sys/sys/conf.h
239
int (*l_rint) (int, struct tty *);
sys/sys/conf.h
240
int (*l_start) (struct tty *);
sys/sys/conf.h
241
int (*l_modem) (struct tty *, int);
sys/sys/conf.h
242
int (*l_poll) (struct tty *, int, struct lwp *);
sys/sys/conf.h
255
#define ttynodisc ((int (*)(dev_t, struct tty *))devenodev)
sys/sys/conf.h
256
#define ttyerrclose ((int (*)(struct tty *, int))ttyenodev)
sys/sys/conf.h
257
#define ttyerrio ((int (*)(struct tty *, struct uio *, int))ttyenodev)
sys/sys/conf.h
258
#define ttyerrstart ((int (*)(struct tty *))ttyenodev)
sys/sys/conf.h
260
int ttyerrpoll (struct tty *, int, struct lwp *);
sys/sys/conf.h
261
int ttynullioctl(struct tty *, u_long, void *, int, struct lwp *);
sys/sys/conf.h
53
struct tty;
sys/sys/conf.h
96
void (*d_stop)(struct tty *, int);
sys/sys/conf.h
97
struct tty * (*d_tty)(dev_t);
sys/sys/kauth.h
45
struct tty;
sys/sys/kauth.h
480
int kauth_authorize_device_tty(kauth_cred_t, kauth_action_t, struct tty *);
sys/sys/proc.h
112
struct tty *s_ttyp; /* Controlling terminal */
sys/sys/systm.h
309
void ttyprintf(struct tty *, const char *, ...) __printflike(2, 3);
sys/sys/systm.h
69
struct tty;
sys/sys/tty.h
110
TAILQ_ENTRY(tty) tty_link; /* Link in global tty list. */
sys/sys/tty.h
137
void (*t_oproc)(struct tty *);
sys/sys/tty.h
139
int (*t_param)(struct tty *, struct termios *);
sys/sys/tty.h
141
int (*t_hwiflow)(struct tty *, int);
sys/sys/tty.h
150
TAILQ_ENTRY(tty) t_sigqueue; /* entry on pending signal list */
sys/sys/tty.h
251
TAILQ_HEAD(ttylist_head, tty); /* the ttylist is a TAILQ */
sys/sys/tty.h
257
extern struct tty *volatile constty;
sys/sys/tty.h
276
int nullmodem(struct tty *, int);
sys/sys/tty.h
277
int tputchar(int, int, struct tty *);
sys/sys/tty.h
278
int ttioctl(struct tty *, u_long, void *, int, struct lwp *);
sys/sys/tty.h
279
int ttread(struct tty *, struct uio *, int);
sys/sys/tty.h
281
int ttpoll(struct tty *, int, struct lwp *);
sys/sys/tty.h
282
void ttsetwater(struct tty *);
sys/sys/tty.h
284
int ttstart(struct tty *);
sys/sys/tty.h
285
void ttwakeup(struct tty *);
sys/sys/tty.h
286
int ttwrite(struct tty *, struct uio *, int);
sys/sys/tty.h
287
void ttychars(struct tty *);
sys/sys/tty.h
288
int ttycheckoutq(struct tty *);
sys/sys/tty.h
289
void ttycancel(struct tty *);
sys/sys/tty.h
290
int ttyclose(struct tty *);
sys/sys/tty.h
291
void ttyflush(struct tty *, int);
sys/sys/tty.h
292
void ttygetinfo(struct tty *, int, char *, size_t);
sys/sys/tty.h
293
void ttyputinfo(struct tty *, char *);
sys/sys/tty.h
294
int ttyinput(int, struct tty *);
sys/sys/tty.h
295
int ttyinput_wlock(int, struct tty *); /* XXX see wsdisplay.c */
sys/sys/tty.h
296
int ttylclose(struct tty *, int);
sys/sys/tty.h
297
int ttylopen(dev_t, struct tty *);
sys/sys/tty.h
299
int ttymodem(struct tty *, int);
sys/sys/tty.h
300
int ttyopen(struct tty *, int, int);
sys/sys/tty.h
301
int ttyoutput(int, struct tty *);
sys/sys/tty.h
302
void ttypend(struct tty *);
sys/sys/tty.h
303
void ttyretype(struct tty *);
sys/sys/tty.h
304
void ttyrub(int, struct tty *);
sys/sys/tty.h
305
int ttysleep(struct tty *, kcondvar_t *, bool, int);
sys/sys/tty.h
306
int ttypause(struct tty *, int);
sys/sys/tty.h
307
int ttywait(struct tty *);
sys/sys/tty.h
308
int ttywflush(struct tty *);
sys/sys/tty.h
309
void ttysig(struct tty *, enum ttysigtype, int);
sys/sys/tty.h
310
void tty_attach(struct tty *);
sys/sys/tty.h
311
void tty_detach(struct tty *);
sys/sys/tty.h
313
struct tty
sys/sys/tty.h
315
void tty_free(struct tty *);
sys/sys/tty.h
317
bool ttypull(struct tty *);
sys/sys/tty.h
319
void tty_acquire(struct tty *);
sys/sys/tty.h
320
void tty_release(struct tty *);
sys/sys/tty.h
322
void ttylock(struct tty *);
sys/sys/tty.h
323
void ttyunlock(struct tty *);
sys/sys/tty.h
324
bool ttylocked(struct tty *);
sys/sys/tty.h
334
unsigned char tty_getctrlchar(struct tty *, unsigned /*which*/);
sys/sys/tty.h
335
void tty_setctrlchar(struct tty *, unsigned /*which*/, unsigned char /*val*/);
sys/sys/tty.h
336
int tty_try_xonxoff(struct tty *, unsigned char /*c*/);
sys/sys/types.h
363
struct tty;
tests/kernel/t_pty.c
190
int tty;
tests/kernel/t_pty.c
202
tty = tty_open(ttydev);
tests/kernel/t_pty.c
203
fd_nonblock(tty);
tests/kernel/t_pty.c
207
pfd.fd = tty;
tests/kernel/t_pty.c
228
if ((size = read(tty, dbuf, buffer_size))
tests/kernel/t_pty.c
247
(void)close(tty);
usr.bin/finger/finger.h
65
char *tty; /* tty line */
usr.bin/finger/lprint.c
242
visify(ttybuf, sizeof(ttybuf), w->tty);
usr.bin/finger/lprint.c
248
ttylen = visify(ttybuf, sizeof(ttybuf), w->tty);
usr.bin/finger/sprint.c
119
if (*w->tty)
usr.bin/finger/sprint.c
120
(void)printf("%-7.7s ", w->tty);
usr.bin/finger/util.c
219
strncmp(w->tty, ll.ll_line, UT_LINESIZE) == 0)
usr.bin/finger/util.c
225
if ((w->tty = malloc(UT_LINESIZE + 1)) == NULL)
usr.bin/finger/util.c
227
memcpy(w->tty, ll.ll_line, UT_LINESIZE);
usr.bin/finger/util.c
228
w->tty[UT_LINESIZE] = '\0';
usr.bin/finger/util.c
243
w->tty = ep->line;
usr.bin/finger/util.c
383
(void)snprintf(tbuf, sizeof(tbuf), "%s/%s", _PATH_DEV, w->tty);
usr.bin/last/last.c
106
char tty[128]; /* terminal name */
usr.bin/last/last.c
289
addtty(const char *tty)
usr.bin/last/last.c
297
memmove(cur->tty, tty, sizeof(cur->tty));
usr.bin/last/want.c
212
if (!strncmp(T->tty, linep, LINESIZE))
usr.bin/lock/lock.c
168
if (tcgetattr(STDIN_FILENO, &tty) < 0) /* get information for header */
usr.bin/lock/lock.c
190
ntty = tty; ntty.c_lflag &= ~ECHO;
usr.bin/lock/lock.c
208
(void)tcsetattr(STDIN_FILENO, TCSADRAIN, &tty);
usr.bin/lock/lock.c
350
(void)tcsetattr(STDIN_FILENO, TCSADRAIN, &tty);
usr.bin/lock/lock.c
357
(void)tcsetattr(STDIN_FILENO, TCSADRAIN, &tty);
usr.bin/lock/lock.c
92
static struct termios tty, ntty;
usr.bin/login/common.c
187
"passed %s != actual %s", username, tty,
usr.bin/login/common.c
206
" %s", username, tty, hname, assbuf);
usr.bin/login/common.c
209
username, tty);
usr.bin/login/common.c
213
"%s", nested, pwd->pw_name, tty, hname, assbuf);
usr.bin/login/common.c
216
pwd->pw_name, tty);
usr.bin/login/common.c
220
pwd->pw_name, tty, hname, assbuf);
usr.bin/login/common.c
223
pwd->pw_name, tty);
usr.bin/login/common.c
251
(void)strncpy(utmpx.ut_line, tty, sizeof(utmpx.ut_line));
usr.bin/login/common.c
254
t = tty + strlen(tty);
usr.bin/login/common.c
255
if ((size_t)(t - tty) >= sizeof(utmpx.ut_id)) {
usr.bin/login/common.c
259
(void)strncpy(utmpx.ut_id, tty, sizeof(utmpx.ut_id));
usr.bin/login/common.c
284
(void)strncpy(ll.ll_line, tty, sizeof(ll.ll_line));
usr.bin/login/common.c
309
(void)strncpy(utmp.ut_line, tty, sizeof(utmp.ut_line));
usr.bin/login/common.c
338
(void)strncpy(ll.ll_line, tty, sizeof(ll.ll_line));
usr.bin/login/common.c
361
failures, failures > 1 ? "S" : "", tty);
usr.bin/login/common.c
364
failures, failures > 1 ? "S" : "", tty, name);
usr.bin/login/common.c
80
char term[64], *envinit[1], *hostname, *tty, *nested;
usr.bin/login/common.h
49
extern char term[64], *envinit[1], *hostname, *tty, *nested;
usr.bin/login/k5login.c
77
extern char *tty;
usr.bin/login/login.c
271
if ((tty = strstr(ttyn, "/pts/")) != NULL)
usr.bin/login/login.c
272
++tty;
usr.bin/login/login.c
273
else if ((tty = strrchr(ttyn, '/')) != NULL)
usr.bin/login/login.c
274
++tty;
usr.bin/login/login.c
276
tty = ttyn;
usr.bin/login/login.c
441
if (pwd && !rval && rootlogin && !rootterm(tty)) {
usr.bin/login/login.c
447
pwd->pw_name, hostname, tty);
usr.bin/login/login.c
451
pwd->pw_name, tty);
usr.bin/login/login.c
617
const char *tt = stypeof(tty);
usr.bin/login/login.c
644
username, tty, hostname);
usr.bin/login/login.c
647
username, tty);
usr.bin/login/login_pam.c
211
if ((tty = strstr(ttyn, "/pts/")) != NULL)
usr.bin/login/login_pam.c
212
++tty;
usr.bin/login/login_pam.c
213
else if ((tty = strrchr(ttyn, '/')) != NULL)
usr.bin/login/login_pam.c
214
++tty;
usr.bin/login/login_pam.c
216
tty = ttyn;
usr.bin/login/login_pam.c
283
PAM_SET_ITEM(PAM_TTY, tty);
usr.bin/login/login_pam.c
586
const char *tt = stypeof(tty);
usr.bin/mesg/mesg.c
101
if (chmod(tty, sb.st_mode & ~S_IWGRP) == -1)
usr.bin/mesg/mesg.c
102
err(2, "%s", tty);
usr.bin/mesg/mesg.c
65
char *tty;
usr.bin/mesg/mesg.c
79
if ((tty = ttyname(STDIN_FILENO)) == NULL &&
usr.bin/mesg/mesg.c
80
(tty = ttyname(STDOUT_FILENO)) == NULL &&
usr.bin/mesg/mesg.c
81
(tty = ttyname(STDERR_FILENO)) == NULL)
usr.bin/mesg/mesg.c
83
if (stat(tty, &sb) == -1)
usr.bin/mesg/mesg.c
84
err(2, "%s", tty);
usr.bin/mesg/mesg.c
97
if (chmod(tty, sb.st_mode | S_IWGRP) == -1)
usr.bin/mesg/mesg.c
98
err(2, "%s", tty);
usr.bin/resize/resize.c
178
static int tty;
usr.bin/resize/resize.c
210
(void) ioctl(tty, TCSETAW, &tioorig);
usr.bin/resize/resize.c
212
(void) tcsetattr(tty, TCSADRAIN, &tioorig);
usr.bin/resize/resize.c
214
(void) ioctl(tty, TIOCSETP, &sgorig);
usr.bin/resize/resize.c
426
tty = fileno(ttyfp);
usr.bin/resize/resize.c
452
rc = ioctl(tty, TCGETA, &tioorig);
usr.bin/resize/resize.c
460
rc = tcgetattr(tty, &tioorig);
usr.bin/resize/resize.c
468
rc = ioctl(tty, TIOCGETP, &sgorig);
usr.bin/resize/resize.c
481
rc = ioctl(tty, TCSETAW, &tio);
usr.bin/resize/resize.c
483
rc = tcsetattr(tty, TCSADRAIN, &tio);
usr.bin/resize/resize.c
485
rc = ioctl(tty, TIOCSETP, &sg);
usr.bin/resize/resize.c
501
IGNORE_RC(write(tty, tmpbuf, strlen(tmpbuf)));
usr.bin/resize/resize.c
505
IGNORE_RC(write(tty, getsize[emu], strlen(getsize[emu])));
usr.bin/resize/resize.c
512
IGNORE_RC(write(tty, restore[emu], strlen(restore[emu])));
usr.bin/resize/resize.c
517
IGNORE_RC(write(tty, getwsize[emu], strlen(getwsize[emu])));
usr.bin/resize/resize.c
524
SET_TTYSIZE(tty, ts);
usr.bin/resize/resize.c
525
} else if (ioctl(tty, TIOCGWINSZ, &ts) != -1) {
usr.bin/resize/resize.c
534
SET_TTYSIZE(tty, ts);
usr.bin/resize/resize.c
539
rc = ioctl(tty, TCSETAW, &tioorig);
usr.bin/resize/resize.c
541
rc = tcsetattr(tty, TCSADRAIN, &tioorig);
usr.bin/resize/resize.c
543
rc = ioctl(tty, TIOCSETP, &sgorig);
usr.bin/rfcomm_sppd/rfcomm_sppd.c
125
char *ep, *tty;
usr.bin/rfcomm_sppd/rfcomm_sppd.c
134
tty = NULL;
usr.bin/rfcomm_sppd/rfcomm_sppd.c
195
asprintf(&tty, "%s%s", _PATH_DEV, optarg);
usr.bin/rfcomm_sppd/rfcomm_sppd.c
197
tty = optarg;
usr.bin/rfcomm_sppd/rfcomm_sppd.c
218
if (tty == NULL) {
usr.bin/rfcomm_sppd/rfcomm_sppd.c
222
tty_in = open_tty(tty);
usr.bin/rfcomm_sppd/rfcomm_sppd.c
237
if (tty == NULL) {
usr.bin/rfcomm_sppd/rfcomm_sppd.c
264
syslog(LOG_INFO, "Starting on %s...", (tty ? tty : "stdio"));
usr.bin/rfcomm_sppd/rfcomm_sppd.c
285
syslog(LOG_INFO, "Completed on %s", (tty ? tty : "stdio"));
usr.bin/rfcomm_sppd/rfcomm_sppd.c
290
open_tty(const char *tty)
usr.bin/rfcomm_sppd/rfcomm_sppd.c
302
if (strlcpy(pty, tty, sizeof(pty)) >= sizeof(pty))
usr.bin/rfcomm_sppd/rfcomm_sppd.c
303
errx(EXIT_FAILURE, "Tty name too long `%s'", tty);
usr.bin/rfcomm_sppd/rfcomm_sppd.c
307
errx(EXIT_FAILURE, "Invalid tty `%s'", tty);
usr.bin/rfcomm_sppd/rfcomm_sppd.c
310
if (strcmp(pty, tty) == 0)
usr.bin/rfcomm_sppd/rfcomm_sppd.c
312
tty);
usr.bin/rfcomm_sppd/rfcomm_sppd.c
325
if (chown(tty, getuid(), ttygid) == -1)
usr.bin/rfcomm_sppd/rfcomm_sppd.c
327
if (chmod(tty, S_IRUSR | S_IWUSR | S_IWGRP) == -1)
usr.bin/rfcomm_sppd/rfcomm_sppd.c
329
if (revoke(tty) == -1)
usr.bin/rlogin/rlogin.c
134
struct termios tty;
usr.bin/rlogin/rlogin.c
234
if (len < (int)(sizeof(term) - 1) && tcgetattr(0, &tty) == 0) {
usr.bin/rlogin/rlogin.c
236
for (ospeed = i = cfgetospeed(&tty), len2 = 2; i > 9; len2++)
usr.bin/rlogin/rlogin.c
583
struct termios tty;
usr.bin/rlogin/rlogin.c
618
(void)tcgetattr(0, &tty);
usr.bin/rlogin/rlogin.c
619
tty.c_iflag &= ~IXON;
usr.bin/rlogin/rlogin.c
620
(void)tcsetattr(0, TCSANOW, &tty);
usr.bin/rlogin/rlogin.c
623
(void)tcgetattr(0, &tty);
usr.bin/rlogin/rlogin.c
624
tty.c_iflag |= (deftty.c_iflag & IXON);
usr.bin/rlogin/rlogin.c
625
(void)tcsetattr(0, TCSANOW, &tty);
usr.bin/rlogin/rlogin.c
712
struct termios tty;
usr.bin/rlogin/rlogin.c
720
tty = deftty;
usr.bin/rlogin/rlogin.c
722
tty.c_lflag &= ~(ECHO|ICANON|ISIG|IEXTEN);
usr.bin/rlogin/rlogin.c
723
tty.c_iflag &= ~ICRNL;
usr.bin/rlogin/rlogin.c
724
tty.c_oflag &= ~OPOST;
usr.bin/rlogin/rlogin.c
725
tty.c_cc[VMIN] = 1;
usr.bin/rlogin/rlogin.c
726
tty.c_cc[VTIME] = 0;
usr.bin/rlogin/rlogin.c
728
tty.c_iflag &= IXOFF;
usr.bin/rlogin/rlogin.c
729
tty.c_cflag &= ~(CSIZE|PARENB);
usr.bin/rlogin/rlogin.c
730
tty.c_cflag |= CS8;
usr.bin/rlogin/rlogin.c
732
(void)tcsetattr(0, TCSANOW, &tty);
usr.bin/rwall/rwall.c
161
const char *tty;
usr.bin/rwall/rwall.c
185
tty = ttyname(STDERR_FILENO);
usr.bin/rwall/rwall.c
186
if (tty == NULL)
usr.bin/rwall/rwall.c
187
tty = "??";
usr.bin/rwall/rwall.c
188
(void)fprintf(fp, " (%s) at %d:%02d ...\n", tty, lt->tm_hour,
usr.bin/su/su_pam.c
114
char *tty;
usr.bin/su/su_pam.c
247
if ((tty = ttyname(STDERR_FILENO)) != NULL)
usr.bin/su/su_pam.c
248
PAM_SET_ITEM(PAM_TTY, tty);
usr.bin/systat/ps.c
123
tty = tty2str(pt[k].pt_kp);
usr.bin/systat/ps.c
134
user, pid, pctcpu, pctmem, vsz, rss, tty, state, start,
usr.bin/systat/ps.c
97
const char *user, *comm, *state, *tty, *start, *time_str;
usr.bin/talk/init_disp.c
106
struct termios tty;
usr.bin/talk/init_disp.c
108
tcgetattr(0, &tty);
usr.bin/talk/init_disp.c
109
my_win.cerase = tty.c_cc[VERASE];
usr.bin/talk/init_disp.c
110
my_win.kill = tty.c_cc[VKILL];
usr.bin/talk/init_disp.c
111
if (tty.c_cc[VWERASE] == (unsigned char) -1)
usr.bin/talk/init_disp.c
114
my_win.werase = tty.c_cc[VWERASE];
usr.bin/unzip/unzip.c
1067
tty = 1;
usr.bin/unzip/unzip.c
524
if (tty && (n % 4) == 0)
usr.bin/unzip/unzip.c
671
if (tty)
usr.bin/unzip/unzip.c
91
static int tty;
usr.bin/wall/wall.c
190
const char *whom, *tty;
usr.bin/wall/wall.c
214
tty = ttyname(STDERR_FILENO);
usr.bin/wall/wall.c
215
if (tty == NULL)
usr.bin/wall/wall.c
216
tty = "??";
usr.bin/wall/wall.c
217
(void)snprintf(lbuf, sizeof lbuf, " (%s) at %d:%02d %s...", tty,
usr.bin/write/term_chk.c
59
term_chk(uid_t uid, const char *tty, int *msgsokP, time_t *atimeP, int ismytty,
usr.bin/write/term_chk.c
66
if (strstr(tty, "../") != NULL) {
usr.bin/write/term_chk.c
70
i = snprintf(path, sizeof path, _PATH_DEV "%s", tty);
usr.bin/write/write.c
129
utmp_chk(const char *user, const char *tty)
usr.bin/write/write.c
136
if (strcmp(user, ep->name) == 0 && strcmp(tty, ep->line) == 0)
usr.bin/write/write.c
155
char tty[MAXPATHLEN];
usr.bin/write/write.c
193
(void)strlcpy(tty, ep->line, sizeof(tty));
usr.bin/write/write.c
208
user, tty);
usr.sbin/ac/ac.c
200
struct ttyent *tty;
usr.sbin/ac/ac.c
207
while ((tty = getttyent()) != NULL)
usr.sbin/ac/ac.c
208
if ((tty->ty_status & TTY_ON) != 0 &&
usr.sbin/ac/ac.c
209
strstr(tty->ty_getty, "getty") != NULL) {
usr.sbin/ac/ac.c
217
strlcpy(Con[Ncon++], tty->ty_name, UT_LINESIZE);
usr.sbin/btattach/btattach.c
557
test(const char *tty, tcflag_t cflag, tcflag_t Cflag)
usr.sbin/btattach/btattach.c
598
if ((fd = open(tty, O_RDWR | O_NONBLOCK | O_EXLOCK, 0)) < 0)
usr.sbin/btattach/btattach.c
599
err(EXIT_FAILURE, "%s", tty);
usr.sbin/irdaattach/irdaattach.c
112
tty.c_cflag = CREAD | CS8 | cflag;
usr.sbin/irdaattach/irdaattach.c
113
tty.c_iflag = 0;
usr.sbin/irdaattach/irdaattach.c
114
tty.c_lflag = 0;
usr.sbin/irdaattach/irdaattach.c
115
tty.c_oflag = 0;
usr.sbin/irdaattach/irdaattach.c
116
tty.c_cc[VMIN] = 1;
usr.sbin/irdaattach/irdaattach.c
117
tty.c_cc[VTIME] = 0;
usr.sbin/irdaattach/irdaattach.c
118
cfsetspeed(&tty, 9600);
usr.sbin/irdaattach/irdaattach.c
119
if (tcsetattr(fd, TCSADRAIN, &tty) < 0)
usr.sbin/irdaattach/irdaattach.c
57
struct termios tty;
usr.sbin/moused/moused.c
2236
struct termios tty;
usr.sbin/moused/moused.c
2239
if (tcgetattr(rodent.mfd, &tty) < 0)
usr.sbin/moused/moused.c
2245
tty.c_iflag = IGNBRK | IGNPAR;
usr.sbin/moused/moused.c
2246
tty.c_oflag = 0;
usr.sbin/moused/moused.c
2247
tty.c_lflag = 0;
usr.sbin/moused/moused.c
2248
tty.c_cflag = (tcflag_t)cflag;
usr.sbin/moused/moused.c
2249
tty.c_cc[VTIME] = 0;
usr.sbin/moused/moused.c
2250
tty.c_cc[VMIN] = 1;
usr.sbin/moused/moused.c
2255
cfsetispeed(&tty, B9600);
usr.sbin/moused/moused.c
2256
cfsetospeed(&tty, B9600);
usr.sbin/moused/moused.c
2259
cfsetispeed(&tty, B4800);
usr.sbin/moused/moused.c
2260
cfsetospeed(&tty, B4800);
usr.sbin/moused/moused.c
2263
cfsetispeed(&tty, B2400);
usr.sbin/moused/moused.c
2264
cfsetospeed(&tty, B2400);
usr.sbin/moused/moused.c
2268
cfsetispeed(&tty, B1200);
usr.sbin/moused/moused.c
2269
cfsetospeed(&tty, B1200);
usr.sbin/moused/moused.c
2272
if (tcsetattr(rodent.mfd, TCSADRAIN, &tty) < 0)
usr.sbin/moused/moused.c
2282
cfsetispeed(&tty, B9600);
usr.sbin/moused/moused.c
2283
cfsetospeed(&tty, B9600);
usr.sbin/moused/moused.c
2287
cfsetispeed(&tty, B4800);
usr.sbin/moused/moused.c
2288
cfsetospeed(&tty, B4800);
usr.sbin/moused/moused.c
2292
cfsetispeed(&tty, B2400);
usr.sbin/moused/moused.c
2293
cfsetospeed(&tty, B2400);
usr.sbin/moused/moused.c
2298
cfsetispeed(&tty, B1200);
usr.sbin/moused/moused.c
2299
cfsetospeed(&tty, B1200);
usr.sbin/moused/moused.c
2313
if (tcsetattr(rodent.mfd, TCSADRAIN, &tty) < 0)
usr.sbin/pstat/pstat.c
177
void ttyprt(struct tty *);
usr.sbin/pstat/pstat.c
801
struct tty *tp, tty;
usr.sbin/pstat/pstat.c
809
for (tp = tty_head.tqh_first; tp; tp = tty.tty_link.tqe_next) {
usr.sbin/pstat/pstat.c
810
KGET2(tp, &tty, sizeof tty, "tty struct");
usr.sbin/pstat/pstat.c
811
ttyprt(&tty);
usr.sbin/pstat/pstat.c
835
ttyprt(struct tty *tp)
usr.sbin/sliplogin/sliplogin.c
215
struct sgttyb tty, otty;
usr.sbin/sliplogin/sliplogin.c
306
if (ioctl(STDIN_FILENO, TIOCGETP, (caddr_t)&tty) < 0) {
usr.sbin/sliplogin/sliplogin.c
310
otty = tty;
usr.sbin/sliplogin/sliplogin.c
311
speed = tty.sg_ispeed;
usr.sbin/sliplogin/sliplogin.c
312
tty.sg_flags = RAW | ANYP;
usr.sbin/sliplogin/sliplogin.c
313
if (ioctl(STDIN_FILENO, TIOCSETP, (caddr_t)&tty) < 0) {
usr.sbin/sti/sti.c
148
const char *tty;
usr.sbin/sti/sti.c
163
tty = *argv++;
usr.sbin/sti/sti.c
166
if (strncmp(tty, "/dev/", 5) == 0)
usr.sbin/sti/sti.c
167
(void)snprintf(ttydev, sizeof(ttydev), "%s", tty);
usr.sbin/sti/sti.c
168
else if (strncmp(tty, "tty", 3) == 0 || strncmp(tty, "pty", 3) == 0 ||
usr.sbin/sti/sti.c
169
strncmp(tty, "pts/", 4) == 0)
usr.sbin/sti/sti.c
170
(void)snprintf(ttydev, sizeof(ttydev), "/dev/%s", tty);
usr.sbin/sti/sti.c
171
else if (isdigit((unsigned char)*tty))
usr.sbin/sti/sti.c
172
(void)snprintf(ttydev, sizeof(ttydev), "/dev/pts/%s", tty);
usr.sbin/sti/sti.c
174
(void)snprintf(ttydev, sizeof(ttydev), "/dev/tty%s", tty);
usr.sbin/syslogd/syslogd.c
2725
char tty[MAXPATHLEN];
usr.sbin/syslogd/syslogd.c
2726
snprintf(tty, sizeof(tty), "%s/%s", _PATH_DEV,
usr.sbin/syslogd/syslogd.c
2728
if (stat(tty, &st) != -1 &&