Home
last modified time | relevance | path

Searched refs:to_end (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/kern/
H A Dtty_outq.c64 if (to->to_end == 0) { \
91 to->to_end = 0; in ttyoutq_flush()
152 if (to->to_begin == to->to_end) in ttyoutq_read()
174 if (cend == to->to_end) { in ttyoutq_read()
177 to->to_end = 0; in ttyoutq_read()
182 to->to_end -= TTYOUTQ_DATASIZE; in ttyoutq_read()
213 if (to->to_begin == to->to_end) in ttyoutq_read_uio()
245 to->to_end = 0; in ttyoutq_read_uio()
247 to->to_end -= TTYOUTQ_DATASIZE; in ttyoutq_read_uio()
290 if (to->to_end == 0) { in ttyoutq_write()
[all …]
H A Dtty.c2376 &tp->t_outq, tp->t_outq.to_begin, tp->t_outq.to_end, in DB_SHOW_COMMAND()
2438 tp->t_outq.to_end - tp->t_outq.to_begin, in DB_SHOW_ALL_COMMAND()
/f-stack/freebsd/sys/
H A Dttyqueue.h66 unsigned int to_end; member
168 MPASS(len >= to->to_end); in ttyoutq_bytesleft()
170 return (len - to->to_end); in ttyoutq_bytesleft()
176 return (to->to_end - to->to_begin); in ttyoutq_bytesused()