Lines Matching refs:termios

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