Home | History | Annotate | Download | only in lib

Lines Matching defs:termio

52   struct termios termio;
55 if (!tcgetattr(fd, &termio) && old) *old = termio;
62 termio.c_iflag = IXANY|ICRNL|INLCR;
63 if (toys.which->flags & TOYFLAG_LOCALE) termio.c_iflag |= IUTF8;
66 termio.c_oflag = ONLCR|OPOST;
69 // termio.c_cflag = C_READ|CS8|EXTB;
76 termio.c_lflag = ISIG|ICANON|ECHO|ECHOE|ECHOK|ECHOCTL|ECHOKE|IEXTEN;
78 if (raw) cfmakeraw(&termio);
80 return tcsetattr(fd, TCSANOW, &termio);