Searched refs:t_outq (Results 1 – 7 of 7) sorted by relevance
| /xnu-8792.41.9/bsd/dev/arm/ |
| H A D | km.c | 287 if (tp->t_outq.c_cc == 0) { in kmstart() 291 if (tp->t_outq.c_cc > tp->t_lowat) { in kmstart() 351 while (tp->t_outq.c_cc > 0) { in kmoutput() 352 cc = ndqb(&tp->t_outq, 0); in kmoutput() 362 (void) q_to_b(&tp->t_outq, buf, cc); in kmoutput() 377 if (tp->t_outq.c_cc > 0) { in kmoutput()
|
| /xnu-8792.41.9/bsd/dev/i386/ |
| H A D | km.c | 305 if (tp->t_outq.c_cc == 0) { in kmstart() 355 while (tp->t_outq.c_cc > 0) { in kmoutput() 356 cc = ndqb(&tp->t_outq, 0); in kmoutput() 366 (void) q_to_b(&tp->t_outq, buf, cc); in kmoutput() 382 if (tp->t_outq.c_cc > 0) { in kmoutput()
|
| /xnu-8792.41.9/bsd/kern/ |
| H A D | tty.c | 734 if (tp->t_outq.c_cc < tp->t_hiwat) { in ttyinput() 835 if (putc(c, &tp->t_outq)) { in ttyoutput() 853 c -= b_to_q((const u_char *)" ", c, &tp->t_outq); in ttyoutput() 871 if (putc('\r', &tp->t_outq)) { in ttyoutput() 885 if (!ISSET(tp->t_lflag, FLUSHO) && putc(c, &tp->t_outq)) { in ttyoutput() 1171 *(int *)data = tp->t_outq.c_cc; in ttioctl_locked() 1563 if ((tp->t_outq.c_cc <= tp->t_lowat) && in ttyselect() 1565 retval = tp->t_hiwat - tp->t_outq.c_cc; in ttyselect() 1659 while ((tp->t_outq.c_cc || ISSET(tp->t_state, TS_BUSY)) && in ttywait() 1662 if ((tp->t_outq.c_cc || ISSET(tp->t_state, TS_BUSY)) && in ttywait() [all …]
|
| H A D | tty_dev.c | 637 if (tp->t_outq.c_cc && (tp->t_state & TS_TTSTOP) == 0) { 657 cc = q_to_b(&tp->t_outq, (u_char *)buf, MIN((int)uio_resid(uio), BUFSIZ)); 749 if ((tp->t_outq.c_cc <= tp->t_lowat) && 751 retval = tp->t_hiwat - tp->t_outq.c_cc; 787 tp->t_outq.c_cc && (tp->t_state & TS_TTSTOP) == 0) { 788 retval = (driver->fix_7828447) ? tp->t_outq.c_cc : 1; 1023 ndflush(&tp->t_outq, tp->t_outq.c_cc);
|
| H A D | tty_ptmx.c | 581 if ((tp->t_outq.c_cc <= tp->t_lowat) && in ptsd_kqops_common() 583 data = tp->t_outq.c_cn - tp->t_outq.c_cc; in ptsd_kqops_common() 849 if (tp->t_outq.c_cc && !(tp->t_state & TS_TTSTOP)) { in ptmx_kqops_common() 850 data = tp->t_outq.c_cc; in ptmx_kqops_common()
|
| /xnu-8792.41.9/bsd/sys/ |
| H A D | tty.h | 122 struct clist t_outq; /* Device output queue. */ member 267 #define TSA_OCOMPLETE(tp) ((void *)&(tp)->t_outq.c_cl) 268 #define TSA_OLOWAT(tp) ((void *)&(tp)->t_outq) 269 #define TSA_PTC_READ(tp) ((void *)&(tp)->t_outq.c_cf)
|
| /xnu-8792.41.9/tools/lldbmacros/ |
| H A D | process.py | 944 …tput data: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_outq.c_cs), tty.t_outq.c_cs))
|