Lines Matching refs:termios
106 #define INTR_CHAR(tty) ((tty)->termios.c_cc[VINTR])
107 #define QUIT_CHAR(tty) ((tty)->termios.c_cc[VQUIT])
108 #define ERASE_CHAR(tty) ((tty)->termios.c_cc[VERASE])
109 #define KILL_CHAR(tty) ((tty)->termios.c_cc[VKILL])
110 #define EOF_CHAR(tty) ((tty)->termios.c_cc[VEOF])
111 #define TIME_CHAR(tty) ((tty)->termios.c_cc[VTIME])
112 #define MIN_CHAR(tty) ((tty)->termios.c_cc[VMIN])
113 #define SWTC_CHAR(tty) ((tty)->termios.c_cc[VSWTC])
114 #define START_CHAR(tty) ((tty)->termios.c_cc[VSTART])
115 #define STOP_CHAR(tty) ((tty)->termios.c_cc[VSTOP])
116 #define SUSP_CHAR(tty) ((tty)->termios.c_cc[VSUSP])
117 #define EOL_CHAR(tty) ((tty)->termios.c_cc[VEOL])
118 #define REPRINT_CHAR(tty) ((tty)->termios.c_cc[VREPRINT])
119 #define DISCARD_CHAR(tty) ((tty)->termios.c_cc[VDISCARD])
120 #define WERASE_CHAR(tty) ((tty)->termios.c_cc[VWERASE])
121 #define LNEXT_CHAR(tty) ((tty)->termios.c_cc[VLNEXT])
122 #define EOL2_CHAR(tty) ((tty)->termios.c_cc[VEOL2])
124 #define _I_FLAG(tty, f) ((tty)->termios.c_iflag & (f))
125 #define _O_FLAG(tty, f) ((tty)->termios.c_oflag & (f))
126 #define _C_FLAG(tty, f) ((tty)->termios.c_cflag & (f))
127 #define _L_FLAG(tty, f) ((tty)->termios.c_lflag & (f))
303 struct ktermios termios, termios_locked; member
515 extern speed_t tty_termios_baud_rate(struct ktermios *termios);
516 extern speed_t tty_termios_input_baud_rate(struct ktermios *termios);
517 extern void tty_termios_encode_baud_rate(struct ktermios *termios,
534 return tty_termios_baud_rate(&tty->termios); in tty_get_baud_rate()