Home
last modified time | relevance | path

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

/xnu-8796.121.2/bsd/kern/
H A Dtty.c461 if (tp->t_rawq.c_cc + tp->t_canq.c_cc > I_HIGH_WATER - 3 && in ttyinput()
492 if (tp->t_rawq.c_cc + tp->t_canq.c_cc > in ttyinput()
496 (void)putc(0377 | TTY_QUOTE, &tp->t_rawq); in ttyinput()
497 (void)putc(0 | TTY_QUOTE, &tp->t_rawq); in ttyinput()
498 (void)putc(c | TTY_QUOTE, &tp->t_rawq); in ttyinput()
548 if (tp->t_rawq.c_cc + tp->t_canq.c_cc) { in ttyinput()
632 if (tp->t_rawq.c_cc) { in ttyinput()
635 ttyrub((c = unputc(&tp->t_rawq)), tp); in ttyinput()
636 } while (tp->t_rawq.c_cc && CCONT(c)); in ttyinput()
638 ttyrub(unputc(&tp->t_rawq), tp); in ttyinput()
[all …]
H A Dtty_dev.c814 retval = (TTYHOG - 2) - (tp->t_rawq.c_cc + tp->t_canq.c_cc);
884 if ((tp->t_rawq.c_cc + tp->t_canq.c_cc) >= TTYHOG - 2 &&
H A Dtty_ptmx.c867 retval = (TTYHOG - 2) - (tp->t_rawq.c_cc + tp->t_canq.c_cc); in ptmx_kqops_common()
/xnu-8796.121.2/bsd/sys/
H A Dtty.h118 struct clist t_rawq; /* Device raw input queue. */ member
265 #define TSA_CARR_ON(tp) ((void *)&(tp)->t_rawq)
266 #define TSA_HUP_OR_INPUT(tp) ((void *)&(tp)->t_rawq.c_cf)
270 #define TSA_PTC_WRITE(tp) ((void *)&(tp)->t_rawq.c_cl)
/xnu-8796.121.2/tools/lldbmacros/
H A Dprocess.py949 …put to raw queue: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_rawq.c_cs), tty.t_rawq.c_cs))