Home
last modified time | relevance | path

Searched refs:tios (Results 1 – 4 of 4) sorted by relevance

/dragonfly/test/stress/stress2/testcases/pty/
HDpty.c60 struct termios tios; in test() local
96 if (tcgetattr(slave, &tios) < 0) in test()
98 cfmakeraw(&tios); in test()
99 if (tcsetattr(slave, TCSAFLUSH, &tios) < 0) in test()
/dragonfly/usr.sbin/sliplogin/
HDsliplogin.c354 struct termios tios; in main() local
413 if (tcgetattr(0, &tios) < 0) { in main()
417 cfmakeraw(&tios); in main()
418 if (tcsetattr(0, TCSAFLUSH, &tios) < 0) { in main()
422 speed = cfgetispeed(&tios); in main()
/dragonfly/usr.bin/fetch/
HDfetch.c396 struct termios tios; in query_auth() local
411 if (tcgetattr(STDIN_FILENO, &tios) == 0) { in query_auth()
412 saved_flags = tios.c_lflag; in query_auth()
413 tios.c_lflag &= ~ECHO; in query_auth()
414 tios.c_lflag |= ECHONL|ICANON; in query_auth()
415 tcsetattr(STDIN_FILENO, TCSAFLUSH|TCSASOFT, &tios); in query_auth()
417 tios.c_lflag = saved_flags; in query_auth()
418 tcsetattr(STDIN_FILENO, TCSANOW|TCSASOFT, &tios); in query_auth()
/dragonfly/contrib/libedit/src/
HDtty.c1161 struct termios *tios = &el->el_tty.t_ex; in tty_stty() local
1176 tios = &el->el_tty.t_ed; in tty_stty()
1181 tios = &el->el_tty.t_ex; in tty_stty()
1186 tios = &el->el_tty.t_ts; in tty_stty()
1275 tios->c_cc[c] = (cc_t)v; in tty_stty()
1294 tty_setup_flags(el, tios, z); in tty_stty()
1296 if (tty_setty(el, TCSADRAIN, tios) == -1) { in tty_stty()
1335 tty_setup_flags(EditLine *el, struct termios *tios, int mode) in tty_setup_flags() argument
1339 tcflag_t *f = tty__get_flag(tios, kind); in tty_setup_flags()