Lines Matching refs:termios
60 struct termios termios; in test1() local
81 if (ioctl(slavefd, TCGETS, &termios) != 0) { in test1()
85 if (ioctl(slavefd, TCSETS, &termios) != 0) { in test1()
89 if (ioctl(slavefd, TCSETSW, &termios) != 0) { in test1()
93 if (ioctl(slavefd, TCSETSF, &termios) != 0) { in test1()
97 if (ioctl(slavefd, TCSETS, &termios) != 0) { in test1()
386 struct termios termios; in test6() local
407 if (ioctl(slavefd, TCGETS, &termios) != 0) { in test6()
411 termios.c_cflag &= ~CBAUD; in test6()
412 termios.c_cflag |= B0 & CBAUD; in test6()
413 if (ioctl(slavefd, TCSETS, &termios) != 0) { in test6()