HomeSort by relevance Sort by last modified time
    Searched refs:speed_t (Results 1 - 21 of 21) sorted by null

  /bionic/libc/include/
termios.h 40 speed_t cfgetispeed(const struct termios* __t) __INTRODUCED_IN(21);
41 speed_t cfgetospeed(const struct termios* __t) __INTRODUCED_IN(21);
43 int cfsetspeed(struct termios* __t, speed_t __speed) __INTRODUCED_IN(21);
44 int cfsetispeed(struct termios* __t, speed_t __speed) __INTRODUCED_IN(21);
45 int cfsetospeed(struct termios* __t, speed_t __speed) __INTRODUCED_IN(21);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
termios.h 39 `cc_t', `speed_t', and all the macros specifying the flag bits. */
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;
  /bionic/libc/include/bits/
termios_inlines.h 48 static __inline speed_t cfgetspeed(const struct termios* s) {
49 return __BIONIC_CAST(static_cast, speed_t, s->c_cflag & CBAUD);
52 __BIONIC_TERMIOS_INLINE speed_t cfgetispeed(const struct termios* s) {
56 __BIONIC_TERMIOS_INLINE speed_t cfgetospeed(const struct termios* s) {
70 __BIONIC_TERMIOS_INLINE int cfsetspeed(struct termios* s, speed_t speed) {
80 __BIONIC_TERMIOS_INLINE int cfsetispeed(struct termios* s, speed_t speed) {
84 __BIONIC_TERMIOS_INLINE int cfsetospeed(struct termios* s, speed_t speed) {
  /bionic/tests/
termios_test.cpp 47 ASSERT_EQ(static_cast<speed_t>(B1200), cfgetispeed(&t));
60 ASSERT_EQ(static_cast<speed_t>(B1200), cfgetospeed(&t));
73 ASSERT_EQ(static_cast<speed_t>(B1200), cfgetispeed(&t));
74 ASSERT_EQ(static_cast<speed_t>(B1200), cfgetospeed(&t));
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/
TerminalFunctions.c 34 speed_t
53 speed_t
78 speed_t NewSpeed
111 speed_t NewSpeed
  /bionic/libc/kernel/uapi/asm-generic/
termbits.h 23 typedef unsigned int speed_t; typedef
41 speed_t c_ispeed;
42 speed_t c_ospeed;
51 speed_t c_ispeed;
52 speed_t c_ospeed;
  /bionic/libc/kernel/uapi/asm-mips/asm/
termbits.h 23 typedef unsigned int speed_t; typedef
41 speed_t c_ispeed;
42 speed_t c_ospeed;
51 speed_t c_ispeed;
52 speed_t c_ospeed;
  /external/kernel-headers/original/uapi/asm-generic/
termbits.h 8 typedef unsigned int speed_t; typedef
28 speed_t c_ispeed; /* input speed */
29 speed_t c_ospeed; /* output speed */
39 speed_t c_ispeed; /* input speed */
40 speed_t c_ospeed; /* output speed */
  /external/kernel-headers/original/uapi/asm-mips/asm/
termbits.h 17 typedef unsigned int speed_t; typedef
41 speed_t c_ispeed; /* input speed */
42 speed_t c_ospeed; /* output speed */
52 speed_t c_ispeed; /* input speed */
53 speed_t c_ospeed; /* output speed */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
termbits.h 7 typedef unsigned int speed_t; typedef
27 speed_t c_ispeed; /* input speed */
28 speed_t c_ospeed; /* output speed */
38 speed_t c_ispeed; /* input speed */
39 speed_t c_ospeed; /* output speed */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
termios.h 25 typedef unsigned int speed_t; typedef
37 speed_t c_ispeed; /* input speed */
38 speed_t c_ospeed; /* output speed */
220 _IOT (_IOTS (cflag_t), 4, _IOTS (cc_t), NCCS, _IOTS (speed_t), 2)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
termios.h 25 typedef unsigned int speed_t; typedef
37 speed_t c_ispeed; /* input speed */
38 speed_t c_ospeed; /* output speed */
220 _IOT (_IOTS (cflag_t), 4, _IOTS (cc_t), NCCS, _IOTS (speed_t), 2)
  /bionic/tests/headers/posix/
termios_h.c 35 TYPE(speed_t);
156 FUNCTION(cfgetispeed, speed_t (*f)(const struct termios*));
157 FUNCTION(cfgetospeed, speed_t (*f)(const struct termios*));
158 FUNCTION(cfsetispeed, int (*f)(struct termios*, speed_t));
159 FUNCTION(cfsetospeed, int (*f)(struct termios*, speed_t));
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
termios.h 157 typedef UINT32 speed_t; typedef
160 INT32 c_ispeed; /* input speed - Use a signed type instead of speed_t */
231 speed_t cfgetispeed (const struct termios *);
244 speed_t cfgetospeed (const struct termios *);
260 int cfsetispeed (struct termios *, speed_t);
276 int cfsetospeed (struct termios *, speed_t);
385 //int cfsetspeed (struct termios *, speed_t);
  /external/python/cpython2/Modules/
termios.c 74 speed_t ispeed, ospeed;
150 speed_t ispeed, ospeed;
170 ispeed = (speed_t) PyInt_AsLong(PyList_GetItem(term, 4));
171 ospeed = (speed_t) PyInt_AsLong(PyList_GetItem(term, 5));
197 if (cfsetispeed(&mode, (speed_t) ispeed) == -1)
199 if (cfsetospeed(&mode, (speed_t) ospeed) == -1)
  /external/python/cpython3/Modules/
termios.c 67 speed_t ispeed, ospeed;
143 speed_t ispeed, ospeed;
163 ispeed = (speed_t) PyLong_AsLong(PyList_GetItem(term, 4));
164 ospeed = (speed_t) PyLong_AsLong(PyList_GetItem(term, 5));
190 if (cfsetispeed(&mode, (speed_t) ispeed) == -1)
192 if (cfsetospeed(&mode, (speed_t) ospeed) == -1)
  /external/toybox/toys/net/
microcom.c 31 static void xraw(int fd, const char *name, speed_t speed,
  /external/toybox/toys/pending/
getty.c 52 speed_t code;
84 static speed_t encode(char *s)
91 return (speed_t) -1;
182 speed_t speed;
stty.c 56 static int baud(speed_t speed)
62 static speed_t speed(int baud)
  /external/libedit/src/
tty.h 475 speed_t t_speed;
tty.c 460 private speed_t tty__getspeed(struct termios *);
613 private speed_t
616 speed_t spd;
    [all...]

Completed in 308 milliseconds