Home | History | Annotate | Download | only in adb

Lines Matching refs:tio

233     termios tio;
234 if (tcgetattr(STDIN_FILENO, &tio)) return;
236 cfmakeraw(&tio);
239 tio.c_cc[VTIME] = 0;
240 tio.c_cc[VMIN] = 1;
242 tcsetattr(STDIN_FILENO, TCSAFLUSH, &tio);