Searched refs:la_count (Results 1 – 1 of 1) sorted by relevance
/Linux-v6.6/drivers/tty/ |
D | n_tty.c | 1620 size_t la_count = min(ldata->lookahead_count, count); in __receive_buf() local 1627 if (la_count > 0) in __receive_buf() 1628 n_tty_receive_buf_closing(tty, cp, fp, la_count, true); in __receive_buf() 1629 if (count > la_count) in __receive_buf() 1630 n_tty_receive_buf_closing(tty, cp, fp, count - la_count, false); in __receive_buf() 1632 if (la_count > 0) in __receive_buf() 1633 n_tty_receive_buf_standard(tty, cp, fp, la_count, true); in __receive_buf() 1634 if (count > la_count) in __receive_buf() 1635 n_tty_receive_buf_standard(tty, cp, fp, count - la_count, false); in __receive_buf() 1642 ldata->lookahead_count -= la_count; in __receive_buf()
|