/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/ |
termios.h | 16 #include <asm/termios.h>
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/ |
termios.h | 16 #include <asm/termios.h>
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/ |
termios.h | 16 #include <asm/termios.h>
|
/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/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/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/ |
tcsetattr.c | 8 int tcsetattr(int fd, int optional_actions, const struct termios* termios_p) {
|
cfsetspeed.c | 8 int cfsetspeed(struct termios *termios_p, speed_t speed) {
|
/external/openssh/ |
sshpty.h | 17 #include <termios.h> 19 struct termios *get_saved_tio(void);
|
clientloop.h | 38 #include <termios.h> 45 void client_session2_setup(int, int, int, const char *, struct termios *,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
pty.h | 25 #include <termios.h> 35 struct termios *__termp, struct winsize *__winp) __THROW; 40 struct termios *__termp, struct winsize *__winp) __THROW;
|
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/ |
pty.h | 25 #include <termios.h> 35 struct termios *__termp, struct winsize *__winp) __THROW; 40 struct termios *__termp, struct winsize *__winp) __THROW;
|
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/ |
pty.h | 25 #include <termios.h> 35 struct termios *__termp, struct winsize *__winp) __THROW; 40 struct termios *__termp, struct winsize *__winp) __THROW;
|
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/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-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...] |
/bionic/libc/bionic/ |
tcsetpgrp.c | 28 #include <termios.h>
|
tcgetpgrp.c | 28 #include <termios.h>
|
/external/compiler-rt/lib/msan/lit_tests/Linux/ |
tcgetattr.cc | 7 #include <termios.h> 14 struct termios t;
|
/external/openssh/openbsd-compat/ |
bsd-nextstep.c | 47 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)
|
/development/ndk/platforms/android-3/include/ |
termios.h | 35 #include <linux/termios.h> 49 static __inline__ int tcgetattr(int fd, struct termios *s) 54 static __inline__ int tcsetattr(int fd, int __opt, const struct termios *s) 80 static __inline__ speed_t cfgetospeed(const struct termios *s) 85 static __inline__ int cfsetospeed(struct termios *s, speed_t speed) 91 static __inline__ speed_t cfgetispeed(const struct termios *s) 96 static __inline__ int cfsetispeed(struct termios *s, speed_t speed) 102 static __inline__ void cfmakeraw(struct termios *s)
|
/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/ndk/4/platforms/android-3/arch-arm/usr/include/ |
termios.h | 35 #include <linux/termios.h> 49 static __inline__ int tcgetattr(int fd, struct termios *s) 54 static __inline__ int tcsetattr(int fd, int __opt, const struct termios *s) 80 static __inline__ speed_t cfgetospeed(const struct termios *s) 85 static __inline__ int cfsetospeed(struct termios *s, speed_t speed) 91 static __inline__ speed_t cfgetispeed(const struct termios *s) 96 static __inline__ int cfsetispeed(struct termios *s, speed_t speed) 102 static __inline__ void cfmakeraw(struct termios *s)
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/ |
termios.h | 35 #include <linux/termios.h> 49 static __inline__ int tcgetattr(int fd, struct termios *s) 54 static __inline__ int tcsetattr(int fd, int __opt, const struct termios *s) 80 static __inline__ speed_t cfgetospeed(const struct termios *s) 85 static __inline__ int cfsetospeed(struct termios *s, speed_t speed) 91 static __inline__ speed_t cfgetispeed(const struct termios *s) 96 static __inline__ int cfsetispeed(struct termios *s, speed_t speed) 102 static __inline__ void cfmakeraw(struct termios *s)
|