/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
termios.h | 3 #include <termios.h>
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
termios.h | 3 #include <termios.h>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
termios.h | 3 #include <termios.h>
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
termio.h | 2 This is obsolete; use the POSIX.1 `struct termios' interface 3 defined in <termios.h> instead. */ 5 #include <termios.h>
|
termios.h | 20 * POSIX Standard: 7.1-2 General Terminal Interface <termios.h> 38 /* Get the system-dependent definitions of `struct termios', `tcflag_t', 40 #include <bits/termios.h> 44 `struct termios'. If VAL is _POSIX_VDISABLE, no character can match it. */ 49 extern speed_t cfgetospeed (__const struct termios *__termios_p) __THROW; 52 extern speed_t cfgetispeed (__const struct termios *__termios_p) __THROW; 55 extern int cfsetospeed (struct termios *__termios_p, speed_t __speed) __THROW; 58 extern int cfsetispeed (struct termios *__termios_p, speed_t __speed) __THROW; 62 extern int cfsetspeed (struct termios *__termios_p, speed_t __speed) __THROW; 67 extern int tcgetattr (int __fd, struct termios *__termios_p) __THROW [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
termio.h | 2 This is obsolete; use the POSIX.1 `struct termios' interface 3 defined in <termios.h> instead. */ 5 #include <termios.h>
|
termios.h | 20 * POSIX Standard: 7.1-2 General Terminal Interface <termios.h> 38 /* Get the system-dependent definitions of `struct termios', `tcflag_t', 40 #include <bits/termios.h> 44 `struct termios'. If VAL is _POSIX_VDISABLE, no character can match it. */ 49 extern speed_t cfgetospeed (__const struct termios *__termios_p) __THROW; 52 extern speed_t cfgetispeed (__const struct termios *__termios_p) __THROW; 55 extern int cfsetospeed (struct termios *__termios_p, speed_t __speed) __THROW; 58 extern int cfsetispeed (struct termios *__termios_p, speed_t __speed) __THROW; 62 extern int cfsetspeed (struct termios *__termios_p, speed_t __speed) __THROW; 67 extern int tcgetattr (int __fd, struct termios *__termios_p) __THROW [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
termio.h | 2 This is obsolete; use the POSIX.1 `struct termios' interface 3 defined in <termios.h> instead. */ 5 #include <termios.h>
|
termios.h | 20 * POSIX Standard: 7.1-2 General Terminal Interface <termios.h> 38 /* Get the system-dependent definitions of `struct termios', `tcflag_t', 40 #include <bits/termios.h> 44 `struct termios'. If VAL is _POSIX_VDISABLE, no character can match it. */ 49 extern speed_t cfgetospeed (__const struct termios *__termios_p) __THROW; 52 extern speed_t cfgetispeed (__const struct termios *__termios_p) __THROW; 55 extern int cfsetospeed (struct termios *__termios_p, speed_t __speed) __THROW; 58 extern int cfsetispeed (struct termios *__termios_p, speed_t __speed) __THROW; 62 extern int cfsetspeed (struct termios *__termios_p, speed_t __speed) __THROW; 67 extern int tcgetattr (int __fd, struct termios *__termios_p) __THROW [all...] |
/external/kernel-headers/original/linux/ |
termios.h | 5 #include <asm/termios.h>
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
termios.h | 5 #include <asm/termios.h>
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
termios.h | 5 #include <asm/termios.h>
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
termios.h | 5 #include <asm/termios.h>
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
ostermios.h | 17 struct termios { struct 31 int tcgetattr(int fd,struct termios *termios_p); 32 int tcsetattr(int fd,int optional_actions,const struct termios *termios_p); 38 #include <termios.h>
|
/external/kernel-headers/original/asm-mips/ |
termios.h | 95 * Translate a "termio" structure into a "termios". Ugh. 97 #define user_termio_to_kernel_termios(termios, termio) \ 101 (termios)->c_iflag = (0xffff0000 & ((termios)->c_iflag)) | tmp; \ 103 (termios)->c_oflag = (0xffff0000 & ((termios)->c_oflag)) | tmp; \ 105 (termios)->c_cflag = (0xffff0000 & ((termios)->c_cflag)) | tmp; \ 107 (termios)->c_lflag = (0xffff0000 & ((termios)->c_lflag)) | tmp; [all...] |
/external/kernel-headers/original/asm-arm/ |
termios.h | 73 * Translate a "termio" structure into a "termios". Ugh. 75 #define SET_LOW_TERMIOS_BITS(termios, termio, x) { \ 78 *(unsigned short *) &(termios)->x = __tmp; \ 81 #define user_termio_to_kernel_termios(termios, termio) \ 83 SET_LOW_TERMIOS_BITS(termios, termio, c_iflag); \ 84 SET_LOW_TERMIOS_BITS(termios, termio, c_oflag); \ 85 SET_LOW_TERMIOS_BITS(termios, termio, c_cflag); \ 86 SET_LOW_TERMIOS_BITS(termios, termio, c_lflag); \ 87 copy_from_user((termios)->c_cc, (termio)->c_cc, NCC); \ 91 * Translate a "termios" structure into a "termio". Ugh [all...] |
/external/kernel-headers/original/asm-x86/ |
termios.h | 88 * Translate a "termio" structure into a "termios". Ugh. 90 #define SET_LOW_TERMIOS_BITS(termios, termio, x) { \ 93 *(unsigned short *) &(termios)->x = __tmp; \ 96 #define user_termio_to_kernel_termios(termios, termio) \ 98 SET_LOW_TERMIOS_BITS(termios, termio, c_iflag); \ 99 SET_LOW_TERMIOS_BITS(termios, termio, c_oflag); \ 100 SET_LOW_TERMIOS_BITS(termios, termio, c_cflag); \ 101 SET_LOW_TERMIOS_BITS(termios, termio, c_lflag); \ 102 copy_from_user((termios)->c_cc, (termio)->c_cc, NCC); \ 106 * Translate a "termios" structure into a "termio". Ugh [all...] |
/external/compiler-rt/lib/msan/lit_tests/Linux/ |
tcgetattr.cc | 7 #include <termios.h> 14 struct termios t;
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/include/sys/ |
termios.h | 112 struct termios { struct 128 speed_t cfgetispeed(const struct termios *termios_p); 129 speed_t cfgetospeed(const struct termios *termios_p); 130 int cfsetispeed(struct termios *termios_p, speed_t speed); 131 int cfsetospeed(struct termios *termios_p, speed_t speed); 132 int cfsetspeed(struct termios *termios_p, speed_t speed); 137 int tcgetattr(int fd, struct termios *termios_p); 139 int tcsetattr(int fd, int optional_actions, const struct termios *termios_p);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_ioctl.py | 6 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.TIOCSWINS [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_ioctl.py | 6 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.TIOCSWINS [all...] |
/development/ndk/platforms/android-3/include/linux/ |
termios.h | 16 #include <asm/termios.h>
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/ |
cfgetispeed.c | 8 speed_t cfgetispeed(const struct termios *termios_p) {
|
cfgetospeed.c | 8 speed_t cfgetospeed(const struct termios *termios_p) {
|
cfsetispeed.c | 8 int cfsetispeed(struct termios *termios_p, speed_t speed) {
|