Home
last modified time | relevance | path

Searched refs:TIOCM_RTS (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/ntp/ntpd/
H A Drefclock_neoclock4x.c38 # define TIOCM_RTS MRTS macro
259 #if defined(TIOCMSET) && (defined(TIOCM_RTS) || defined(CIOCM_RTS)) in neoclock4x_start()
268 #ifdef TIOCM_RTS in neoclock4x_start()
269 sl232 = sl232 | TIOCM_DTR | TIOCM_RTS; /* turn on RTS, and DTR for power supply */ in neoclock4x_start()
408 #if defined(TIOCMSET) && (defined(TIOCM_RTS) || defined(CIOCM_RTS)) in neoclock4x_shutdown()
416 #ifdef TIOCM_RTS in neoclock4x_shutdown()
418 sl232 &= ~(TIOCM_DTR | TIOCM_RTS); in neoclock4x_shutdown()
H A Drefclock_palisade.h61 #define TIOCM_RTS MRTS macro
H A Drefclock_heath.c59 * TIOCMBIS ioctl system calls and TIOCM_RTS control bit. Present
403 int bits = TIOCM_RTS; in heath_poll()
H A Drefclock_hopfser.c31 # define TIOCM_RTS MRTS macro
H A Drefclock_palisade.c1439 x |= TIOCM_RTS; /* turn on RTS */ in HW_poll()
1459 x &= ~TIOCM_RTS; /* turn off RTS */ in HW_poll()
H A Drefclock_parse.c5868 sl232 = (sl232 & ~TIOCM_RTS) | TIOCM_DTR; /* turn on DTR, clear RTS for power supply */ in rawdcf_init_1()
5894 #if defined(TIOCMSET) && (defined(TIOCM_RTS) || defined(CIOCM_RTS))
5914 #ifdef TIOCM_RTS in rawdcf_init_2()
5915 sl232 = (sl232 & ~TIOCM_DTR) | TIOCM_RTS; /* turn on RTS, clear DTR for power supply */ in rawdcf_init_2()
/freebsd/contrib/ntp/parseutil/
H A Dtestdcf.c368 #ifdef TIOCM_RTS in main()
369 int on = TIOCM_RTS; in main()
408 #if defined(TIOCMBIC) && defined(TIOCM_RTS) in main()
/freebsd/usr.bin/morse/
H A Dmorse.c379 lflags &= ~TIOCM_RTS; in main()
575 lflags |= TIOCM_RTS; in ttyout()
582 lflags &= ~TIOCM_RTS; in ttyout()
/freebsd/sys/sys/
H A Dttycom.h92 #define TIOCM_RTS 0004 /* request to send */ macro
/freebsd/usr.sbin/moused/
H A Dmoused.c1732 i = TIOCM_RTS; in r_init()
2773 i &= ~TIOCM_RTS; /* RTS = 0 */ in pnpwakeup1()
2790 i = TIOCM_DTR | TIOCM_RTS; /* DTR = 0, RTS = 0 */ in pnpwakeup1()
2800 i = TIOCM_RTS; /* DTR = 1, RTS = 1 */ in pnpwakeup1()
2814 i = TIOCM_DTR | TIOCM_RTS; /* DTR = 0, RTS = 0 */ in pnpwakeup1()
2821 i = TIOCM_DTR | TIOCM_RTS; /* DTR = 1, RTS = 1 */ in pnpwakeup1()
2851 i &= ~TIOCM_RTS; /* RTS = 0 */ in pnpwakeup2()
2860 i = TIOCM_DTR | TIOCM_RTS; /* DTR = 1, RTS = 1 */ in pnpwakeup2()
2892 i = TIOCM_DTR | TIOCM_RTS; /* DTR = 1, RTS = 1 */ in pnpgets()
/freebsd/sys/kern/
H A Dtty.c1667 (bits & (TIOCM_DTR | TIOCM_RTS)) >> 1, in tty_generic_ioctl()
1668 ((~bits) & (TIOCM_DTR | TIOCM_RTS)) >> 1); in tty_generic_ioctl()
1673 ttydevsw_modem(tp, (bits & (TIOCM_DTR | TIOCM_RTS)) >> 1, 0); in tty_generic_ioctl()
1678 ttydevsw_modem(tp, 0, (bits & (TIOCM_DTR | TIOCM_RTS)) >> 1); in tty_generic_ioctl()