Home | History | Annotate | Download | only in strace

Lines Matching refs:tios

183 	struct termios tios;
212 if (!verbose(tcp) || umove(tcp, arg, &tios) < 0)
217 printxval(baud_options, tios.c_cflag & CBAUD, "B???");
219 printxval(baud_options, tios.c_ispeed, "B???");
220 if (tios.c_ispeed != tios.c_ospeed) {
222 printxval(baud_options, tios.c_ospeed, "B???");
227 (tios.c_oflag & OPOST) ? "" : "-",
228 (tios.c_lflag & ISIG) ? "" : "-",
229 (tios.c_lflag & ICANON) ? "" : "-",
230 (tios.c_lflag & ECHO) ? "" : "-");
234 (long) tios.c_iflag, (long) tios.c_oflag);
236 (long) tios.c_cflag, (long) tios.c_lflag);
238 tprintf("c_line=%u, ", tios.c_line);
240 if (!(tios.c_lflag & ICANON))
242 tios.c_cc[VMIN], tios.c_cc[VTIME]);
245 tprintf("\\x%02x", tios.c_cc[i]);