Searched refs:tcgetattr (Results 1 – 25 of 73) sorted by relevance
123
/external/python/cpython2/Doc/library/ |
D | termios.rst | 31 .. function:: tcgetattr(fd) 45 a list like the one returned by :func:`tcgetattr`. The *when* argument 89 technique using a separate :func:`tcgetattr` call and a :keyword:`try` ... 96 old = termios.tcgetattr(fd) 97 new = termios.tcgetattr(fd)
|
/external/python/cpython3/Doc/library/ |
D | termios.rst | 31 .. function:: tcgetattr(fd) 45 a list like the one returned by :func:`tcgetattr`. The *when* argument 89 technique using a separate :func:`tcgetattr` call and a :keyword:`try` ... 96 old = termios.tcgetattr(fd) 97 new = termios.tcgetattr(fd)
|
/external/python/cpython2/Lib/ |
D | tty.py | 20 mode = tcgetattr(fd) 32 mode = tcgetattr(fd)
|
D | getpass.py | 63 old = termios.tcgetattr(fd) # a copy to save 165 termios.tcgetattr, termios.tcsetattr
|
D | pty.py | 169 mode = tty.tcgetattr(STDIN_FILENO)
|
/external/python/cpython3/Lib/ |
D | tty.py | 20 mode = tcgetattr(fd) 32 mode = tcgetattr(fd)
|
D | getpass.py | 69 old = termios.tcgetattr(fd) # a copy to save 176 termios.tcgetattr, termios.tcsetattr
|
D | pty.py | 158 mode = tty.tcgetattr(STDIN_FILENO)
|
/external/selinux/policycoreutils/run_init/ |
D | open_init_pty.c | 58 if (tcgetattr(fd, &saved_termios) < 0) { in tty_semi_raw() 260 if (tcgetattr(STDOUT_FILENO, &tty_attr) < 0) { in main() 282 if (tcgetattr(STDIN_FILENO, &s_tty_attr)) { in main()
|
/external/openssh/ |
D | ttymodes.c | 304 if (tcgetattr(fd, &tio) == -1) { in tty_make_modes() 373 if (tcgetattr(fd, &tio) == -1) { in tty_parse_modes()
|
D | sshtty.c | 73 if (tcgetattr(fileno(stdin), &tio) == -1) { in enter_raw_mode()
|
/external/python/cpython3/Lib/test/ |
D | test_getpass.py | 115 mock.patch('termios.tcgetattr') as tcgetattr, \ 119 tcgetattr.return_value = list(fake_attrs)
|
/external/compiler-rt/test/msan/Linux/ |
D | tcgetattr.cc | 15 int res = tcgetattr(fd, &t); in main()
|
/external/openssh/openbsd-compat/ |
D | bsd-nextstep.h | 49 int tcgetattr(int, struct termios *);
|
D | bsd-nextstep.c | 47 tcgetattr(int fd, struct termios *t) in tcgetattr() function
|
D | bsd-openpty.c | 208 if (tcgetattr(*amaster, &tio) != -1) { in openpty()
|
/external/ltp/testcases/kernel/pty/ |
D | pty02.c | 43 if (tcgetattr(ptmx, &io) != 0) in do_test()
|
/external/autotest/client/site_tests/firmware_TouchMTB/ |
D | common_util.py | 47 old_attrs = termios.tcgetattr(fin)
|
/external/e2fsprogs/lib/et/ |
D | com_err.c | 54 if ((tcgetattr(fd, &t)) == 0 && in default_com_err_proc()
|
/external/toybox/toys/pending/ |
D | sulogin.c | 47 tcgetattr(0, &(TT.crntio)); in validate_password()
|
D | more.c | 88 tcgetattr(TT.cin_fd, &TT.inf); in more_main()
|
/external/ltp/testcases/cve/ |
D | cve-2014-0196.c | 112 tcgetattr(master_fd, &t); in run()
|
/external/autotest/client/common_lib/ |
D | pexpect.py | 723 attr = termios.tcgetattr(self.child_fd) 760 attr = termios.tcgetattr(self.child_fd) 1019 char = termios.tcgetattr(self.child_fd)[6][termios.VEOF] 1031 char = termios.tcgetattr(self.child_fd)[6][termios.VINTR] 1489 mode = tty.tcgetattr(self.STDIN_FILENO)
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
D | keyboard.py | 110 old_attrs = termios.tcgetattr(fd)
|
/external/curl/src/ |
D | tool_getpass.c | 198 tcgetattr(fd, &withecho); in ttyecho()
|
123