Lines Matching refs:termio
2386 struct termio termio; in execute_shell() local
2413 if (ioctl(0, TCGETA, &termio) == 0) { in execute_shell()
2415 tty.c_iflag = termio.c_iflag; in execute_shell()
2416 tty.c_oflag = termio.c_oflag; in execute_shell()
2417 tty.c_cflag = termio.c_cflag; in execute_shell()
2418 tty.c_lflag = termio.c_lflag; in execute_shell()
2420 tty.c_cc[i] = termio.c_cc[i]; in execute_shell()
2449 termio.c_iflag = tty.c_iflag; in execute_shell()
2450 termio.c_oflag = tty.c_oflag; in execute_shell()
2451 termio.c_cflag = tty.c_cflag; in execute_shell()
2452 termio.c_lflag = tty.c_lflag; in execute_shell()
2454 termio.c_cc[j] = tty.c_cc[j]; in execute_shell()
2455 (void) ioctl(0, TCSETAW, &termio); in execute_shell()