Searched refs:t_outq (Results 1 - 6 of 6) sorted by relevance

/xnu-2422.115.4/bsd/dev/i386/
H A Dkm.c300 if (tp->t_outq.c_cc == 0)
349 while (tp->t_outq.c_cc > 0) {
350 cc = ndqb(&tp->t_outq, 0);
359 (void) q_to_b(&tp->t_outq, buf, cc);
369 if (tp->t_outq.c_cc > 0) {
/xnu-2422.115.4/bsd/sys/
H A Dtty.h121 struct clist t_outq; /* Device output queue. */ member in struct:tty
261 #define TSA_OCOMPLETE(tp) ((void *)&(tp)->t_outq.c_cl)
262 #define TSA_OLOWAT(tp) ((void *)&(tp)->t_outq)
263 #define TSA_PTC_READ(tp) ((void *)&(tp)->t_outq.c_cf)
/xnu-2422.115.4/bsd/kern/
H A Dtty.c795 if (tp->t_outq.c_cc < tp->t_hiwat)
892 if (putc(c, &tp->t_outq))
909 c -= b_to_q((const u_char *)" ", c, &tp->t_outq);
926 if (putc('\r', &tp->t_outq))
937 if (!ISSET(tp->t_lflag, FLUSHO) && putc(c, &tp->t_outq))
1219 *(int *)data = tp->t_outq.c_cc;
1537 if ((tp->t_outq.c_cc <= tp->t_lowat) &&
1539 retval = tp->t_hiwat - tp->t_outq.c_cc;
1618 while ((tp->t_outq.c_cc || ISSET(tp->t_state, TS_BUSY)) &&
1621 if ((tp->t_outq
[all...]
H A Dtty_ptmx.c938 if (tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0)
954 cc = q_to_b(&tp->t_outq, (u_char *)buf, MIN(uio_resid(uio), BUFSIZ));
1082 if ((tp->t_outq.c_cc <= tp->t_lowat) &&
1084 retval = tp->t_hiwat - tp->t_outq.c_cc;
1118 tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0) {
1119 retval = tp->t_outq.c_cc;
1393 ndflush(&tp->t_outq, tp->t_outq.c_cc);
1627 if ((tp->t_outq.c_cc <= tp->t_lowat) &&
1629 kn->kn_data = tp->t_outq
[all...]
H A Dtty_pty.c530 if (tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0)
546 cc = q_to_b(&tp->t_outq, (u_char *)buf, min(uio_resid(uio), BUFSIZ));
608 tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0) {
855 ndflush(&tp->t_outq, tp->t_outq.c_cc);
/xnu-2422.115.4/tools/lldbmacros/
H A Dprocess.py436 print "Last output data: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_outq.c_cs), tty.t_outq.c_cs)

Completed in 83 milliseconds