Home | History | Annotate | Download | only in resize

Lines Matching defs:tio

329     struct termio tio;
331 struct termios tio;
453 tio = tioorig;
454 UIntClr(tio.c_iflag, (ICRNL | IUCLC));
455 UIntClr(tio.c_lflag, (ICANON | ECHO));
456 tio.c_cflag |= CS8;
457 tio.c_cc[VMIN] = 6;
458 tio.c_cc[VTIME] = 1;
461 tio = tioorig;
462 UIntClr(tio.c_iflag, ICRNL);
463 UIntClr(tio.c_lflag, (ICANON | ECHO));
464 tio.c_cflag |= CS8;
465 tio.c_cc[VMIN] = 6;
466 tio.c_cc[VTIME] = 1;
481 rc = ioctl(tty, TCSETAW, &tio);
483 rc = tcsetattr(tty, TCSADRAIN, &tio);