Lines Matching defs:tio
56 struct termios tio;
82 memset(&tio, 0, sizeof tio);
83 if (tcgetattr(vhd->filefd, &tio)) {
89 cfsetispeed(&tio, B115200);
90 cfsetospeed(&tio, B115200);
92 tio.c_lflag &= (tcflag_t)~(ISIG | ICANON | IEXTEN | ECHO |
97 tio.c_iflag &= (tcflag_t)~(INLCR | IGNBRK | IGNPAR | IGNCR | ICRNL |
103 tio.c_oflag = 0;
105 tio.c_cc[VMIN] = 1;
106 tio.c_cc[VTIME] = 0;
107 tio.c_cc[VEOF] = 1;
108 tio.c_cflag = tio.c_cflag & (unsigned long) ~(
117 tio.c_cflag |= 0x1412 | CS8 | CREAD | CLOCAL;
119 tcsetattr(vhd->filefd, TCSANOW, &tio);