Lines Matching refs:termios
57 struct termios termios; in test1() local
78 if (ioctl(slavefd, TCGETS, &termios) != 0) { in test1()
82 if (ioctl(slavefd, TCSETS, &termios) != 0) { in test1()
86 if (ioctl(slavefd, TCSETSW, &termios) != 0) { in test1()
90 if (ioctl(slavefd, TCSETSF, &termios) != 0) { in test1()
94 if (ioctl(slavefd, TCSETS, &termios) != 0) { in test1()
383 struct termios termios; in test6() local
404 if (ioctl(slavefd, TCGETS, &termios) != 0) { in test6()
408 termios.c_cflag &= ~CBAUD; in test6()
409 termios.c_cflag |= B0 & CBAUD; in test6()
410 if (ioctl(slavefd, TCSETS, &termios) != 0) { in test6()