Home
last modified time | relevance | path

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

/DragonOS/kernel/src/driver/tty/tty_ldisc/
H A Dntty.rs247 let look_ahead = self.lookahead_count.min(count); in receive_buf() localVariable
255 if look_ahead > 0 { in receive_buf()
256 self.receive_buf_standard(tty.clone(), buf, flags, look_ahead, true); in receive_buf()
259 if count > look_ahead { in receive_buf()
260 self.receive_buf_standard(tty.clone(), buf, flags, count - look_ahead, false); in receive_buf()
269 self.lookahead_count -= look_ahead; in receive_buf()