| /netbsd-src/usr.sbin/lpr/lpd/ |
| H A D | modes.c | 117 { "ixoff", IXOFF, 0 }, 118 { "-ixoff", 0, IXOFF }, 119 { "tandem", IXOFF, 0 }, 120 { "-tandem", 0, IXOFF },
|
| H A D | ttcompat.c | 106 iflag &= IXOFF; in sttysetoflags() 171 CLR(iflag, IXOFF); in sttyclearflags() 200 SET(iflag, IXOFF); in sttysetflags()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/ |
| H A D | termios.d | 174 enum IXOFF = 0x0001000; // 0010000 in version() local 271 enum IXOFF = 0x0000400; in version() local 368 enum IXOFF = 0x0000400; in version() local 465 enum IXOFF = 0x0000400; in version() local 562 enum IXOFF = 0x0000400; in version() local 659 enum IXOFF = 0x0000400; in version() local 758 enum IXOFF = 0x001000; in version() local
|
| /netbsd-src/external/gpl3/gdb/dist/readline/readline/examples/ |
| H A D | rlptytest.c | 248 buf.c_iflag |= (IXON|IXOFF); in tty_cbreak() 255 buf.c_iflag &= ~(IXON|IXOFF); in tty_cbreak() 286 buf.c_iflag &= ~(IXON|IXOFF); in tty_off_xon_xoff()
|
| /netbsd-src/external/gpl3/gdb.old/dist/readline/readline/examples/ |
| H A D | rlptytest.c | 248 buf.c_iflag |= (IXON|IXOFF); in tty_cbreak() 255 buf.c_iflag &= ~(IXON|IXOFF); in tty_cbreak() 286 buf.c_iflag &= ~(IXON|IXOFF); in tty_off_xon_xoff()
|
| /netbsd-src/usr.bin/telnet/ |
| H A D | sys_bsd.c | 299 tmp_tc.c_iflag &= ~(IXOFF|IXON); /* Leave the IXANY bit alone */ in TerminalNewMode() 302 tmp_tc.c_iflag |= IXOFF|IXON; /* Leave the IXANY bit alone */ in TerminalNewMode() 304 tmp_tc.c_iflag |= IXOFF|IXON|IXANY; in TerminalNewMode() 306 tmp_tc.c_iflag |= IXOFF|IXON; in TerminalNewMode()
|
| /netbsd-src/bin/stty/ |
| H A D | modes.c | 107 { "ixoff", IXOFF }, 108 { "tandem", IXOFF },
|
| H A D | print.c | 119 put("-ixoff", IXOFF, 0); in print()
|
| /netbsd-src/sys/compat/common/ |
| H A D | tty_43.c | 295 if (ISSET(iflag, IXOFF)) in ttcompatgetflags() 362 SET(iflag, IXOFF); in ttcompatsetflags() 364 CLR(iflag, IXOFF); in ttcompatsetflags() 383 iflag &= IXOFF; in ttcompatsetflags()
|
| /netbsd-src/usr.bin/tip/ |
| H A D | cmds.c | 795 rmtty.c_iflag |= IXON|IXOFF; in tandem() 796 term.c_iflag |= IXON|IXOFF; in tandem() 798 rmtty.c_iflag &= ~(IXON|IXOFF); in tandem() 799 term.c_iflag &= ~(IXON|IXOFF); in tandem()
|
| H A D | tip.c | 577 cntrl.c_iflag |= IXOFF|IXON; in ttysetup() 579 cntrl.c_iflag &= ~(IXOFF|IXON); in ttysetup()
|
| /netbsd-src/crypto/external/bsd/openssh/dist/ |
| H A D | sshtty.c | 81 tio.c_iflag &= ~(ISTRIP | INLCR | IGNCR | ICRNL | IXON | IXANY | IXOFF); in enter_raw_mode()
|
| H A D | ttymodes.h | 118 TTYMODE(IXOFF, c_iflag, 40)
|
| /netbsd-src/libexec/getty/ |
| H A D | subr.c | 377 SET(iflag, IXOFF); in compatflags() 379 CLR(iflag, IXOFF); in compatflags() 398 iflag &= IXOFF; in compatflags()
|
| /netbsd-src/external/bsd/nvi/dist/cl/ |
| H A D | cl_screen.c | 373 if (clp->orig.c_iflag & IXOFF) in cl_vi_init() 374 clp->vi_enter.c_iflag |= IXOFF; in cl_vi_init()
|
| H A D | cl_read.c | 223 term2.c_iflag &= ~(IXON | IXOFF); in cl_read()
|
| /netbsd-src/sys/compat/linux/common/ |
| H A D | linux_termios.h | 208 bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_IXOFF, IXOFF); in linux32_termio_to_bsd_termios() 296 lt->c_iflag |= cvtto_linux_mask(bts->c_iflag, IXOFF, LINUX_IXOFF); in bsd_termios_to_linux32_termio() 386 bts->c_iflag |= cvtto_bsd_mask(lts->c_iflag, LINUX_IXOFF, IXOFF); in linux32_termios_to_bsd_termios() 484 lts->c_iflag |= cvtto_linux_mask(bts->c_iflag, IXOFF, LINUX_IXOFF); in bsd_termios_to_linux32_termios()
|
| /netbsd-src/sys/sys/ |
| H A D | termios.h | 100 #define IXOFF 0x00000400U /* enable input flow control */ macro
|
| /netbsd-src/usr.bin/tset/ |
| H A D | set.c | 86 | IXOFF); in reset_mode()
|
| /netbsd-src/sys/compat/ultrix/ |
| H A D | ultrix_ioctl.c | 163 r |= ((l & 0x00001000) ? IXOFF : 0); in stios2btios() 296 r |= ((l & IXOFF) ? 0x00001000 : 0); in btios2stios()
|
| /netbsd-src/sys/dev/usb/ |
| H A D | uark.c | 301 } else if (ISSET(t->c_iflag, IXON|IXOFF)) { in uark_param()
|
| H A D | ubsa_common.c | 319 if (iflag & IXOFF) in ubsa_flow()
|
| /netbsd-src/lib/libedit/ |
| H A D | tty.c | 90 {"iflag:", 0, IXON | IXOFF | INLCR | ICRNL}, 202 #ifdef IXOFF 203 {"ixoff", IXOFF, MD_INP},
|
| /netbsd-src/sys/compat/sunos/ |
| H A D | sunos_ioctl.c | 145 r |= ((l & 0x00001000) ? IXOFF : 0); in stios2btios() 268 r |= ((l & IXOFF) ? 0x00001000 : 0); in btios2stios()
|
| /netbsd-src/sys/compat/sunos32/ |
| H A D | sunos32_ioctl.c | 181 r |= ((l & 0x00001000) ? IXOFF : 0); in stios2btios() 304 r |= ((l & IXOFF) ? 0x00001000 : 0); in btios2stios()
|