Home
last modified time | relevance | path

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

/Linux-v6.1/drivers/tty/
Dn_tty.c1598 size_t la_count = min_t(size_t, ldata->lookahead_count, count); in __receive_buf() local
1605 if (la_count > 0) in __receive_buf()
1606 n_tty_receive_buf_closing(tty, cp, fp, la_count, true); in __receive_buf()
1607 if (count > la_count) in __receive_buf()
1608 n_tty_receive_buf_closing(tty, cp, fp, count - la_count, false); in __receive_buf()
1610 if (la_count > 0) in __receive_buf()
1611 n_tty_receive_buf_standard(tty, cp, fp, la_count, true); in __receive_buf()
1612 if (count > la_count) in __receive_buf()
1613 n_tty_receive_buf_standard(tty, cp, fp, count - la_count, false); in __receive_buf()
1620 ldata->lookahead_count -= la_count; in __receive_buf()