Home | History | Annotate | Download | only in pty

Lines Matching defs:termios

53  * test termio/termios ioctls
60 struct termios termios;
81 if (ioctl(slavefd, TCGETS, &termios) != 0) {
85 if (ioctl(slavefd, TCSETS, &termios) != 0) {
89 if (ioctl(slavefd, TCSETSW, &termios) != 0) {
93 if (ioctl(slavefd, TCSETSF, &termios) != 0) {
97 if (ioctl(slavefd, TCSETS, &termios) != 0) {
386 struct termios termios;
407 if (ioctl(slavefd, TCGETS, &termios) != 0) {
411 termios.c_cflag &= ~CBAUD;
412 termios.c_cflag |= B0 & CBAUD;
413 if (ioctl(slavefd, TCSETS, &termios) != 0) {