Home
last modified time | relevance | path

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

/DragonOS/kernel/src/driver/tty/
H A Dtermios.rs34 pub control_characters: [u8; CONTORL_CHARACTER_NUM], field
59 c_cc: termios.control_characters, in from_kernel_termios()
74 control_characters: self.c_cc, in to_kernel_termios()
140 control_characters: INIT_CONTORL_CHARACTERS,
/DragonOS/kernel/src/driver/tty/tty_ldisc/
H A Dntty.rs413 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()
525 if c == termios.control_characters[ControlCharIndex::VEOL] in receive_special_char()
[all …]
/DragonOS/kernel/src/driver/tty/pty/
H A Dunix98pty.rs122 && 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()