Searched refs:TIOCM_RTS (Results 1 - 17 of 17) sorted by relevance

/freebsd-9.3-release/sys/sys/
H A Dttycom.h103 #define TIOCM_RTS 0004 /* request to send */ macro
/freebsd-9.3-release/contrib/ntp/ntpd/
H A Drefclock_palisade.h61 #define TIOCM_RTS MRTS macro
H A Drefclock_neoclock4x.c38 # define TIOCM_RTS MRTS macro
259 #if defined(TIOCMSET) && (defined(TIOCM_RTS) || defined(CIOCM_RTS))
268 #ifdef TIOCM_RTS
269 sl232 = sl232 | TIOCM_DTR | TIOCM_RTS; /* turn on RTS, and DTR for power supply */
408 #if defined(TIOCMSET) && (defined(TIOCM_RTS) || defined(CIOCM_RTS))
416 #ifdef TIOCM_RTS
418 sl232 &= ~(TIOCM_DTR | TIOCM_RTS);
H A Drefclock_heath.c59 * TIOCMBIS ioctl system calls and TIOCM_RTS control bit. Present
403 int bits = TIOCM_RTS;
H A Drefclock_hopfser.c31 # define TIOCM_RTS MRTS macro
H A Drefclock_palisade.c1159 x |= TIOCM_RTS; /* turn on RTS */
1176 x &= ~TIOCM_RTS; /* turn off RTS */
H A Drefclock_parse.c5841 sl232 = (sl232 & ~TIOCM_RTS) | TIOCM_DTR; /* turn on DTR, clear RTS for power supply */
5867 #if defined(TIOCMSET) && (defined(TIOCM_RTS) || defined(CIOCM_RTS))
5887 #ifdef TIOCM_RTS
5888 sl232 = (sl232 & ~TIOCM_DTR) | TIOCM_RTS; /* turn on RTS, clear DTR for power supply */
/freebsd-9.3-release/games/morse/
H A Dmorse.c386 lflags &= ~TIOCM_RTS;
564 lflags |= TIOCM_RTS;
571 lflags &= ~TIOCM_RTS;
/freebsd-9.3-release/contrib/ntp/parseutil/
H A Dtestdcf.c368 #ifdef TIOCM_RTS
369 int on = TIOCM_RTS;
408 #if defined(TIOCMBIC) && defined(TIOCM_RTS)
411 perror("TIOCM_RTS");
/freebsd-9.3-release/sys/pc98/cbus/
H A Dsio.c1552 com_tiocm_bic( com, TIOCM_DTR|TIOCM_RTS|TIOCM_LE );
1782 com_tiocm_bis(com, TIOCM_DTR|TIOCM_RTS);
1939 com_tiocm_bic(com, TIOCM_DTR|TIOCM_RTS|TIOCM_LE);
2140 !(com_tiocm_get(com) & TIOCM_RTS) &&
2142 com_tiocm_bis(com, TIOCM_RTS);
2432 com_tiocm_bic(com, TIOCM_RTS) :
2774 com_tiocm_bic(com, TIOCM_DTR|TIOCM_RTS|TIOCM_LE);
2776 com_tiocm_bis(com, TIOCM_DTR|TIOCM_RTS|TIOCM_LE);
2888 com_tiocm_bis(com, TIOCM_RTS);
3048 if ((com_tiocm_get(com) & TIOCM_RTS)
[all...]
/freebsd-9.3-release/usr.sbin/moused/
H A Dmoused.c1761 i = TIOCM_RTS;
2811 i &= ~TIOCM_RTS; /* RTS = 0 */
2828 i = TIOCM_DTR | TIOCM_RTS; /* DTR = 0, RTS = 0 */
2838 i = TIOCM_RTS; /* DTR = 1, RTS = 1 */
2852 i = TIOCM_DTR | TIOCM_RTS; /* DTR = 0, RTS = 0 */
2859 i = TIOCM_DTR | TIOCM_RTS; /* DTR = 1, RTS = 1 */
2889 i &= ~TIOCM_RTS; /* RTS = 0 */
2898 i = TIOCM_DTR | TIOCM_RTS; /* DTR = 1, RTS = 1 */
2930 i = TIOCM_DTR | TIOCM_RTS; /* DTR = 1, RTS = 1 */
/freebsd-9.3-release/sys/kern/
H A Dtty.c1415 (bits & (TIOCM_DTR | TIOCM_RTS)) >> 1,
1416 ((~bits) & (TIOCM_DTR | TIOCM_RTS)) >> 1);
1421 ttydevsw_modem(tp, (bits & (TIOCM_DTR | TIOCM_RTS)) >> 1, 0);
1426 ttydevsw_modem(tp, 0, (bits & (TIOCM_DTR | TIOCM_RTS)) >> 1);
/freebsd-9.3-release/sys/dev/ce/
H A Dif_ce.c1257 if (c->rts) status |= TIOCM_RTS;
1984 ce_set_rts (c, (*(int*)data & TIOCM_RTS) ? 1 : 0);
1993 if (*(int*)data & TIOCM_RTS) ce_set_rts (c, 1);
2002 if (*(int*)data & TIOCM_RTS) ce_set_rts (c, 0);
2105 status & TIOCM_RTS ? "On" : "-",
/freebsd-9.3-release/sys/dev/cp/
H A Dif_cp.c1009 if (c->rts) status |= TIOCM_RTS;
1773 cp_set_rts (c, (*(int*)data & TIOCM_RTS) ? 1 : 0);
1782 if (*(int*)data & TIOCM_RTS) cp_set_rts (c, 1);
1791 if (*(int*)data & TIOCM_RTS) cp_set_rts (c, 0);
1876 status & TIOCM_RTS ? "On" : "-",
/freebsd-9.3-release/sys/dev/ctau/
H A Dif_ct.c1232 if (c->rts) status |= TIOCM_RTS;
1698 ct_set_rts (c, (*(int*)data & TIOCM_RTS) ? 1 : 0);
1707 if (*(int*)data & TIOCM_RTS) ct_set_rts (c, 1);
1716 if (*(int*)data & TIOCM_RTS) ct_set_rts (c, 0);
1804 status & TIOCM_RTS ? "On" : "-",
/freebsd-9.3-release/sys/dev/cx/
H A Dif_cx.c1568 if (d->chan->rts) status |= TIOCM_RTS;
1945 cx_set_rts (c, (*(int*)data & TIOCM_RTS) ? 1 : 0);
1955 if (*(int*)data & TIOCM_RTS) cx_set_rts (c, 1);
1965 if (*(int*)data & TIOCM_RTS) cx_set_rts (c, 0);
2315 status & TIOCM_RTS ? "On" : "-",
/freebsd-9.3-release/sbin/sconfig/
H A Dsconfig.c254 status & TIOCM_RTS ? "On" : "-",

Completed in 197 milliseconds