Searched refs:t_outq (Results 1 – 7 of 7) sorted by relevance
| /xnu-8796.121.2/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-8796.121.2/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-8796.121.2/bsd/kern/ |
| H A D | tty.c | 735 if (tp->t_outq.c_cc < tp->t_hiwat) { in ttyinput() 836 if (putc(c, &tp->t_outq)) { in ttyoutput() 854 c -= b_to_q((const u_char *)" ", c, &tp->t_outq); in ttyoutput() 872 if (putc('\r', &tp->t_outq)) { in ttyoutput() 886 if (!ISSET(tp->t_lflag, FLUSHO) && putc(c, &tp->t_outq)) { in ttyoutput() 1172 *(int *)data = tp->t_outq.c_cc; in ttioctl_locked() 1564 if ((tp->t_outq.c_cc <= tp->t_lowat) && in ttyselect() 1566 retval = tp->t_hiwat - tp->t_outq.c_cc; in ttyselect() 1660 while ((tp->t_outq.c_cc || ISSET(tp->t_state, TS_BUSY)) && in ttywait() 1663 if ((tp->t_outq.c_cc || ISSET(tp->t_state, TS_BUSY)) && in ttywait() [all …]
|
| H A D | tty_dev.c | 645 if (tp->t_outq.c_cc && (tp->t_state & TS_TTSTOP) == 0) { 665 cc = q_to_b(&tp->t_outq, (u_char *)buf, MIN((int)uio_resid(uio), BUFSIZ)); 757 if ((tp->t_outq.c_cc <= tp->t_lowat) && 759 retval = tp->t_hiwat - tp->t_outq.c_cc; 795 tp->t_outq.c_cc && (tp->t_state & TS_TTSTOP) == 0) { 796 retval = (driver->fix_7828447) ? tp->t_outq.c_cc : 1; 1031 ndflush(&tp->t_outq, tp->t_outq.c_cc);
|
| H A D | tty_ptmx.c | 585 if ((tp->t_outq.c_cc <= tp->t_lowat) && in ptsd_kqops_common() 587 data = tp->t_outq.c_cn - tp->t_outq.c_cc; in ptsd_kqops_common() 857 if (tp->t_outq.c_cc && !(tp->t_state & TS_TTSTOP)) { in ptmx_kqops_common() 858 data = tp->t_outq.c_cc; in ptmx_kqops_common()
|
| /xnu-8796.121.2/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-8796.121.2/tools/lldbmacros/ |
| H A D | process.py | 951 …tput data: {0: <#18x} \"{1: <s}\"".format(unsigned(tty.t_outq.c_cs), tty.t_outq.c_cs))
|