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

1234

/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/compiler-rt/test/msan/Linux/
H A Dtcgetattr.cc7 #include <termios.h>
14 struct termios t;
/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;
76 struct termios newf;
88 memcpy(&newf, &TT.inf, sizeof(struct termios));
H A Dtest.c85 struct termios termios; local
86 toys.exitval = tcgetattr(atoi(toys.optargs[1]), &termios) == -1;
/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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
H A Dinteractive.py23 # windows does not have termios...
25 import termios namespace
42 oldtty = termios.tcgetattr(sys.stdin)
67 termios.tcsetattr(sys.stdin, termios.TCSADRAIN, oldtty)
/external/kernel-headers/original/uapi/linux/
H A Dtermios.h5 #include <asm/termios.h>
/external/strace/tests/
H A Dioctl.c36 #include <termios.h>
64 struct termios tty;
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A Duserial_linux.c28 #include <termios.h>
951 struct termios termios; local
1075 tcgetattr(linux_cb.sock, &termios);
1077 termios.c_cflag &= ~(CSIZE | PARENB);
1078 termios.c_cflag = CLOCAL|CREAD|data_bits|stop_bits|parity;
1080 termios.c_cflag |= IGNPAR;
1081 // termios.c_cflag &= ~CRTSCTS;
1082 termios.c_oflag = 0;
1083 termios
1295 struct termios termios; local
[all...]
/external/libunwind/src/coredump/
H A D_UCD_lib.h47 #include <termios.h>
/external/e2fsprogs/lib/et/
H A Dcom_err.c16 #include <termios.h>
51 struct termios t;
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
H A Dserialposix.py15 import sys, os, fcntl, termios, struct, select, errno, time namespace
22 TERMIOS = termios
276 done with termios and fcntl. Runs on Linux and many other Un*x like
322 orig_attr = termios.tcgetattr(self.fd)
324 except termios.error, msg: # if a port is nonexistent but has a /dev file, it'll fail here
427 termios.tcsetattr(self.fd, TERMIOS.TCSANOW, [iflag, oflag, cflag, lflag, ispeed, ospeed, cc])
529 termios.tcflush(self.fd, TERMIOS.TCIFLUSH)
535 termios.tcflush(self.fd, TERMIOS.TCOFLUSH)
540 termios.tcsendbreak(self.fd, int(duration/0.25))
601 termios
[all...]
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/
H A Dminiterm.py119 import termios, sys, os namespace
126 self.old = termios.tcgetattr(self.fd)
127 new = termios.tcgetattr(self.fd)
128 new[3] = new[3] & ~termios.ICANON & ~termios.ECHO & ~termios.ISIG
129 new[6][termios.VMIN] = 1
130 new[6][termios.VTIME] = 0
131 termios.tcsetattr(self.fd, termios
[all...]
/external/toybox/lib/
H A Dinterestingtimes.c84 int set_terminal(int fd, int raw, struct termios *old)
86 struct termios termio;
117 void xset_terminal(int fd, int raw, struct termios *old)
/external/libnfc-nxp/Linux_x86/
H A DphDal4Nfc_uart.c35 #include <termios.h>
55 struct termios nIoConfigBackup;
56 struct termios nIoConfig;
194 memset((void *)&gComPortContext.nIoConfig, (int)0, (size_t)sizeof(struct termios));
/external/selinux/policycoreutils/run_init/
H A Dopen_init_pty.c39 #include <termios.h>
49 static struct termios saved_termios;
55 struct termios buf;
202 struct termios tty_attr;
259 struct termios s_tty_attr;
/external/autotest/client/cros/cellular/wardmodem/
H A Dat_channel.py10 import termios namespace
81 except termios.error as ttyerror:
/external/curl/src/
H A Dtool_getpass.c32 # include <termios.h>
177 # define struct_term struct termios
/external/strace/
H A Dterm.c30 * The C library's definition of struct termios might differ from
33 #include <linux/termios.h>
43 struct termios tios;
170 /* struct termios */
/external/autotest/client/common_lib/
H A Dpexpect.py76 import termios namespace
723 attr = termios.tcgetattr(self.child_fd)
724 if attr[3] & termios.ECHO:
760 attr = termios.tcgetattr(self.child_fd)
762 attr[3] = attr[3] | termios.ECHO
764 attr[3] = attr[3] & ~termios.ECHO
767 termios.tcsetattr(self.child_fd, termios.TCSANOW, attr)
1006 #old = termios.tcgetattr(fd) # remember current state
1007 #attr = termios
[all...]
/external/e2fsprogs/e2fsck/
H A Discan.c9 #include <termios.h>
/external/e2fsprogs/misc/
H A De2label.c18 #include <termios.h>

Completed in 1001 milliseconds

1234