HomeSort by relevance Sort by last modified time
    Searched defs:termio (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /hardware/bsp/intel/peripheral/libupm/src/hm11/
hm11.cxx 145 struct termios termio; local
148 tcgetattr(m_ttyFd, &termio);
152 cfmakeraw(&termio);
155 cfsetispeed(&termio, baud);
156 cfsetospeed(&termio, baud);
159 if (tcsetattr(m_ttyFd, TCSAFLUSH, &termio) < 0)
  /hardware/bsp/intel/peripheral/libupm/src/ublox6/
ublox6.cxx 142 struct termios termio; local
145 tcgetattr(m_ttyFd, &termio);
149 cfmakeraw(&termio);
152 cfsetispeed(&termio, baud);
153 cfsetospeed(&termio, baud);
157 if ( (rv = tcsetattr(m_ttyFd, TCSAFLUSH, &termio)) < 0)
  /hardware/bsp/intel/peripheral/libupm/src/mhz16/
mhz16.cxx 149 struct termios termio; local
152 tcgetattr(m_ttyFd, &termio);
156 cfmakeraw(&termio);
159 cfsetispeed(&termio, baud);
160 cfsetospeed(&termio, baud);
163 if (tcsetattr(m_ttyFd, TCSAFLUSH, &termio) < 0)
  /bionic/libc/kernel/uapi/asm-generic/
termios.h 32 struct termio { struct
  /development/ndk/platforms/android-21/include/asm-generic/
termios.h 32 struct termio { struct
  /external/kernel-headers/original/uapi/asm-generic/
termios.h 22 struct termio { struct
  /external/toybox/lib/
interestingtimes.c 86 struct termios termio; local
89 if (!tcgetattr(fd, &termio) && old) *old = termio;
96 termio.c_iflag = IXANY|ICRNL|INLCR;
97 if (toys.which->flags & TOYFLAG_LOCALE) termio.c_iflag |= IUTF8;
100 termio.c_oflag = ONLCR|OPOST;
103 // termio.c_cflag = C_READ|CS8|EXTB;
110 termio.c_lflag = ISIG|ICANON|ECHO|ECHOE|ECHOK|ECHOCTL|ECHOKE|IEXTEN;
112 if (raw) cfmakeraw(&termio);
114 return tcsetattr(fd, TCSANOW, &termio);
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/src/uart/
uart.c 218 struct termios termio; local
221 if (tcgetattr(dev->fd, &termio)) {
231 cfmakeraw(&termio);
232 if (tcsetattr(dev->fd, TCSAFLUSH, &termio) < 0) {
289 struct termios termio; local
290 if (tcgetattr(dev->fd, &termio)) {
297 cfsetispeed(&termio, speed);
298 cfsetospeed(&termio, speed);
301 if (tcsetattr(dev->fd, TCSAFLUSH, &termio) < 0) {
316 struct termios termio; local
398 struct termios termio; local
428 struct termios termio; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
termios.h 22 struct termio { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
termios.h 22 struct termio { struct
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-21/arch-arm64/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-21/arch-mips/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-21/arch-mips64/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-21/arch-x86/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-21/arch-x86_64/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/asm-generic/
termios.h 32 struct termio { struct
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/asm-generic/
termios.h 32 struct termio { struct

Completed in 525 milliseconds

1 2 3 4