Symbol: IGNBRK
bin/stty/modes.c
96
{ "ignbrk", IGNBRK },
bin/stty/print.c
122
put("-ignbrk", IGNBRK, 0);
lib/libc/termios/cfmakeraw.c
61
t->c_iflag &= ~(IMAXBEL|IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IXON);
lib/libcurses/tty.c
144
screen->rawt.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | INLCR | IGNCR |
lib/libedit/tty.c
166
#ifdef IGNBRK
lib/libedit/tty.c
167
{"ignbrk", IGNBRK, MD_INP},
sys/compat/linux/common/linux_termios.h
198
bts->c_iflag |= cvtto_bsd_mask(lt->c_iflag, LINUX_IGNBRK, IGNBRK);
sys/compat/linux/common/linux_termios.h
286
lt->c_iflag |= cvtto_linux_mask(bts->c_iflag, IGNBRK, LINUX_IGNBRK);
sys/compat/linux/common/linux_termios.h
376
bts->c_iflag |= cvtto_bsd_mask(lts->c_iflag, LINUX_IGNBRK, IGNBRK);
sys/compat/linux/common/linux_termios.h
474
lts->c_iflag |= cvtto_linux_mask(bts->c_iflag, IGNBRK, LINUX_IGNBRK);
sys/compat/sunos/sunos_ioctl.c
133
r = ((l & 0x00000001) ? IGNBRK : 0);
sys/compat/sunos/sunos_ioctl.c
256
r = ((l & IGNBRK) ? 0x00000001 : 0);
sys/compat/sunos32/sunos32_ioctl.c
169
r = ((l & 0x00000001) ? IGNBRK : 0);
sys/compat/sunos32/sunos32_ioctl.c
292
r = ((l & IGNBRK) ? 0x00000001 : 0);
sys/compat/ultrix/ultrix_ioctl.c
151
r = ((l & 0x00000001) ? IGNBRK : 0);
sys/compat/ultrix/ultrix_ioctl.c
284
r = ((l & IGNBRK) ? 0x00000001 : 0);
sys/kern/tty.c
614
if (ISSET(iflag, IGNBRK))
usr.bin/tset/set.c
79
mode.c_iflag &= ~(IGNBRK | PARMRK | INPCK | ISTRIP | INLCR | IGNCR
usr.sbin/lpr/lpd/modes.c
95
{ "ignbrk", IGNBRK, 0 },
usr.sbin/lpr/lpd/modes.c
96
{ "-ignbrk", 0, IGNBRK },
usr.sbin/moused/moused.c
2245
tty.c_iflag = IGNBRK | IGNPAR;