Lines Matching refs:termios
83 struct termios termios; in auto_termio() local
85 if (ioctl(fd, TCGETS, &termios) == -1) { in auto_termio()
106 termios.c_iflag &= 0xffff0000; in auto_termio()
107 termios.c_cflag &= ~(CSIZE|PARENB); in auto_termio()
108 termios.c_cflag |= CREAD|HUPCL|(CS8&CSIZE); in auto_termio()
109 termios.c_lflag &= ~(ISIG|ICANON|ECHO|ECHOE|ECHOK); in auto_termio()
110 termios.c_oflag &= 0xffff0000; in auto_termio()
112 termios.c_cc[VMIN] = 5; in auto_termio()
113 termios.c_cc[VTIME] = 1; in auto_termio()
114 cfsetospeed(&termios, B2400); in auto_termio()
116 if (ioctl(fd, TCSETSF, &termios) == -1) { in auto_termio()