Lines Matching defs:tio
220 struct termios tio;222 if(tcgetattr(fd, &tio)) return;225 tio.c_lflag = 0; /* disable CANON, ECHO*, etc */228 tio.c_cc[VTIME] = 0;229 tio.c_cc[VMIN] = 1;231 tcsetattr(fd, TCSANOW, &tio);