Home
last modified time | relevance | path

Searched refs:ISTRIP (Results 1 – 3 of 3) sorted by relevance

/xnu-10002.41.9/bsd/kern/
H A Dtty_compat.c569 if (iflag & ISTRIP) { in ttcompatgetflags()
586 if (iflag & (INPCK | ISTRIP | IXON) || lflag & (IEXTEN | ISIG) in ttcompatgetflags()
683 iflag |= ISTRIP; in ttcompatsetflags()
685 iflag &= ~ISTRIP; in ttcompatsetflags()
694 iflag |= ISTRIP; in ttcompatsetflags()
803 iflag |= ISTRIP; in ttcompatsetlflags()
805 iflag &= ~ISTRIP; in ttcompatsetlflags()
814 iflag |= ISTRIP; in ttcompatsetlflags()
H A Dtty.c566 if (!ISSET(tp->t_state, TS_TYPEN) && ISSET(iflag, ISTRIP)) { in ttyinput()
802 if (c == 0377 && ISSET(iflag, PARMRK) && !ISSET(iflag, ISTRIP) in ttyinput()
/xnu-10002.41.9/bsd/sys/
H A Dtermios.h124 #define ISTRIP 0x00000020 /* strip 8th bit off chars */ macro