Searched refs:t_outq (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/kern/ |
H A D | tty_ttydisc.c | 459 #define PRINT_NORMAL() ttyoutq_write_nofrag(&tp->t_outq, &c, 1) in ttydisc_write_oproc() 479 error = ttyoutq_write_nofrag(&tp->t_outq, in ttydisc_write_oproc() 495 error = ttyoutq_write_nofrag(&tp->t_outq, "\r\n", 2); in ttydisc_write_oproc() 616 wlen = ttyoutq_write(&tp->t_outq, obstart, plen); in ttydisc_write() 751 return ttyoutq_write_nofrag(&tp->t_outq, ob, 4); in ttydisc_echo_force() 754 return ttyoutq_write_nofrag(&tp->t_outq, ob, 2); in ttydisc_echo_force() 759 return ttyoutq_write_nofrag(&tp->t_outq, &c, 1); in ttydisc_echo_force() 857 ttyoutq_write_nofrag(&tp->t_outq, in ttydisc_rubchar() 863 ttyoutq_write_nofrag(&tp->t_outq, "\b", 1); in ttydisc_rubchar() 885 ttyoutq_write_nofrag(&tp->t_outq, in ttydisc_rubchar() [all …]
|
H A D | tty.c | 141 error = ttyoutq_setsize(&tp->t_outq, tp, bs); in tty_watermarks() 146 tp->t_outlow = (ttyoutq_getallocatedsize(&tp->t_outq) * 9) / 10; in tty_watermarks() 183 bytes = ttyoutq_bytesused(&tp->t_outq); in tty_drain() 185 if (ttyoutq_bytesused(&tp->t_outq) == 0 && !ttydevsw_busy(tp)) in tty_drain() 195 else if (leaving && ttyoutq_bytesused(&tp->t_outq) < bytes) { in tty_drain() 199 bytes = ttyoutq_bytesused(&tp->t_outq); in tty_drain() 254 ttyoutq_free(&tp->t_outq); in ttydev_leave() 1121 ttyoutq_free(&tp->t_outq); in tty_dealloc() 1300 xt->xt_outsize = ttyoutq_getsize(&tp->t_outq); in tty_to_xtty() 1301 xt->xt_outcc = ttyoutq_bytesused(&tp->t_outq); in tty_to_xtty() [all …]
|
/freebsd/usr.sbin/pstat/ |
H A D | pstat.c | 241 xt.xt_outsize = tty.t_outq.to_nblocks * TTYOUTQ_DATASIZE; in ttymode_kvm() 242 xt.xt_outcc = tty.t_outq.to_end - tty.t_outq.to_begin; in ttymode_kvm()
|
/freebsd/sys/sys/ |
H A D | ttydisc.h | 86 return ttyoutq_bytesleft(&tp->t_outq); in ttydisc_write_poll()
|
H A D | tty.h | 95 struct ttyoutq t_outq; /* (t) Output queue. */ member
|