Home
last modified time | relevance | path

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

/xnu-8796.121.2/bsd/kern/
H A Dtty_dev.c508 tp->t_lflag &= ~EXTPROC; in ptcopen()
978 tp->t_lflag |= EXTPROC;
980 if ((tp->t_lflag & EXTPROC) &&
985 tp->t_lflag &= ~EXTPROC;
1141 if ((tp->t_lflag & EXTPROC) && (pti->pt_flags & PF_PKT)) {
H A Dtty.c509 if (!ISSET(lflag, EXTPROC)) { in ttyinput()
623 if (!ISSET(tp->t_lflag, EXTPROC) && ISSET(lflag, ICANON)) { in ttyinput()
851 ISSET(oflag, OXTABS) && !ISSET(tp->t_lflag, EXTPROC)) { in ttyoutput()
1276 if (ISSET(tp->t_lflag, EXTPROC)) { in ttioctl_locked()
1277 SET(t->c_lflag, EXTPROC); in ttioctl_locked()
1279 CLR(t->c_lflag, EXTPROC); in ttioctl_locked()
2577 if (!ISSET(tp->t_lflag, ECHO) || ISSET(tp->t_lflag, EXTPROC)) { in ttyrub()
2728 ISSET(tp->t_lflag, EXTPROC)) { in ttyecho()
/xnu-8796.121.2/bsd/sys/
H A Dtermios.h253 #define EXTPROC 0x00000800 /* external processing */ macro