Lines Matching refs:termios
59 struct termios termios; in test1() local
83 if (ioctl(slavefd, TCGETS, &termios) != 0) { in test1()
87 if (ioctl(slavefd, TCSETS, &termios) != 0) { in test1()
91 if (ioctl(slavefd, TCSETSW, &termios) != 0) { in test1()
95 if (ioctl(slavefd, TCSETSF, &termios) != 0) { in test1()
99 if (ioctl(slavefd, TCSETS, &termios) != 0) { in test1()
397 struct termios termios; in test6() local
421 if (ioctl(slavefd, TCGETS, &termios) != 0) { in test6()
425 termios.c_cflag &= ~CBAUD; in test6()
426 termios.c_cflag |= B0 & CBAUD; in test6()
427 if (ioctl(slavefd, TCSETS, &termios) != 0) { in test6()