Lines Matching refs:termio
81 struct termios termio;
82 int i = tcgetattr(fd, &termio);
86 if (old) *old = termio;
93 termio.c_iflag = IXANY|ICRNL|INLCR;
94 if (toys.which->flags & TOYFLAG_LOCALE) termio.c_iflag |= IUTF8;
97 termio.c_oflag = ONLCR|OPOST;
100 // termio.c_cflag = C_READ|CS8|EXTB;
107 termio.c_lflag = ISIG|ICANON|ECHO|ECHOE|ECHOK|ECHOCTL|ECHOKE|IEXTEN;
109 if (raw) cfmakeraw(&termio);
120 cfsetspeed(&termio, i+1+4081*(i>15));
123 return tcsetattr(fd, TCSAFLUSH, &termio);