Symbol: speed_t
games/warp/term.c
268
charsperhalfsec = (speed_t)ospeed >= B9600 ? (speed_t)480 :
games/warp/term.c
269
(speed_t)ospeed == B4800 ? (speed_t)240 :
games/warp/term.c
270
(speed_t)ospeed == B2400 ? (speed_t)120 :
games/warp/term.c
271
(speed_t)ospeed == B1200 ? (speed_t)60 :
games/warp/term.c
272
(speed_t)ospeed == B600 ? (speed_t)30 :
games/warp/term.c
273
/* speed is 300 (?) */ (speed_t)15;
games/warp/term.c
275
gfillen = (speed_t)ospeed >= B9600 ? (speed_t)(sizeof filler) :
games/warp/term.c
276
(speed_t)ospeed == B4800 ? (speed_t)13 :
games/warp/term.c
277
(speed_t)ospeed == B2400 ? (speed_t)7 :
games/warp/term.c
278
(speed_t)ospeed == B1200 ? (speed_t)4 :
games/warp/term.c
279
(speed_t)(1+BCsize);
games/warp/term.c
280
if ((speed_t)ospeed < B2400)
lib/libc/termios/cfgetispeed.c
51
speed_t
lib/libc/termios/cfgetospeed.c
51
speed_t
lib/libc/termios/cfsetispeed.c
52
cfsetispeed(struct termios *t, speed_t speed)
lib/libc/termios/cfsetospeed.c
52
cfsetospeed(struct termios *t, speed_t speed)
lib/libc/termios/cfsetspeed.c
52
cfsetspeed(struct termios *t, speed_t speed)
lib/libedit/tty.c
464
static speed_t tty__getspeed(struct termios *);
lib/libedit/tty.c
610
static speed_t
lib/libedit/tty.c
613
speed_t spd;
lib/libedit/tty.h
475
speed_t t_speed;
lib/libterminfo/curterm.c
54
static const speed_t bauds[] = {
lib/libterminfo/curterm.c
63
speed_t os;
libexec/getty/main.c
271
(void)cfsetispeed(&tmode, (speed_t)IS);
libexec/getty/main.c
273
(void)cfsetispeed(&tmode, (speed_t)SP);
libexec/getty/main.c
275
(void)cfsetospeed(&tmode, (speed_t)OS);
libexec/getty/main.c
277
(void)cfsetospeed(&tmode, (speed_t)SP);
sys/dev/ic/clmpcc.c
255
clmpcc_speed(struct clmpcc_softc *sc, speed_t speed, int *cor, int *bpr)
sys/dev/ic/clmpcc.c
73
static int clmpcc_speed(struct clmpcc_softc *, speed_t, int *, int *);
sys/dev/ic/cy.c
1379
cy_speed(speed_t speed, int *cor, int *bpr, int cy_clock)
sys/dev/ic/cy.c
49
static int cy_speed(speed_t, int *, int *, int);
sys/dev/sbus/magma.c
241
cd1400_compute_baud(speed_t speed, int clock, int *cor, int *bpr)
sys/dev/sbus/magmareg.h
191
int cd1400_compute_baud(speed_t, int, int *, int *);
sys/dev/sbus/spif.c
971
stty_compute_baud(speed_t speed, int clock, uint8_t *bprlp, uint8_t *bprhp)
sys/dev/sbus/spifreg.h
402
int stty_compute_baud(speed_t, int, u_int8_t *, u_int8_t *);
sys/dev/usb/ubsa_common.c
222
ubsa_baudrate(struct ubsa_softc *sc, int portno, speed_t speed)
sys/dev/usb/ubsavar.h
157
void ubsa_baudrate(struct ubsa_softc *, int, speed_t);
sys/sys/termios.h
272
speed_t cfgetispeed(const struct termios *);
sys/sys/termios.h
273
speed_t cfgetospeed(const struct termios *);
sys/sys/termios.h
274
int cfsetispeed(struct termios *, speed_t);
sys/sys/termios.h
275
int cfsetospeed(struct termios *, speed_t);
sys/sys/termios.h
289
int cfsetspeed(struct termios *, speed_t);
usr.bin/mail/main.c
107
speed_t ospeed;
usr.bin/rlogin/rlogin.c
141
speed_t ospeed;
usr.bin/scmdctl/scmdctl.c
101
ttysetup(int fd, speed_t spd)
usr.bin/scmdctl/scmdctl.c
226
ttyerror = ttysetup(fd,(speed_t)baud_rate);
usr.bin/scmdctl/scmdctl.c
66
int ttysetup(int, speed_t);
usr.bin/tip/aculib/df.c
71
speed_t volatile spd;
usr.bin/tip/cu.c
265
if (ttysetup((speed_t)BR) != 0) {
usr.bin/tip/cu.c
273
if (ttysetup((speed_t)BR) != 0) {
usr.bin/tip/tip.c
237
if (ttysetup((speed_t)number(value(BAUDRATE))) != 0) {
usr.bin/tip/tip.c
246
if (ttysetup((speed_t)number(value(BAUDRATE))) != 0) {
usr.bin/tip/tip.c
558
ttysetup(speed_t spd)
usr.bin/tip/tip.h
295
int ttysetup(speed_t);