Home | History | Annotate | Download | only in linux

Lines Matching full:termios

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