Home
last modified time | relevance | path

Searched refs:t_canq (Results 1 – 5 of 5) sorted by relevance

/xnu-8019.80.24/bsd/kern/
H A Dtty.c460 if (tp->t_rawq.c_cc + tp->t_canq.c_cc > I_HIGH_WATER - 3 && in ttyinput()
461 (!ISSET(lflag, ICANON) || tp->t_canq.c_cc != 0) && in ttyinput()
491 if (tp->t_rawq.c_cc + tp->t_canq.c_cc > in ttyinput()
547 if (tp->t_rawq.c_cc + tp->t_canq.c_cc) { in ttyinput()
731 if (tp->t_rawq.c_cc + tp->t_canq.c_cc >= MAX_INPUT) { in ttyinput()
758 catq(&tp->t_rawq, &tp->t_canq); in ttyinput()
1258 if (tp->t_rawq.c_cs && tp->t_canq.c_cs) { in ttioctl_locked()
1261 catq(&tp->t_rawq, &tp->t_canq); in ttioctl_locked()
1263 tp->t_rawq = tp->t_canq; in ttioctl_locked()
1264 tp->t_canq = tq; in ttioctl_locked()
[all …]
H A Dtty_dev.c806 retval = (TTYHOG - 2) - (tp->t_rawq.c_cc + tp->t_canq.c_cc);
811 if (tp->t_canq.c_cc == 0 && (tp->t_lflag & ICANON)) {
876 if ((tp->t_rawq.c_cc + tp->t_canq.c_cc) >= TTYHOG - 2 &&
877 (tp->t_canq.c_cc > 0 || !(tp->t_lflag & ICANON))) {
H A Dtty_ptmx.c859 retval = (TTYHOG - 2) - (tp->t_rawq.c_cc + tp->t_canq.c_cc); in ptmx_kqops_common()
860 if (tp->t_canq.c_cc == 0 && (tp->t_lflag & ICANON)) { in ptmx_kqops_common()
/xnu-8019.80.24/bsd/sys/
H A Dtty.h120 struct clist t_canq; /* Device canonical queue. */ member
271 #define TSA_PTS_READ(tp) ((void *)&(tp)->t_canq)
/xnu-8019.80.24/tools/lldbmacros/
H A Dprocess.py886 …nput to canonical queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_canq.c_cs), tty.t_canq.c_cs)