Searched refs:termios_p (Results 1 – 4 of 4) sorted by relevance
/termios/ |
A D | speed.c | 25 cfgetospeed (const struct termios *termios_p) in cfgetospeed() argument 27 return termios_p->__ospeed; in cfgetospeed() 32 cfgetispeed (const struct termios *termios_p) in cfgetispeed() argument 34 return termios_p->__ispeed; in cfgetispeed() 39 cfsetospeed (struct termios *termios_p, speed_t speed) in cfsetospeed() argument 41 if (termios_p == NULL) in cfsetospeed() 47 termios_p->__ospeed = speed; in cfsetospeed() 54 cfsetispeed (struct termios *termios_p, speed_t speed) in libc_hidden_def() 56 if (termios_p == NULL) in libc_hidden_def() 62 termios_p->__ispeed = speed; in libc_hidden_def()
|
A D | tcsetattr.c | 26 tcsetattr (int fd, int optional_actions, const struct termios *termios_p) in tcsetattr() argument 33 if (termios_p == NULL) in tcsetattr() 49 if (bad_speed(termios_p->__ospeed) in tcsetattr() 50 || bad_speed(termios_p->__ispeed == 0 in tcsetattr() 51 ? termios_p->__ospeed : termios_p->__ispeed)) in tcsetattr()
|
A D | tcgetattr.c | 24 __tcgetattr (int fd, struct termios *termios_p) in __tcgetattr() argument 31 if (termios_p == NULL) in __tcgetattr()
|
A D | cfsetspeed.c | 140 cfsetspeed (struct termios *termios_p, speed_t speed) in cfsetspeed() argument 147 cfsetispeed (termios_p, speed); in cfsetspeed() 148 cfsetospeed (termios_p, speed); in cfsetspeed() 153 cfsetispeed (termios_p, speeds[cnt].internal); in cfsetspeed() 154 cfsetospeed (termios_p, speeds[cnt].internal); in cfsetspeed()
|
Completed in 6 milliseconds