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

12

/freebsd-10.2-release/crypto/openssh/openbsd-compat/
H A Dbsd-nextstep.c82 return (t->c_ospeed);
93 t->c_ospeed = speed;
/freebsd-10.2-release/lib/libc/gen/
H A Dtermios.c128 return (t->c_ospeed);
142 t->c_ospeed = speed;
158 t->c_ispeed = t->c_ospeed = speed;
193 t->c_ospeed = TTYDEF_SPEED;
/freebsd-10.2-release/contrib/tcsh/
H A Dmi.termios.c66 return termios_p->c_ospeed;
81 termios_p->c_ospeed = speed;
262 termios_p->c_ospeed =
302 if ((termios_p->c_ispeed != 0 && termios_p->c_ispeed != termios_p->c_ospeed)
303 || (sgspeed = tc_to_sg_speed(termios_p->c_ospeed)) < 0)
320 * c_ospeed != 110 && c_cflag & CSTOPB
321 * c_ospeed == 110 && ! c_cflag & CSTOPB
/freebsd-10.2-release/contrib/llvm/tools/lldb/tools/driver/
H A DPlatform.h64 speed_t c_ospeed; // output speed member in struct:termios
/freebsd-10.2-release/sys/dev/uart/
H A Duart_tty.c245 if (t->c_ispeed != t->c_ospeed && t->c_ospeed != 0)
249 t->c_ispeed = t->c_ospeed = sc->sc_sysdev->baudrate;
253 if (t->c_ospeed == 0) {
269 if (UART_PARAM(sc, t->c_ospeed, databits, stopbits, parity) != 0)
/freebsd-10.2-release/bin/stty/
H A Dgfmt.c114 tp->c_ospeed = tmp;
/freebsd-10.2-release/sys/kern/
H A Dtty_compat.c117 else if (speed != ttcompatspeedtab(tp->t_termios.c_ospeed,
119 term->c_ospeed = compatspcodes[speed];
121 term->c_ospeed = tp->t_termios.c_ospeed;
206 sg->sg_ospeed = ttcompatspeedtab(tp->t_termios.c_ospeed,
H A Dtty.c118 bs = MIN(tp->t_termios.c_ospeed / 5, TTYBUF_MAX);
578 if (lock->c_ospeed)
579 new->c_ospeed = old->c_ospeed;
850 t->c_ospeed = TTYDEF_SPEED;
863 ti->c_ispeed = ti->c_ospeed = s;
864 to->c_ispeed = to->c_ospeed = s;
928 if (t->c_ospeed < B50)
929 t->c_ospeed = B50;
930 else if (t->c_ospeed > B11520
[all...]
/freebsd-10.2-release/sys/i386/ibcs2/
H A Dibcs2_termios.h63 char c_ospeed; member in struct:ibcs2_termios
/freebsd-10.2-release/sys/sys/
H A D_termios.h219 speed_t c_ospeed; /* output speed */ member in struct:termios
/freebsd-10.2-release/sys/dev/usb/serial/
H A Duark.c369 if ((t->c_ospeed < 300) || (t->c_ospeed > 115200))
378 uint32_t speed = t->c_ospeed;
H A Dumoscom.c460 if ((t->c_ospeed <= 1) || (t->c_ospeed > 115200))
472 DPRINTF("speed=%d\n", t->c_ospeed);
474 data = ((uint32_t)UMOSCOM_BAUD_REF) / ((uint32_t)t->c_ospeed);
H A Dubsa.c430 switch (t->c_ospeed) {
458 switch (t->c_ospeed) {
475 value = B230400 / t->c_ospeed;
H A Duchcom.c677 if (uchcom_calc_divider_settings(&dv, t->c_ospeed)) {
690 uchcom_set_baudrate(sc, t->c_ospeed);
695 uchcom_set_baudrate(sc, t->c_ospeed);
H A Ducycom.c475 switch (t->c_ospeed) {
532 ucycom_cfg_write(sc, t->c_ospeed, cfg);
H A Duplcom.c666 if (uplcom_rates[i] == t->c_ospeed)
670 if (t->c_ospeed <= 6000000)
674 DPRINTF("uplcom_param: bad baud rate (%d)\n", t->c_ospeed);
689 USETDW(ls.dwDTERate, t->c_ospeed);
H A Duvscom.c546 switch (t->c_ospeed) {
572 switch (t->c_ospeed) {
H A Duslcom.c614 if (t->c_ospeed <= 0 || t->c_ospeed > 921600)
629 baudrate = t->c_ospeed;
/freebsd-10.2-release/sys/dev/rc/
H A Drc.c874 if ( ts->c_ospeed < 0 || ts->c_ospeed > 76800
879 ts->c_ispeed = ts->c_ospeed;
880 odivs = RC_BRD(ts->c_ospeed);
891 if (ts->c_ospeed == 0) {
943 val = ts->c_ospeed <= 4800 ? 1 : CD180_NFIFO / 2;
1012 if (ts->c_ospeed != 0)
/freebsd-10.2-release/sys/dev/syscons/
H A Dsysmouse.c154 t->c_ospeed = B0;
/freebsd-10.2-release/sys/dev/si/
H A Dsi.c826 if (t->c_ospeed != 0) {
828 ospeed = si_speedtab(t->c_ospeed, bdrates);
854 if (t->c_ospeed != 0) {
952 if (t->c_ospeed == 0) {
1422 time = (tp->t_termios.c_ospeed + 9) / 10;
/freebsd-10.2-release/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;
367 tp->t_termios.c_ospeed = comdefaultrate;
1790 if (t->c_ispeed != (t->c_ospeed != 0 ? t->c_ospeed : tp->t_ospeed))
1798 if (t->c_ospeed == 0)
/freebsd-10.2-release/sys/dev/nmdm/
H A Dnmdm.c343 speed = imin(tp2->t_termios.c_ospeed, t->c_ispeed);
/freebsd-10.2-release/sys/dev/rp/
H A Drp.c1065 if(ospeed < 0 || t->c_ispeed != t->c_ospeed)
1068 if(t->c_ospeed == 0) {
1072 rp->rp_fifo_lw = ((t->c_ospeed*2) / 1000) +1;
/freebsd-10.2-release/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;
699 tp->t_termios.c_ospeed = comdefaultrate;
2755 if (pc98_ttspeedtab(com, t->c_ospeed, &divisor) != 0)
2760 if (t->c_ispeed != (t->c_ospeed != 0 ? t->c_ospeed : tp->t_ospeed))
2773 if (t->c_ospeed == 0)
2779 if (t->c_ospeed
[all...]

Completed in 274 milliseconds

12