HomeSort by relevance Sort by last modified time
    Searched full:termios (Results 1 - 25 of 430) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/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...]
  /development/ndk/platforms/android-3/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>

Completed in 1316 milliseconds

1 2 3 4 5 6 7 8 91011>>