Lines Matching refs:termios
153 struct ktermios *termios; in jsm_tty_send_xchar() local
156 termios = &port->state->port.tty->termios; in jsm_tty_send_xchar()
157 if (ch == termios->c_cc[VSTART]) in jsm_tty_send_xchar()
160 if (ch == termios->c_cc[VSTOP]) in jsm_tty_send_xchar()
193 struct ktermios *termios; in jsm_tty_open() local
243 termios = &port->state->port.tty->termios; in jsm_tty_open()
244 channel->ch_c_cflag = termios->c_cflag; in jsm_tty_open()
245 channel->ch_c_iflag = termios->c_iflag; in jsm_tty_open()
246 channel->ch_c_oflag = termios->c_oflag; in jsm_tty_open()
247 channel->ch_c_lflag = termios->c_lflag; in jsm_tty_open()
248 channel->ch_startc = termios->c_cc[VSTART]; in jsm_tty_open()
249 channel->ch_stopc = termios->c_cc[VSTOP]; in jsm_tty_open()
300 struct ktermios *termios, in jsm_tty_set_termios() argument
308 channel->ch_c_cflag = termios->c_cflag; in jsm_tty_set_termios()
309 channel->ch_c_iflag = termios->c_iflag; in jsm_tty_set_termios()
310 channel->ch_c_oflag = termios->c_oflag; in jsm_tty_set_termios()
311 channel->ch_c_lflag = termios->c_lflag; in jsm_tty_set_termios()
312 channel->ch_startc = termios->c_cc[VSTART]; in jsm_tty_set_termios()
313 channel->ch_stopc = termios->c_cc[VSTOP]; in jsm_tty_set_termios()