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

1 2

  /device/common/libbt/src/
userial_vendor.c 30 #include <termios.h>
62 struct termios termios; /* serial terminal of BT port */ member in struct:__anon1534
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...]
  /external/e2fsprogs/e2fsck/
util.c 27 #include <termios.h>
142 struct termios termios, tmp; local
144 tcgetattr (0, &termios);
145 tmp = termios;
165 tcsetattr (0, TCSANOW, &termios);
191 tcsetattr (0, TCSANOW, &termios);
  /system/bluetooth/brcm_patchram_plus/
brcm_patchram_plus.c 118 #include <termios.h>
120 #include <sys/termios.h>
169 struct termios termios; variable in typeref:struct:termios
528 tcgetattr(uart_fd, &termios);
531 cfmakeraw(&termios);
533 termios.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP
535 termios.c_oflag &= ~OPOST;
536 termios.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
537 termios.c_cflag &= ~(CSIZE | PARENB)
    [all...]
  /bionic/libc/kernel/arch-arm/asm/
termbits.h 26 struct termios { struct
  /bionic/libc/kernel/arch-mips/asm/
termbits.h 27 struct termios { struct
  /bionic/libc/kernel/arch-x86/asm/
termbits.h 27 struct termios { struct
  /development/ndk/platforms/android-3/arch-arm/include/asm/
termbits.h 20 struct termios { struct
  /development/ndk/platforms/android-9/arch-mips/include/asm/
termbits.h 27 struct termios { struct
  /development/ndk/platforms/android-9/arch-x86/include/asm/
termbits.h 27 struct termios { struct
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags.py 403 # Importing termios will fail on non-unix platforms.
404 import termios namespace
406 termios = None variable
534 if (not sys.stdout.isatty()) or (termios is None) or (fcntl is None):
537 data = fcntl.ioctl(sys.stdout, termios.TIOCGWINSZ, '1234')
    [all...]
  /external/grub/grub/
asmstub.c 43 #include <termios.h>
1105 struct termios termios; local
1131 /* Get the termios parameters. */
1132 if (tcgetattr (serial_fd, &termios))
1136 cfmakeraw (&termios);
1143 cfsetispeed (&termios, termios_speed);
1144 cfsetospeed (&termios, termios_speed);
1147 termios.c_cflag &= ~CSIZE;
1151 termios.c_cflag |= CS5
    [all...]
  /external/kernel-headers/original/asm-arm/
termbits.h 9 struct termios { struct
  /external/kernel-headers/original/asm-mips/
termbits.h 24 struct termios { struct
  /external/kernel-headers/original/asm-x86/
termbits.h 11 struct termios { struct
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
userial_linux.c 28 #include <termios.h>
894 struct termios termios; local
1196 struct termios termios; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
termbits.h 11 struct termios { struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
termios.h 0 /* termios type and macro definitions. Linux version.
22 # error "Never include <bits/termios.h> directly; use <termios.h> instead."
30 struct termios struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
termbits.h 11 struct termios { struct
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
termios.h 0 /* termios type and macro definitions. Linux version.
22 # error "Never include <bits/termios.h> directly; use <termios.h> instead."
30 struct termios struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
termbits.h 11 struct termios { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
termios.h 0 /* termios type and macro definitions. Linux version.
22 # error "Never include <bits/termios.h> directly; use <termios.h> instead."
30 struct termios struct
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/asm/
termbits.h 20 struct termios { struct
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/asm/
termbits.h 20 struct termios { struct
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/asm/
termbits.h 20 struct termios { struct
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
termbits.h 22 struct termios { struct

Completed in 1152 milliseconds

1 2