Home
last modified time | relevance | path

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

/xnu-10002.41.9/bsd/kern/
H A Dtty_dev.c516 tp->t_lflag &= ~EXTPROC; in ptcopen()
1008 tp->t_lflag |= EXTPROC;
1010 if ((tp->t_lflag & EXTPROC) &&
1015 tp->t_lflag &= ~EXTPROC;
1171 if ((tp->t_lflag & EXTPROC) && (pti->pt_flags & PF_PKT)) {
H A Dtty.c569 if (!ISSET(lflag, EXTPROC)) { in ttyinput()
683 if (!ISSET(tp->t_lflag, EXTPROC) && ISSET(lflag, ICANON)) { in ttyinput()
911 ISSET(oflag, OXTABS) && !ISSET(tp->t_lflag, EXTPROC)) { in ttyoutput()
1380 if (ISSET(tp->t_lflag, EXTPROC)) { in ttioctl_locked()
1381 SET(t->c_lflag, EXTPROC); in ttioctl_locked()
1383 CLR(t->c_lflag, EXTPROC); in ttioctl_locked()
2681 if (!ISSET(tp->t_lflag, ECHO) || ISSET(tp->t_lflag, EXTPROC)) { in ttyrub()
2832 ISSET(tp->t_lflag, EXTPROC)) { in ttyecho()
/xnu-10002.41.9/bsd/sys/
H A Dtermios.h253 #define EXTPROC 0x00000800 /* external processing */ macro