Home
last modified time | relevance | path

Searched refs:CRTS_IFLOW (Results 1 – 13 of 13) sorted by relevance

/dragonfly/bin/stty/
H A Dprint.c161 switch(tmp & (CCTS_OFLOW | CRTS_IFLOW)) { in print()
165 case CRTS_IFLOW: in print()
169 put("-crtscts", CCTS_OFLOW | CRTS_IFLOW, 0); in print()
H A Dmodes.c85 { "rtsflow", CRTS_IFLOW, 0 },
86 { "-rtsflow", 0, CRTS_IFLOW },
/dragonfly/sys/sys/
H A D_termios.h140 #define CRTSCTS (CCTS_OFLOW | CRTS_IFLOW)
141 #define CRTS_IFLOW 0x00020000 /* RTS flow control of input */ macro
/dragonfly/usr.sbin/lpr/lpd/
H A Dmodes.c85 { "rtsflow", CRTS_IFLOW, 0 },
86 { "-rtsflow", 0, CRTS_IFLOW },
/dragonfly/usr.sbin/ppp/
H A Dtty.c87 #undef CRTS_IFLOW
89 #define CRTS_IFLOW CDTRCTS macro
460 ios.c_cflag |= CLOCAL | CCTS_OFLOW | CRTS_IFLOW; in tty_Raw()
717 ios.c_cflag |= CLOCAL | CCTS_OFLOW | CRTS_IFLOW; in tty_Create()
/dragonfly/contrib/gdb-7/gdb/
H A Dser-unix.c420 #ifdef CRTS_IFLOW in hardwire_raw()
422 state.termios.c_cflag |= CRTS_IFLOW; in hardwire_raw()
424 state.termios.c_cflag &= ~CRTS_IFLOW; in hardwire_raw()
/dragonfly/sbin/startslip/
H A Dstartslip.c322 t.c_cflag |= (CRTS_IFLOW|CCTS_OFLOW); in main()
325 t.c_cflag &= ~(CRTS_IFLOW|CCTS_OFLOW); in main()
/dragonfly/sys/bus/u4b/serial/
H A Dubser.c352 (CRTS_IFLOW | CDTR_IFLOW | CDSR_OFLOW | CCAR_OFLOW)) != 0) in ubser_pre_param()
H A Dusb_serial.c1700 if (t->c_cflag & CRTS_IFLOW) { in ucom_param()
/dragonfly/contrib/tcsh-6/
H A Ded.term.c234 # ifdef CRTS_IFLOW
235 { "crts_iflow",CRTS_IFLOW,M_CONTROL },
/dragonfly/contrib/libedit/src/
H A Dtty.c301 #ifdef CRTS_IFLOW
302 {"crts_iflow", CRTS_IFLOW, MD_CTL},
/dragonfly/sys/dev/serial/sio/
H A Dsio.c2371 if (cflag & CRTS_IFLOW) { in comparam()
/dragonfly/sys/kern/
H A Dtty.c429 (ISSET(tp->t_cflag, CRTS_IFLOW) || ISSET(iflag, IXOFF)) && in ttyinput()