Lines Matching refs:iflag
488 tcflag_t iflag, lflag; in ttyinput() local
520 iflag = tp->t_iflag; in ttyinput()
523 (ISSET(tp->t_cflag, CRTS_IFLOW) || ISSET(iflag, IXOFF)) && in ttyinput()
534 if (ISSET(iflag, IGNBRK)) { in ttyinput()
537 if (ISSET(iflag, BRKINT)) { in ttyinput()
543 if (ISSET(iflag, PARMRK)) { in ttyinput()
546 } else if ((ISSET(err, TTY_PE) && ISSET(iflag, INPCK)) in ttyinput()
548 if (ISSET(iflag, IGNPAR)) { in ttyinput()
550 } else if (ISSET(iflag, PARMRK)) { in ttyinput()
566 if (!ISSET(tp->t_state, TS_TYPEN) && ISSET(iflag, ISTRIP)) { in ttyinput()
651 if (ISSET(iflag, IXON)) { in ttyinput()
674 if (ISSET(iflag, IGNCR)) { in ttyinput()
676 } else if (ISSET(iflag, ICRNL)) { in ttyinput()
679 } else if (c == '\n' && ISSET(iflag, INLCR)) { in ttyinput()
693 if (ISSET(iflag, IUTF8)) { in ttyinput()
794 if (ISSET(iflag, IMAXBEL)) { in ttyinput()
802 if (c == 0377 && ISSET(iflag, PARMRK) && !ISSET(iflag, ISTRIP) in ttyinput()
803 && ISSET(iflag, IGNBRK | IGNPAR) != (IGNBRK | IGNPAR)) { in ttyinput()
850 !ISSET(iflag, IXANY) && cc[VSTART] != cc[VSTOP]) { in ttyinput()