| 737 | } |
| 738 | |
| 739 | static unsigned int |
| 740 | ttydisc_recalc_linelength(struct tty *tp) |
| 741 | { |
| 742 | struct ttydisc_recalc_length data = { tp, tp->t_writepos }; |
| 743 | |
| 744 | ttyinq_line_iterate_from_reprintpos(&tp->t_inq, |
| 745 | ttydisc_recalc_charlength, &data); |
| 746 | return (data.curlen); |
| 747 | } |
| 748 | |
| 749 | static int |
| 750 | ttydisc_rubchar(struct tty *tp) |
no test coverage detected