Home | History | Annotate | Download | only in adb

Lines Matching refs:tio

205     struct termios tio;
207 if(tcgetattr(fd, &tio)) return;
210 tio.c_lflag = 0; /* disable CANON, ECHO*, etc */
213 tio.c_cc[VTIME] = 0;
214 tio.c_cc[VMIN] = 1;
216 tcsetattr(fd, TCSANOW, &tio);