Searched refs:tcgetattr (Results 1 – 25 of 62) sorted by relevance
123
/external/syslinux/com32/libutil/ |
D | ansiraw.c | 56 tcgetattr(0, &original_termios_settings); in console_init() 74 tcgetattr(0, &tio); in console_ansi_raw() 91 tcgetattr(fd, &tio); in raw_read()
|
D | ansiline.c | 55 tcgetattr(0, &original_termios_settings); in console_init() 73 tcgetattr(0, &tio); in console_ansi_std()
|
/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/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/syslinux/com32/rosh/ |
D | rosh.h | 187 tcgetattr(0, &tio); in rosh_console_raw() 200 tcgetattr(0, &tio); in rosh_console_std()
|
/external/compiler-rt/test/msan/Linux/ |
D | tcgetattr.cc | 15 int res = tcgetattr(fd, &t); in main()
|
/external/selinux/policycoreutils/run_init/ |
D | open_init_pty.c | 58 if (tcgetattr(fd, &saved_termios) < 0) { in tty_semi_raw() 238 if (tcgetattr(STDOUT_FILENO, &tty_attr) < 0) { in main() 260 if (tcgetattr(STDIN_FILENO, &s_tty_attr)) { 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/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/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()
|
D | test.c | 86 toys.exitval = tcgetattr(atoi(toys.optargs[1]), &termios) == -1; in test_main()
|
/external/toybox/toys/net/ |
D | microcom.c | 36 if (tcgetattr(fd, &t)) perror_exit("tcgetattr %s", name);
|
/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 | 115 old_attrs = termios.tcgetattr(fd)
|
/external/curl/src/ |
D | tool_getpass.c | 194 tcgetattr(fd, &withecho); in ttyecho()
|
/external/toybox/lib/ |
D | interestingtimes.c | 88 if (!tcgetattr(fd, &termio) && old) *old = termio; in set_terminal()
|
/external/python/cpython2/Modules/ |
D | termios.c | 83 if (tcgetattr(fd, &mode) == -1) in termios_tcgetattr() 164 if (tcgetattr(fd, &mode) == -1) in termios_tcsetattr()
|
123