Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/kern/
H A Dtty.c521 if (tp->t_rawq.c_cc + tp->t_canq.c_cc > I_HIGH_WATER - 3 && in ttyinput()
522 (!ISSET(lflag, ICANON) || tp->t_canq.c_cc != 0) && in ttyinput()
552 if (tp->t_rawq.c_cc + tp->t_canq.c_cc > in ttyinput()
608 if (tp->t_rawq.c_cc + tp->t_canq.c_cc) { in ttyinput()
792 if (tp->t_rawq.c_cc + tp->t_canq.c_cc >= MAX_INPUT) { in ttyinput()
819 catq(&tp->t_rawq, &tp->t_canq); in ttyinput()
1369 if (tp->t_rawq.c_cs && tp->t_canq.c_cs) { in ttioctl_locked()
1372 catq(&tp->t_rawq, &tp->t_canq); in ttioctl_locked()
1374 tp->t_rawq = tp->t_canq; in ttioctl_locked()
1375 tp->t_canq = tq; in ttioctl_locked()
[all …]
H A Dtty_dev.c849 retval = (TTYHOG - 2) - (tp->t_rawq.c_cc + tp->t_canq.c_cc);
854 if (tp->t_canq.c_cc == 0 && (tp->t_lflag & ICANON)) {
919 if ((tp->t_rawq.c_cc + tp->t_canq.c_cc) >= TTYHOG - 2 &&
920 (tp->t_canq.c_cc > 0 || !(tp->t_lflag & ICANON))) {
H A Dtty_ptmx.c874 retval = (TTYHOG - 2) - (tp->t_rawq.c_cc + tp->t_canq.c_cc); in ptmx_kqops_common()
875 if (tp->t_canq.c_cc == 0 && (tp->t_lflag & ICANON)) { in ptmx_kqops_common()
/xnu-12377.41.6/bsd/sys/
H A Dtty.h120 struct clist t_canq; /* Device canonical queue. */ member
272 #define TSA_PTS_READ(tp) ((void *)&(tp)->t_canq)
/xnu-12377.41.6/tools/lldbmacros/
H A Dprocess.py1023 …put to canonical queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_canq.c_cs), tty.t_canq.c_cs))