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()
194 struct ktermios *termios; in jsm_tty_open() local
245 termios = &port->state->port.tty->termios; in jsm_tty_open()
246 channel->ch_c_cflag = termios->c_cflag; in jsm_tty_open()
247 channel->ch_c_iflag = termios->c_iflag; in jsm_tty_open()
248 channel->ch_c_oflag = termios->c_oflag; in jsm_tty_open()
249 channel->ch_c_lflag = termios->c_lflag; in jsm_tty_open()
250 channel->ch_startc = termios->c_cc[VSTART]; in jsm_tty_open()
251 channel->ch_stopc = termios->c_cc[VSTOP]; in jsm_tty_open()
303 struct ktermios *termios, in jsm_tty_set_termios() argument
311 channel->ch_c_cflag = termios->c_cflag; in jsm_tty_set_termios()
312 channel->ch_c_iflag = termios->c_iflag; in jsm_tty_set_termios()
313 channel->ch_c_oflag = termios->c_oflag; in jsm_tty_set_termios()
314 channel->ch_c_lflag = termios->c_lflag; in jsm_tty_set_termios()
315 channel->ch_startc = termios->c_cc[VSTART]; in jsm_tty_set_termios()
316 channel->ch_stopc = termios->c_cc[VSTOP]; in jsm_tty_set_termios()