Home
last modified time | relevance | path

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

/xnu-8020.121.3/bsd/kern/
H A Dtty_dev.c507 tp->t_lflag &= ~EXTPROC; in ptcopen()
970 tp->t_lflag |= EXTPROC;
972 if ((tp->t_lflag & EXTPROC) &&
977 tp->t_lflag &= ~EXTPROC;
1133 if ((tp->t_lflag & EXTPROC) && (pti->pt_flags & PF_PKT)) {
H A Dtty.c508 if (!ISSET(lflag, EXTPROC)) { in ttyinput()
622 if (!ISSET(tp->t_lflag, EXTPROC) && ISSET(lflag, ICANON)) { in ttyinput()
850 ISSET(oflag, OXTABS) && !ISSET(tp->t_lflag, EXTPROC)) { in ttyoutput()
1275 if (ISSET(tp->t_lflag, EXTPROC)) { in ttioctl_locked()
1276 SET(t->c_lflag, EXTPROC); in ttioctl_locked()
1278 CLR(t->c_lflag, EXTPROC); in ttioctl_locked()
2576 if (!ISSET(tp->t_lflag, ECHO) || ISSET(tp->t_lflag, EXTPROC)) { in ttyrub()
2727 ISSET(tp->t_lflag, EXTPROC)) { in ttyecho()
/xnu-8020.121.3/bsd/sys/
H A Dtermios.h253 #define EXTPROC 0x00000800 /* external processing */ macro