HomeSort by relevance Sort by last modified time
    Searched full:termios (Results 51 - 75 of 536) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/9/platforms/android-14/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
termios.h 16 #include <asm/termios.h>
  /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/linux/
tty.h 13 #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->c_cc[VSTART]
180 struct termios *termios, *termios_locked; member in struct:tty_struct
    [all...]
  /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)
bsd-nextstep.h 51 int tcgetattr(int, struct termios *);
52 int tcsetattr(int, int, const struct termios *);
54 speed_t cfgetospeed(const struct termios *);
55 speed_t cfgetispeed(const struct termios *);
56 int cfsetospeed(struct termios *, int);
57 int cfsetispeed(struct termios *, int);
  /hardware/broadcom/libbt/src/
userial_vendor.c 30 #include <termios.h>
62 struct termios termios; /* serial terminal of BT port */ member in struct:__anon32661
238 tcgetattr(vnd_userial.fd, &vnd_userial.termios);
239 cfmakeraw(&vnd_userial.termios);
240 vnd_userial.termios.c_cflag |= (CRTSCTS | stop_bits);
241 tcsetattr(vnd_userial.fd, TCSANOW, &vnd_userial.termios);
244 tcsetattr(vnd_userial.fd, TCSANOW, &vnd_userial.termios);
249 cfsetospeed(&vnd_userial.termios, baud);
250 cfsetispeed(&vnd_userial.termios, baud)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
getpass.py 63 old = termios.tcgetattr(fd) # a copy to save
65 new[3] &= ~termios.ECHO # 3 == 'lflags'
66 tcsetattr_flags = termios.TCSAFLUSH
67 if hasattr(termios, 'TCSASOFT'):
68 tcsetattr_flags |= termios.TCSASOFT
70 termios.tcsetattr(fd, tcsetattr_flags, new)
73 termios.tcsetattr(fd, tcsetattr_flags, old)
75 except termios.error, e:
162 import termios namespace
163 # it's possible there is an incompatible termios from th
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
getpass.py 63 old = termios.tcgetattr(fd) # a copy to save
65 new[3] &= ~termios.ECHO # 3 == 'lflags'
66 tcsetattr_flags = termios.TCSAFLUSH
67 if hasattr(termios, 'TCSASOFT'):
68 tcsetattr_flags |= termios.TCSASOFT
70 termios.tcsetattr(fd, tcsetattr_flags, new)
73 termios.tcsetattr(fd, tcsetattr_flags, old)
75 except termios.error, e:
162 import termios namespace
163 # it's possible there is an incompatible termios from th
    [all...]
  /bionic/libc/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)
85 static __inline__ speed_t cfgetospeed(const struct termios *s)
90 static __inline__ int cfsetospeed(struct termios *s, speed_t speed)
96 static __inline__ speed_t cfgetispeed(const struct termios *s)
101 static __inline__ int cfsetispeed(struct termios *s, speed_t speed)
107 static __inline__ void cfmakeraw(struct termios *s)
  /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)

Completed in 3731 milliseconds

1 23 4 5 6 7 8 91011>>