Searched refs:c_ispeed (Results 1 - 25 of 25) sorted by relevance

/freebsd-11-stable/contrib/ncurses/include/
H A Dncurses_mingw.h66 speed_t c_ispeed; /* input speed */ member in struct:termios
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dbsd-nextstep.c87 return (t->c_ispeed);
100 t->c_ispeed = speed;
/freebsd-11-stable/lib/libc/gen/
H A Dtermios.c135 return (t->c_ispeed);
150 t->c_ispeed = speed;
158 t->c_ispeed = t->c_ospeed = speed;
192 t->c_ispeed = TTYDEF_SPEED;
/freebsd-11-stable/contrib/tcsh/
H A Dmi.termios.c58 return termios_p->c_ispeed;
71 termios_p->c_ispeed = speed;
261 termios_p->c_ispeed =
300 if ((termios_p->c_ispeed != 0 && termios_p->c_ispeed != termios_p->c_ospeed)
/freebsd-11-stable/contrib/llvm-project/lldb/tools/driver/
H A DPlatform.h57 speed_t c_ispeed; // input speed member in struct:termios
/freebsd-11-stable/sys/kern/
H A Dtty_compat.c110 else if (speed != ttcompatspeedtab(tp->t_termios.c_ispeed,
112 term->c_ispeed = compatspcodes[speed];
114 term->c_ispeed = tp->t_termios.c_ispeed;
208 if (tp->t_termios.c_ispeed == 0)
211 sg->sg_ispeed = ttcompatspeedtab(tp->t_termios.c_ispeed,
H A Dtty.c122 bs = MIN(tp->t_termios.c_ispeed / 5, TTYBUF_MAX);
607 if (lock->c_ispeed)
608 new->c_ispeed = old->c_ispeed;
883 t->c_ispeed = TTYDEF_SPEED;
897 ti->c_ispeed = ti->c_ospeed = s;
898 to->c_ispeed = to->c_ospeed = s;
962 if (t->c_ispeed < B50)
963 t->c_ispeed = B50;
964 else if (t->c_ispeed > B11520
[all...]
/freebsd-11-stable/bin/stty/
H A Dgfmt.c101 tp->c_ispeed = tmp;
/freebsd-11-stable/sys/i386/ibcs2/
H A Dibcs2_termios.h62 char c_ispeed; member in struct:ibcs2_termios
H A Dibcs2_ioctl.c162 bt->c_ispeed = bt->c_ospeed = s2btab[l & 0x0000000f];
/freebsd-11-stable/sys/sys/
H A D_termios.h224 speed_t c_ispeed; /* input speed */ member in struct:termios
/freebsd-11-stable/sys/dev/rc/
H A Drc.c875 || ts->c_ispeed < 0 || ts->c_ispeed > 76800
878 if (ts->c_ispeed == 0)
879 ts->c_ispeed = ts->c_ospeed;
881 idivs = RC_BRD(ts->c_ispeed);
912 if (ts->c_ispeed > 0) {
913 int itm = ts->c_ispeed > 2400 ? 5 : 10000 / ts->c_ispeed + 1;
/freebsd-11-stable/sys/dev/syscons/
H A Dsysmouse.c225 t->c_ispeed = TTYDEF_SPEED;
/freebsd-11-stable/sys/dev/sio/
H A Dsio.c360 tp->t_init_in.c_ispeed = tp->t_init_in.c_ospeed =
361 tp->t_lock_in.c_ispeed = tp->t_lock_in.c_ospeed =
362 tp->t_init_out.c_ispeed = tp->t_init_out.c_ospeed =
363 tp->t_lock_out.c_ispeed = tp->t_lock_out.c_ospeed = comdefaultrate;
366 tp->t_termios.c_ispeed =
948 error = siosetwater(com, tp->t_init_in.c_ispeed);
1790 if (t->c_ispeed != (t->c_ospeed != 0 ? t->c_ospeed : tp->t_ospeed))
1792 divisor = siodivisor(com->rclk, t->c_ispeed);
1840 : t->c_ispeed <= 4800
1859 (void) siosetwater(com, t->c_ispeed);
[all...]
/freebsd-11-stable/sys/dev/nmdm/
H A Dnmdm.c343 speed = imin(tp2->t_termios.c_ospeed, t->c_ispeed);
/freebsd-11-stable/sys/pc98/cbus/
H A Dsio.c692 tp->t_init_in.c_ispeed = tp->t_init_in.c_ospeed =
693 tp->t_lock_in.c_ispeed = tp->t_lock_in.c_ospeed =
694 tp->t_init_out.c_ispeed = tp->t_init_out.c_ospeed =
695 tp->t_lock_out.c_ispeed = tp->t_lock_out.c_ospeed = comdefaultrate;
698 tp->t_termios.c_ispeed =
1512 error = siosetwater(com, tp->t_init_in.c_ispeed);
2760 if (t->c_ispeed != (t->c_ospeed != 0 ? t->c_ospeed : tp->t_ospeed))
2762 divisor = siodivisor(com->rclk, t->c_ispeed);
2824 : t->c_ispeed <= 4800
2846 (void) siosetwater(com, t->c_ispeed);
[all...]
/freebsd-11-stable/sys/dev/usb/serial/
H A Dusb_serial.c1239 if (t->c_ispeed && (t->c_ispeed != t->c_ospeed)) {
1245 t->c_ispeed = t->c_ospeed;
/freebsd-11-stable/sys/dev/cy/
H A Dcy.c421 if (cysetwater(com, tp->t_init_in.c_ispeed) != 0) {
1250 idivisor = cyspeed(t->c_ispeed, cy_clock, &iprescaler);
1265 (void) cysetwater(com, t->c_ispeed);
1350 itimeout = howmany(1000 * bits, t->c_ispeed);
/freebsd-11-stable/sys/dev/uart/
H A Duart_tty.c266 if (t->c_ispeed != t->c_ospeed && t->c_ospeed != 0)
/freebsd-11-stable/sys/dev/rp/
H A Drp.c1012 ospeed = rp_convert_baud(t->c_ispeed);
1013 if(ospeed < 0 || t->c_ispeed != t->c_ospeed)
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_termios.c321 bt->c_ispeed = svr4_to_bsd_speed(st->c_cflag, SVR4_CIBAUD);
423 st->c_cflag |= bsd_to_svr4_speed(bt->c_ispeed, SVR4_CIBAUD);
/freebsd-11-stable/sys/dev/digi/
H A Ddigi.c995 if (t->c_ispeed == 0)
996 t->c_ispeed = t->c_ospeed;
1000 if (cflag < 0 || (cflag > 0 && t->c_ispeed != t->c_ospeed))
/freebsd-11-stable/sys/dev/cx/
H A Dif_cx.c2143 if (t->c_ispeed && (t->c_ispeed < 300 || t->c_ispeed > 256*1024)) {
2150 tp->t_ispeed = t->c_ispeed = tp->t_ospeed = t->c_ospeed;
/freebsd-11-stable/sys/dev/si/
H A Dsi.c830 ispeed = t->c_ispeed ?
831 si_speedtab(t->c_ispeed, bdrates) : ospeed;
/freebsd-11-stable/sys/compat/linux/
H A Dlinux_ioctl.c416 bios->c_ispeed, bios->c_ospeed);
460 lios->c_cflag = bsd_to_linux_speed(bios->c_ispeed, sptab);
672 bios->c_ispeed = bios->c_ospeed =
680 bios->c_ispeed, bios->c_ospeed);

Completed in 359 milliseconds