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

/darwin-on-arm/xnu/bsd/dev/arm/
H A Dkm.c300 if (tp->t_outq.c_cc == 0)
348 while (tp->t_outq.c_cc > 0) {
349 cc = ndqb(&tp->t_outq, 0);
360 (void) q_to_b(&tp->t_outq, buf, cc);
372 if (tp->t_outq.c_cc > 0) {
/darwin-on-arm/xnu/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) {
/darwin-on-arm/xnu/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)
/darwin-on-arm/xnu/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.c929 if (tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0)
945 cc = q_to_b(&tp->t_outq, (u_char *)buf, min(uio_resid(uio), BUFSIZ));
1073 if ((tp->t_outq.c_cc <= tp->t_lowat) &&
1075 retval = tp->t_hiwat - tp->t_outq.c_cc;
1109 tp->t_outq.c_cc && (tp->t_state&TS_TTSTOP) == 0) {
1110 retval = tp->t_outq.c_cc;
1384 ndflush(&tp->t_outq, tp->t_outq.c_cc);
1611 if ((tp->t_outq.c_cc <= tp->t_lowat) &&
1613 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);

Completed in 33 milliseconds