Lines Matching defs:termios
28 #include <termios.h>
50 * test termio/termios ioctls
57 struct termios termios;
78 if (ioctl(slavefd, TCGETS, &termios) != 0) {
82 if (ioctl(slavefd, TCSETS, &termios) != 0) {
86 if (ioctl(slavefd, TCSETSW, &termios) != 0) {
90 if (ioctl(slavefd, TCSETSF, &termios) != 0) {
94 if (ioctl(slavefd, TCSETS, &termios) != 0) {
383 struct termios termios;
404 if (ioctl(slavefd, TCGETS, &termios) != 0) {
408 termios.c_cflag &= ~CBAUD;
409 termios.c_cflag |= B0 & CBAUD;
410 if (ioctl(slavefd, TCSETS, &termios) != 0) {