Searched refs:ControlCharIndex (Results 1 – 3 of 3) sorted by relevance
/DragonOS/kernel/src/driver/tty/tty_ldisc/ |
H A D | ntty.rs | 12 termios::{ControlCharIndex, InputMode, LocalMode, OutputMode, Termios}, 413 if c == termios.control_characters[ControlCharIndex::VINTR] { in receive_special_char() 418 if c == termios.control_characters[ControlCharIndex::VQUIT] { in receive_special_char() 423 if c == termios.control_characters[ControlCharIndex::VSUSP] { in receive_special_char() 455 if c == termios.control_characters[ControlCharIndex::VERASE] in receive_special_char() 456 || c == termios.control_characters[ControlCharIndex::VKILL] in receive_special_char() 457 || (c == termios.control_characters[ControlCharIndex::VWERASE] in receive_special_char() 464 if c == termios.control_characters[ControlCharIndex::VLNEXT] in receive_special_char() 478 if c == termios.control_characters[ControlCharIndex::VREPRINT] in receive_special_char() 512 if c == termios.control_characters[ControlCharIndex::VEOF] { in receive_special_char() [all …]
|
/DragonOS/kernel/src/driver/tty/pty/ |
H A D | unix98pty.rs | 6 termios::{ControlCharIndex, ControlMode, InputMode, LocalMode, Termios}, 122 && old_termios.control_characters[ControlCharIndex::VSTOP] == 0o023 in set_termios() 123 && old_termios.control_characters[ControlCharIndex::VSTART] == 0o021; in set_termios() 126 && curr_termios.control_characters[ControlCharIndex::VSTOP] == 0o023 in set_termios() 127 && curr_termios.control_characters[ControlCharIndex::VSTART] == 0o021; in set_termios()
|
/DragonOS/kernel/src/driver/tty/ |
H A D | termios.rs | 356 pub struct ControlCharIndex; struct 358 impl ControlCharIndex { implementation
|