/external/python/cpython3/Doc/library/ |
D | tty.rst | 23 .. function:: setraw(fd, when=termios.TCSAFLUSH) 26 defaults to :const:`termios.TCSAFLUSH`, and is passed to 30 .. function:: setcbreak(fd, when=termios.TCSAFLUSH) 33 defaults to :const:`termios.TCSAFLUSH`, and is passed to
|
D | termios.rst | 48 or :const:`TCSAFLUSH` to change after transmitting all queued output and
|
/external/toybox/toys/net/ |
D | microcom.c | 32 if (TT.stok) tcsetattr(0, TCSAFLUSH, &TT.old_stdin); 33 tcsetattr(TT.fd, TCSAFLUSH, &TT.old_fd); 52 if (tcsetattr(TT.fd, TCSAFLUSH, &tio)) perror_exit("set speed"); in microcom_main()
|
/external/python/cpython3/Lib/ |
D | tty.py | 18 def setraw(fd, when=TCSAFLUSH): 30 def setcbreak(fd, when=TCSAFLUSH):
|
D | pty.py | 169 tty.tcsetattr(STDIN_FILENO, tty.TCSAFLUSH, mode)
|
D | getpass.py | 72 tcsetattr_flags = termios.TCSAFLUSH
|
/external/python/cpython2/Lib/ |
D | tty.py | 18 def setraw(fd, when=TCSAFLUSH): 30 def setcbreak(fd, when=TCSAFLUSH):
|
D | getpass.py | 66 tcsetattr_flags = termios.TCSAFLUSH
|
D | pty.py | 178 tty.tcsetattr(STDIN_FILENO, tty.TCSAFLUSH, mode)
|
/external/python/cpython2/Doc/library/ |
D | tty.rst | 23 defaults to :const:`termios.TCSAFLUSH`, and is passed to 30 defaults to :const:`termios.TCSAFLUSH`, and is passed to
|
D | termios.rst | 48 or :const:`TCSAFLUSH` to change after transmitting all queued output and
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
D | keyboard.py | 113 termios.tcsetattr(fd, termios.TCSAFLUSH, new_attrs) 117 termios.tcsetattr(fd, termios.TCSAFLUSH, old_attrs)
|
/external/openssh/openbsd-compat/ |
D | readpassphrase.c | 102 (void)tcsetattr(input, TCSAFLUSH|TCSASOFT, &term); in readpassphrase() 155 while (tcsetattr(input, TCSAFLUSH|TCSASOFT, &oterm) == -1 && in readpassphrase()
|
D | bsd-nextstep.c | 67 case TCSAFLUSH: in tcsetattr()
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | termbits.h | 198 #define TCSAFLUSH 2 macro
|
/external/iperf3/src/ |
D | iperf_auth.c | 362 if (tcsetattr (fileno (stream), TCSAFLUSH, &new) != 0) in iperf_getpass() 370 (void) tcsetattr (fileno (stream), TCSAFLUSH, &old); in iperf_getpass()
|
/external/rust/crates/libc/src/unix/solarish/ |
D | compat.rs | 99 if !termp.is_null() && ::tcsetattr(fds, TCSAFLUSH, termp) != 0 { in openpty()
|
/external/curl/src/ |
D | tool_getpass.c | 211 tcsetattr(fd, TCSAFLUSH, &withecho); in ttyecho()
|
/external/libkmsxx/py/tests/ |
D | rottest.py | 171 termios.tcsetattr(fd, termios.TCSAFLUSH, oldterm)
|
/external/python/cpython2/Lib/plat-irix5/ |
D | IOCTL.py | 226 TCSAFLUSH = 2 variable
|
/external/python/cpython2/Lib/plat-irix6/ |
D | IOCTL.py | 226 TCSAFLUSH = 2 variable
|
/external/toybox/lib/ |
D | tty.c | 123 return tcsetattr(fd, TCSAFLUSH, &termio); in set_terminal()
|
/external/rust/crates/libc/src/unix/linux_like/linux/uclibc/mips/ |
D | mod.rs | 211 pub const TCSAFLUSH: ::c_int = 0x5410; constant
|
/external/libcups/cups/ |
D | usersys.c | 831 if (tcsetattr(tty, TCSAFLUSH, &noecho)) in _cupsGetPassword() 926 tcsetattr(tty, TCSAFLUSH, &original); in _cupsGetPassword()
|
/external/bc/src/ |
D | history.c | 471 err = tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw); in bc_history_enableRaw() 490 if (BC_ERR(tcsetattr(STDIN_FILENO, TCSAFLUSH, &h->orig_termios) != -1)) in bc_history_disableRaw()
|