Home | History | Annotate | Download | only in jni

Lines Matching defs:tio

144     struct termios tio;
145 if (tcgetattr(fd, &tio))
146 memset(&tio, 0, sizeof(tio));
148 tio.c_cflag = speed | CS8 | CLOCAL | CREAD;
150 tio.c_oflag &= ~OPOST;
151 tio.c_iflag = IGNPAR;
152 tio.c_lflag = 0; /* turn of CANON, ECHO*, etc */
154 tio.c_cc[VTIME] = 0;
155 tio.c_cc[VMIN] = 1;
156 tcsetattr(fd, TCSANOW, &tio);