Lines Matching refs:ttybits
187 static void tiocm_to_cztty(struct cztty_softc *sc, u_long how, int ttybits);
1249 tiocm_to_cztty(struct cztty_softc *sc, u_long how, int ttybits) in tiocm_to_cztty() argument
1255 if (ISSET(ttybits, TIOCM_DTR)) in tiocm_to_cztty()
1257 if (ISSET(ttybits, TIOCM_RTS)) in tiocm_to_cztty()
1293 int ttybits = 0; in cztty_to_tiocm() local
1301 SET(ttybits, TIOCM_RTS); in cztty_to_tiocm()
1303 SET(ttybits, TIOCM_CTS); in cztty_to_tiocm()
1305 SET(ttybits, TIOCM_CAR); in cztty_to_tiocm()
1307 SET(ttybits, TIOCM_DTR); in cztty_to_tiocm()
1309 SET(ttybits, TIOCM_RNG); in cztty_to_tiocm()
1311 SET(ttybits, TIOCM_DSR); in cztty_to_tiocm()
1314 SET(ttybits, TIOCM_LE); in cztty_to_tiocm()
1316 return (ttybits); in cztty_to_tiocm()