Lines Matching full:termios
13 #include <linux/termios.h>
81 #define INTR_CHAR(tty) ((tty)->termios->c_cc[VINTR])
82 #define QUIT_CHAR(tty) ((tty)->termios->c_cc[VQUIT])
83 #define ERASE_CHAR(tty) ((tty)->termios->c_cc[VERASE])
84 #define KILL_CHAR(tty) ((tty)->termios->c_cc[VKILL])
85 #define EOF_CHAR(tty) ((tty)->termios->c_cc[VEOF])
86 #define TIME_CHAR(tty) ((tty)->termios->c_cc[VTIME])
87 #define MIN_CHAR(tty) ((tty)->termios->c_cc[VMIN])
88 #define SWTC_CHAR(tty) ((tty)->termios->c_cc[VSWTC])
89 #define START_CHAR(tty) ((tty)->termios->c_cc[VSTART])
90 #define STOP_CHAR(tty) ((tty)->termios->c_cc[VSTOP])
91 #define SUSP_CHAR(tty) ((tty)->termios->c_cc[VSUSP])
92 #define EOL_CHAR(tty) ((tty)->termios->c_cc[VEOL])
93 #define REPRINT_CHAR(tty) ((tty)->termios->c_cc[VREPRINT])
94 #define DISCARD_CHAR(tty) ((tty)->termios->c_cc[VDISCARD])
95 #define WERASE_CHAR(tty) ((tty)->termios->c_cc[VWERASE])
96 #define LNEXT_CHAR(tty) ((tty)->termios->c_cc[VLNEXT])
97 #define EOL2_CHAR(tty) ((tty)->termios->c_cc[VEOL2])
99 #define _I_FLAG(tty,f) ((tty)->termios->c_iflag & (f))
100 #define _O_FLAG(tty,f) ((tty)->termios->c_oflag & (f))
101 #define _C_FLAG(tty,f) ((tty)->termios->c_cflag & (f))
102 #define _L_FLAG(tty,f) ((tty)->termios->c_lflag & (f))
165 * is open. Since the termios state should be kept even if the tty
180 struct termios *termios, *termios_locked;
264 extern struct termios tty_std_termios;
301 extern int tty_termios_baud_rate(struct termios *termios);