Searched refs:termios (Results 1 - 25 of 108) sorted by relevance

12345

/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dtermios.h1 #include <asm-generic/termios.h>
/external/kernel-headers/original/uapi/asm-arm64/asm/
H A Dtermios.h1 #include <asm-generic/termios.h>
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dtermios.h1 #include <asm-generic/termios.h>
/external/openssh/openbsd-compat/
H A Dbsd-nextstep.h49 int tcgetattr(int, struct termios *);
50 int tcsetattr(int, int, const struct termios *);
52 speed_t cfgetospeed(const struct termios *);
53 speed_t cfgetispeed(const struct termios *);
54 int cfsetospeed(struct termios *, int);
55 int cfsetispeed(struct termios *, int);
H A Dbsd-nextstep.c47 tcgetattr(int fd, struct termios *t)
53 tcsetattr(int fd, int opt, const struct termios *t)
55 struct termios localterm;
80 speed_t cfgetospeed(const struct termios *t)
85 speed_t cfgetispeed(const struct termios *t)
91 cfsetospeed(struct termios *t,int speed)
98 cfsetispeed(struct termios *t, int speed)
/external/openssh/
H A Dsshpty.h17 #include <termios.h>
19 struct termios *get_saved_tio(void);
H A Dclientloop.h38 #include <termios.h>
45 void client_session2_setup(int, int, int, const char *, struct termios *,
H A Dsshtty.c42 #include <termios.h>
47 static struct termios _saved_tio;
50 struct termios *
71 struct termios tio;
/external/compiler-rt/test/msan/Linux/
H A Dtcgetattr.cc7 #include <termios.h>
14 struct termios t;
/external/python/cpython2/Lib/
H A Dgetpass.py63 old = termios.tcgetattr(fd) # a copy to save
65 new[3] &= ~termios.ECHO # 3 == 'lflags'
66 tcsetattr_flags = termios.TCSAFLUSH
67 if hasattr(termios, 'TCSASOFT'):
68 tcsetattr_flags |= termios.TCSASOFT
70 termios.tcsetattr(fd, tcsetattr_flags, new)
73 termios.tcsetattr(fd, tcsetattr_flags, old)
75 except termios.error, e:
162 import termios namespace
163 # it's possible there is an incompatible termios fro
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_ioctl.py6 termios = import_module('termios') variable
7 get_attribute(termios, 'TIOCGPGRP') #Can't run tests without this feature
15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
51 r = fcntl.ioctl(tty, termios.TIOCGPGRP, buf, 1)
73 if termios.TIOCSWINSZ < 0:
74 set_winsz_opcode_maybe_neg = termios.TIOCSWINSZ
75 set_winsz_opcode_pos = termios.TIOCSWINSZ & 0xffffffffL
77 set_winsz_opcode_pos = termios
[all...]
/external/toybox/toys/pending/
H A Dgetty.c42 struct termios termios;
149 if (tcgetattr(STDIN_FILENO, &TT.termios) < 0) perror_exit("tcgetattr");
152 TT.termios.c_cflag &= (0|CSTOPB|PARENB|PARODD);
154 if (toys.optflags & FLAG_h) TT.termios.c_cflag |= CRTSCTS;
156 if (toys.optflags & FLAG_L) TT.termios.c_cflag |= CLOCAL;
157 TT.termios.c_cc[VTIME] = 0;
158 TT.termios.c_cc[VMIN] = 1;
159 TT.termios.c_oflag = OPOST|ONLCR;
160 TT.termios
[all...]
H A Dmore.c22 struct termios inf;
79 struct termios newf;
91 memcpy(&newf, &TT.inf, sizeof(struct termios));
/external/syslinux/com32/libutil/
H A Dansiline.c49 #include <termios.h>
51 static struct termios original_termios_settings;
65 struct termios tio;
72 /* Set the termios flag so we behave the same as libcom32 */
H A Dansiraw.c49 #include <termios.h>
52 static struct termios original_termios_settings;
66 struct termios tio;
73 /* Set the termios flag so we behave the same as libcom32 */
88 struct termios tio, rtio;
/external/autotest/client/site_tests/firmware_TouchMTB/
H A Dcommon_util.py11 import termios namespace
47 old_attrs = termios.tcgetattr(fin)
54 termios.tcsetattr(fin, termios.TCSADRAIN, old_attrs)
/external/kernel-headers/original/uapi/linux/
H A Dtermios.h5 #include <asm/termios.h>
/external/chromium-trace/catapult/devil/devil/android/tools/
H A Dkeyboard.py12 import termios namespace
114 # See man 3 termios for more info on what this is doing.
115 old_attrs = termios.tcgetattr(fd)
117 new_attrs[tty.LFLAG] = new_attrs[tty.LFLAG] & ~(termios.ICANON)
120 termios.tcsetattr(fd, termios.TCSAFLUSH, new_attrs)
124 termios.tcsetattr(fd, termios.TCSAFLUSH, old_attrs)
/external/ltp/testcases/kernel/pty/
H A Dptem01.c52 * test termio/termios ioctls
59 struct termios termios; local
83 if (ioctl(slavefd, TCGETS, &termios) != 0) {
87 if (ioctl(slavefd, TCSETS, &termios) != 0) {
91 if (ioctl(slavefd, TCSETSW, &termios) != 0) {
95 if (ioctl(slavefd, TCSETSF, &termios) != 0) {
99 if (ioctl(slavefd, TCSETS, &termios) != 0) {
397 struct termios termios; local
[all...]
/external/toybox/toys/net/
H A Dmicrocom.c26 struct termios original_stdin_state, original_fd_state;
32 struct termios *original)
34 struct termios t;
/external/strace/tests/
H A Dioctl.c34 #include <termios.h>
62 struct termios tty;
/external/strace/tests-m32/
H A Dioctl.c34 #include <termios.h>
62 struct termios tty;
/external/strace/tests-mx32/
H A Dioctl.c34 #include <termios.h>
62 struct termios tty;
/external/libunwind/src/coredump/
H A D_UCD_lib.h47 #include <termios.h>
/external/e2fsprogs/lib/et/
H A Dcom_err.c17 #include <termios.h>
52 struct termios t;

Completed in 752 milliseconds

12345