Lines Matching refs:termios
161 struct ktermios *termios; in jsm_tty_send_xchar() local
164 termios = &port->state->port.tty->termios; in jsm_tty_send_xchar()
165 if (ch == termios->c_cc[VSTART]) in jsm_tty_send_xchar()
168 if (ch == termios->c_cc[VSTOP]) in jsm_tty_send_xchar()
201 struct ktermios *termios; in jsm_tty_open() local
251 termios = &port->state->port.tty->termios; in jsm_tty_open()
252 channel->ch_c_cflag = termios->c_cflag; in jsm_tty_open()
253 channel->ch_c_iflag = termios->c_iflag; in jsm_tty_open()
254 channel->ch_c_oflag = termios->c_oflag; in jsm_tty_open()
255 channel->ch_c_lflag = termios->c_lflag; in jsm_tty_open()
256 channel->ch_startc = termios->c_cc[VSTART]; in jsm_tty_open()
257 channel->ch_stopc = termios->c_cc[VSTOP]; in jsm_tty_open()
285 ts = &port->state->port.tty->termios; in jsm_tty_close()
310 struct ktermios *termios, in jsm_tty_set_termios() argument
318 channel->ch_c_cflag = termios->c_cflag; in jsm_tty_set_termios()
319 channel->ch_c_iflag = termios->c_iflag; in jsm_tty_set_termios()
320 channel->ch_c_oflag = termios->c_oflag; in jsm_tty_set_termios()
321 channel->ch_c_lflag = termios->c_lflag; in jsm_tty_set_termios()
322 channel->ch_startc = termios->c_cc[VSTART]; in jsm_tty_set_termios()
323 channel->ch_stopc = termios->c_cc[VSTOP]; in jsm_tty_set_termios()