Home
last modified time | relevance | path

Searched refs:to_begin (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/kern/
H A Dtty_outq.c87 to->to_begin = 0; in ttyoutq_flush()
149 if (to->to_begin == to->to_end) in ttyoutq_read()
161 cbegin = to->to_begin; in ttyoutq_read()
162 cend = MIN(MIN(to->to_end, to->to_begin + len), in ttyoutq_read()
173 to->to_begin = 0; in ttyoutq_read()
178 to->to_begin = 0; in ttyoutq_read()
183 to->to_begin += clen; in ttyoutq_read()
210 if (to->to_begin == to->to_end) in ttyoutq_read_uio()
222 cbegin = to->to_begin; in ttyoutq_read_uio()
223 cend = MIN(MIN(to->to_end, to->to_begin + uio->uio_resid), in ttyoutq_read_uio()
[all …]
H A Dtty.c2430 &tp->t_outq, tp->t_outq.to_begin, tp->t_outq.to_end, in DB_SHOW_COMMAND()
2492 tp->t_outq.to_end - tp->t_outq.to_begin, in DB_SHOW_ALL_COMMAND()
/freebsd/sys/sys/
H A Dttyqueue.h63 unsigned int to_begin; member
175 return (to->to_end - to->to_begin); in ttyoutq_bytesused()
/freebsd/usr.sbin/pstat/
H A Dpstat.c242 xt.xt_outcc = tty.t_outq.to_end - tty.t_outq.to_begin; in ttymode_kvm()