Home
last modified time | relevance | path

Searched refs:IXON (Results 1 – 5 of 5) sorted by relevance

/haiku/src/kits/device/
H A DSerialPort.cpp573 options.c_iflag &= ~(IXON | IXOFF | IXANY | INPCK); in _DriverControl()
585 options.c_iflag |= (IXON | IXOFF); in _DriverControl()
/haiku/src/bin/network/telnet/
H A Dsys_bsd.c452 tmp_tc.c_iflag &= ~(IXOFF|IXON); /* Leave the IXANY bit alone */ in TerminalNewMode()
455 tmp_tc.c_iflag |= IXOFF|IXON; /* Leave the IXANY bit alone */ in TerminalNewMode()
457 tmp_tc.c_iflag |= IXOFF|IXON|IXANY; in TerminalNewMode()
459 tmp_tc.c_iflag |= IXOFF|IXON; in TerminalNewMode()
/haiku/src/system/libroot/posix/
H A Dtermios.c164 | ICRNL | IXON); in cfmakeraw()
/haiku/headers/posix/
H A Dtermios.h55 #define IXON 0x400 /* enable input SW flow control */ macro
/haiku/src/bin/network/telnetd/
H A Dsys_term.c472 return((termbuf.c_iflag & IXON) ? 1 : 0); in tty_flowmode()