Lines Matching refs:termios_p
37 cfgetospeed (const struct termios *termios_p) in cfgetospeed() argument
39 return termios_p->c_cflag & (CBAUD | CBAUDEX); in cfgetospeed()
47 cfgetispeed (const struct termios *termios_p) in cfgetispeed() argument
49 return ((termios_p->c_iflag & IBAUD0) in cfgetispeed()
50 ? 0 : termios_p->c_cflag & (CBAUD | CBAUDEX)); in cfgetispeed()
55 cfsetospeed (struct termios *termios_p, speed_t speed) in cfsetospeed() argument
62 termios_p->c_ospeed = speed; in cfsetospeed()
64 termios_p->c_cflag &= ~(CBAUD | CBAUDEX); in cfsetospeed()
65 termios_p->c_cflag |= speed; in cfsetospeed()
77 cfsetispeed (struct termios *termios_p, speed_t speed) in libc_hidden_def()
84 termios_p->c_ispeed = speed; in libc_hidden_def()
87 termios_p->c_iflag |= IBAUD0; in libc_hidden_def()
90 termios_p->c_iflag &= ~IBAUD0; in libc_hidden_def()
91 termios_p->c_cflag &= ~(CBAUD | CBAUDEX); in libc_hidden_def()
92 termios_p->c_cflag |= speed; in libc_hidden_def()