Searched defs:tio (Results 1 - 4 of 4) sorted by relevance

/external/syslinux/com32/libutil/
H A Dansiline.c65 struct termios tio; local
73 tcgetattr(0, &tio);
74 tio.c_iflag &= ~ICRNL;
75 tio.c_iflag |= IGNCR;
76 tio.c_lflag |= ICANON | ECHO;
77 if (!tio.c_oflag & OPOST)
78 tio.c_oflag = 0;
79 tio.c_oflag |= OPOST | ONLCR;
80 tcsetattr(0, TCSANOW, &tio);
H A Dansiraw.c66 struct termios tio; local
74 tcgetattr(0, &tio);
75 tio.c_iflag &= ~ICRNL;
76 tio.c_iflag |= IGNCR;
77 tio.c_lflag &= ~(ISIG | ICANON | ECHO);
78 if (!tio.c_oflag & OPOST)
79 tio.c_oflag = 0;
80 tio.c_oflag |= OPOST | ONLCR;
81 tio.c_cc[VMIN] = 0;
82 tio
88 struct termios tio, rtio; local
[all...]
/external/strace/
H A Dterm.c75 struct termio tio; local
79 if (umove_or_printaddr(tcp, addr, &tio))
83 printxval(baud_options, tio.c_cflag & CBAUD, "B???");
85 (tio.c_oflag & OPOST) ? "" : "-",
86 (tio.c_lflag & ISIG) ? "" : "-",
87 (tio.c_lflag & ICANON) ? "" : "-",
88 (tio.c_lflag & ECHO) ? "" : "-");
92 (long) tio.c_iflag, (long) tio.c_oflag);
94 (long) tio
[all...]
/external/syslinux/com32/rosh/
H A Drosh.h182 struct termios tio; local
187 tcgetattr(0, &tio);
188 tio.c_iflag &= ~IGNCR;
189 tcsetattr(0, TCSAFLUSH, &tio);
197 struct termios tio; local
200 tcgetattr(0, &tio);
201 tio.c_iflag |= ICRNL;
202 tio.c_iflag &= ~IGNCR;
203 tcsetattr(0, TCSANOW, &tio);

Completed in 543 milliseconds