Searched defs:termios (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/build/android/
H A Dsurface_stats.py48 import fcntl, termios, struct namespace
52 fcntl.ioctl(0, termios.TIOCGWINSZ,
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dostermios.h10 #include <termios.h>
21 struct termios { struct
35 int tcgetattr(int fd,struct termios *termios_p);
36 int tcsetattr(int fd,int optional_actions,const struct termios *termios_p);
/external/chromium_org/tools/
H A Dsort-headers.py26 import termios namespace
29 old_settings = termios.tcgetattr(fd)
35 termios.tcsetattr(fd, termios.TCSADRAIN, old_settings)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dplatforminfo.py108 import termios namespace
109 packed = fcntl.ioctl(sys.stderr.fileno(), termios.TIOCGWINSZ, '\0' * 8)
/external/compiler-rt/lib/asan/scripts/
H A Dasan_symbolize.py17 import termios namespace
155 attr = termios.tcgetattr(fd)
156 attr[3] = attr[3] & ~termios.ECHO
157 termios.tcsetattr(fd, termios.TCSANOW, attr)
/external/chromium_org/third_party/pexpect/
H A Dpexpect.py78 import termios namespace
766 attr = termios.tcgetattr(self.child_fd)
767 if attr[3] & termios.ECHO:
803 attr = termios.tcgetattr(self.child_fd)
805 attr[3] = attr[3] | termios.ECHO
807 attr[3] = attr[3] & ~termios.ECHO
811 termios.tcsetattr(self.child_fd, termios.TCSANOW, attr)
1059 #old = termios.tcgetattr(fd) # remember current state
1060 #attr = termios
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/sys/
H A Dtermios.h107 struct termios { struct
124 int tcgetattr(int fd, struct termios *termios_p);
125 int tcsetattr(int fd, int optional_actions, const struct termios *termios_p);
/external/e2fsprogs/e2fsck/
H A Dutil.c27 #include <termios.h>
142 struct termios termios, tmp; local
144 tcgetattr (0, &termios);
145 tmp = termios;
165 tcsetattr (0, TCSANOW, &termios);
191 tcsetattr (0, TCSANOW, &termios);
/external/chromium-trace/trace-viewer/third_party/python_gflags/
H A Dgflags.py403 # Importing termios will fail on non-unix platforms.
404 import termios namespace
406 termios = None variable
534 if (not sys.stdout.isatty()) or (termios is None) or (fcntl is None):
537 data = fcntl.ioctl(sys.stdout, termios.TIOCGWINSZ, '1234')
/external/chromium_org/third_party/python_gflags/
H A Dgflags.py403 # Importing termios will fail on non-unix platforms.
404 import termios namespace
406 termios = None variable
534 if (not sys.stdout.isatty()) or (termios is None) or (fcntl is None):
537 data = fcntl.ioctl(sys.stdout, termios.TIOCGWINSZ, '1234')
/external/grub/grub/
H A Dasmstub.c43 #include <termios.h>
1105 struct termios termios; local
1131 /* Get the termios parameters. */
1132 if (tcgetattr (serial_fd, &termios))
1136 cfmakeraw (&termios);
1143 cfsetispeed (&termios, termios_speed);
1144 cfsetospeed (&termios, termios_speed);
1147 termios.c_cflag &= ~CSIZE;
1151 termios
[all...]
/external/kernel-headers/original/asm-arm/
H A Dtermbits.h9 struct termios { struct
/external/kernel-headers/original/asm-mips/
H A Dtermbits.h24 struct termios { struct
/external/kernel-headers/original/asm-x86/
H A Dtermbits.h11 struct termios { struct
/external/kernel-headers/original/linux/
H A Dtty.h13 #include <linux/termios.h>
81 #define INTR_CHAR(tty) ((tty)->termios->c_cc[VINTR])
82 #define QUIT_CHAR(tty) ((tty)->termios->c_cc[VQUIT])
83 #define ERASE_CHAR(tty) ((tty)->termios->c_cc[VERASE])
84 #define KILL_CHAR(tty) ((tty)->termios->c_cc[VKILL])
85 #define EOF_CHAR(tty) ((tty)->termios->c_cc[VEOF])
86 #define TIME_CHAR(tty) ((tty)->termios->c_cc[VTIME])
87 #define MIN_CHAR(tty) ((tty)->termios->c_cc[VMIN])
88 #define SWTC_CHAR(tty) ((tty)->termios->c_cc[VSWTC])
89 #define START_CHAR(tty) ((tty)->termios
180 struct termios *termios, *termios_locked; member in struct:tty_struct
[all...]
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A Duserial_linux.c28 #include <termios.h>
898 struct termios termios; local
1020 tcgetattr(linux_cb.sock, &termios);
1022 termios.c_cflag &= ~(CSIZE | PARENB);
1023 termios.c_cflag = CLOCAL|CREAD|data_bits|stop_bits|parity;
1025 termios.c_cflag |= IGNPAR;
1026 // termios.c_cflag &= ~CRTSCTS;
1027 termios.c_oflag = 0;
1028 termios
1240 struct termios termios; local
[all...]

Completed in 6843 milliseconds