Searched refs:tio (Results 1 - 6 of 6) sorted by relevance

/seL4-test-master/projects/musllibc/src/termios/
H A Dcfgetospeed.c5 speed_t cfgetospeed(const struct termios *tio) argument
7 return tio->c_cflag & CBAUD;
10 speed_t cfgetispeed(const struct termios *tio) argument
12 return cfgetospeed(tio);
H A Dtcgetattr.c4 int tcgetattr(int fd, struct termios *tio) argument
6 if (ioctl(fd, TCGETS, tio))
H A Dcfsetospeed.c7 int cfsetospeed(struct termios *tio, speed_t speed) argument
13 tio->c_cflag &= ~CBAUD;
14 tio->c_cflag |= speed;
18 int cfsetispeed(struct termios *tio, speed_t speed) argument
20 return speed ? cfsetospeed(tio, speed) : 0;
H A Dtcsetattr.c5 int tcsetattr(int fd, int act, const struct termios *tio) argument
11 return ioctl(fd, TCSETS+act, tio);
/seL4-test-master/projects/musllibc/src/misc/
H A Dopenpty.c10 int openpty(int *pm, int *ps, char *name, const struct termios *tio, const struct winsize *ws) argument
28 if (tio) tcsetattr(s, TCSANOW, tio);
H A Dforkpty.c9 int forkpty(int *pm, char *name, const struct termios *tio, const struct winsize *ws) argument
15 if (openpty(&m, &s, name, tio, ws) < 0) return -1;

Completed in 80 milliseconds