HomeSort by: relevance | last modified time | path
    Searched refs:speed_t (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/external/bsd/ppp/dist/pppd/
termios_linux.h 118 static inline speed_t cfgetospeed(const struct termios *t)
123 static inline int cfsetospeed(struct termios *t, speed_t s)
137 static inline speed_t cfgetispeed(const struct termios *t)
139 speed_t s = (t->c_cflag >> IBSHIFT) & CBAUD;
147 static inline int cfsetispeed(struct termios *t, speed_t s)
163 static inline speed_t cfgetispeed(const struct termios *t)
168 static inline int cfsetispeed(struct termios *t, speed_t s)
174 static inline int cfsetspeed(struct termios *t, speed_t s)
  /src/lib/libc/termios/
cfgetispeed.c 51 speed_t
cfgetospeed.c 51 speed_t
cfsetispeed.c 52 cfsetispeed(struct termios *t, speed_t speed)
cfsetospeed.c 52 cfsetospeed(struct termios *t, speed_t speed)
cfsetspeed.c 52 cfsetspeed(struct termios *t, speed_t speed)
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/
termios.d 41 speed_t
137 alias uint speed_t;
150 speed_t c_ispeed;
151 speed_t c_ospeed;
235 alias c_ulong speed_t;
247 speed_t c_ispeed;
248 speed_t c_ospeed;
332 alias uint speed_t;
344 speed_t c_ispeed;
345 speed_t c_ospeed
    [all...]
  /src/sys/sys/
termios.h 190 typedef unsigned int speed_t; typedef
272 speed_t cfgetispeed(const struct termios *);
273 speed_t cfgetospeed(const struct termios *);
274 int cfsetispeed(struct termios *, speed_t);
275 int cfsetospeed(struct termios *, speed_t);
289 int cfsetspeed(struct termios *, speed_t);
  /src/games/warp/
term.c 268 charsperhalfsec = (speed_t)ospeed >= B9600 ? (speed_t)480 :
269 (speed_t)ospeed == B4800 ? (speed_t)240 :
270 (speed_t)ospeed == B2400 ? (speed_t)120 :
271 (speed_t)ospeed == B1200 ? (speed_t)60 :
272 (speed_t)ospeed == B600 ? (speed_t)30
    [all...]
term.h 187 typedef int speed_t;
193 typedef int speed_t;
  /src/lib/libterminfo/
curterm.c 54 static const speed_t bauds[] = {
63 speed_t os;
  /src/external/bsd/ntp/dist/include/
l_stdlib.h 18 /* Needed for speed_t. */
51 extern int cfsetispeed (struct termios *, speed_t);
52 extern int cfsetospeed (struct termios *, speed_t);
  /src/usr.bin/tip/
cu.c 265 if (ttysetup((speed_t)BR) != 0) {
273 if (ttysetup((speed_t)BR) != 0) {
tip.c 237 if (ttysetup((speed_t)number(value(BAUDRATE))) != 0) {
246 if (ttysetup((speed_t)number(value(BAUDRATE))) != 0) {
558 ttysetup(speed_t spd)
tip.h 295 int ttysetup(speed_t);
  /src/sys/dev/usb/
ubsavar.h 157 void ubsa_baudrate(struct ubsa_softc *, int, speed_t);
  /src/usr.bin/tip/aculib/
df.c 71 speed_t volatile spd;
  /src/libexec/getty/
main.c 271 (void)cfsetispeed(&tmode, (speed_t)IS);
273 (void)cfsetispeed(&tmode, (speed_t)SP);
275 (void)cfsetospeed(&tmode, (speed_t)OS);
277 (void)cfsetospeed(&tmode, (speed_t)SP);
  /src/sys/dev/sbus/
magmareg.h 191 int cd1400_compute_baud(speed_t, int, int *, int *);
spifreg.h 402 int stty_compute_baud(speed_t, int, u_int8_t *, u_int8_t *);
  /src/usr.bin/xlint/llib/
llib-lposix 84 speed_t (cfgetispeed)(const struct termios *p);
85 speed_t (cfgetospeed)(const struct termios *p);
86 int (cfsetispeed)(struct termios *p, speed_t speed);
87 int (cfsetospeed)(struct termios *p, speed_t speed);
  /src/crypto/external/bsd/openssh/dist/
ttymodes.c 70 * Converts POSIX speed_t to a baud rate. The values of the
71 * constants for speed_t are not themselves portable.
74 speed_to_baud(speed_t speed)
160 * Converts a numeric baud rate to a POSIX speed_t.
162 static speed_t
  /src/usr.bin/scmdctl/
scmdctl.c 66 int ttysetup(int, speed_t);
101 ttysetup(int fd, speed_t spd)
226 ttyerror = ttysetup(fd,(speed_t)baud_rate);
  /src/lib/libedit/
tty.h 475 speed_t t_speed;
  /src/usr.bin/mail/
main.c 107 speed_t ospeed;

Completed in 121 milliseconds

1 2