/third_party/musl/src/termios/ |
H A D | cfgetospeed.c | 5 speed_t cfgetospeed(const struct termios *tio) in cfgetospeed() function 12 return cfgetospeed(tio); in cfgetispeed()
|
/third_party/rust/crates/rustix/src/termios/ |
H A D | cf.rs | 4 /// `cfgetospeed(termios)` 7 pub fn cfgetospeed(termios: &Termios) -> Speed { in cfgetospeed() functions 8 backend::termios::syscalls::cfgetospeed(termios) in cfgetospeed()
|
H A D | mod.rs | 13 pub use cf::{cfgetispeed, cfgetospeed, cfmakeraw, cfsetispeed, cfsetospeed, cfsetspeed};
|
/third_party/musl/libc-test/src/functionalext/supplement/termios/ |
H A D | cfgetospeed.c | 32 speed_t ret = cfgetospeed(&t); in cfgetospeed_0100() 34 t_error("%s cfgetospeed failed\n", __func__); in cfgetospeed_0100()
|
H A D | cfsetospeed.c | 33 speed_t ret = cfgetospeed(&t); in cfsetospeed_0100() 35 t_error("%s cfgetospeed failed\n", __func__); in cfsetospeed_0100()
|
/third_party/musl/porting/uniproton/kernel/include/ |
H A D | termios.h | 22 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
H A D | termios.h | 22 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
H A D | termios.h | 23 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
H A D | termios.h | 19 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
H A D | termios.h | 22 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/include/ |
H A D | termios.h | 23 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/Benchmark/musl/ |
H A D | libc_ioctl.cpp | 41 int speed = cfgetospeed(&ttydev); in Bm_function_Ioctl_baudrate()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/ |
H A D | syscalls.rs | 147 pub(crate) fn cfgetospeed(termios: &Termios) -> u32 {
|
/third_party/musl/libc-test/src/api/ |
H A D | termios.c | 121 {speed_t(*p)(const struct termios*) = cfgetospeed;} in f()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | termios.rs | 55 //! * `cfgetospeed()` - Returns `u32` on BSDs, `BaudRate` on Android/Linux 76 //! # use nix::sys::termios::{BaudRate, cfgetispeed, cfgetospeed, cfsetispeed, cfsetspeed, Termios}; 81 //! assert_eq!(speed, cfgetospeed(&t)); 86 //! On non-BSDs, `cfgetispeed()` and `cfgetospeed()` both return a `BaudRate`: 110 //! # use nix::sys::termios::{BaudRate, cfgetispeed, cfgetospeed, cfsetspeed, Termios}; 115 //! assert_eq!(cfgetospeed(&t), BaudRate::B9600); 119 //! But on the BSDs, `cfgetispeed()` and `cfgetospeed()` both return `u32`s: 143 //! # use nix::sys::termios::{BaudRate, cfgetispeed, cfgetospeed, cfsetspeed, Termios}; 148 //! assert_eq!(cfgetospeed(&t), 9600u32); 1011 /// [cfgetospeed( 1016 pub fn cfgetospeed(termios: &Termios) -> u32 { cfgetospeed() functions 1070 pub fn cfgetospeed(termios: &Termios) -> BaudRate { cfgetospeed() functions [all...] |
/third_party/toybox/toys/pending/ |
H A D | stty.c | 192 int ispeed = baud(cfgetispeed(t)), ospeed = baud(cfgetospeed(t)); in show_speed()
|
/third_party/rust/crates/rustix/examples/ |
H A D | stdio.rs | 64 if let Some(speed) = speed_value(cfgetospeed(&term)) { in show()
|
/third_party/python/Modules/ |
H A D | termios.c | 95 speed_t ospeed = cfgetospeed(&mode); in termios_tcgetattr_impl() 558 /* cfgetospeed(), cfsetospeed() constants */
|
/third_party/rust/crates/libc/src/unix/ |
H A D | mod.rs | 1374 pub fn cfgetospeed(termios: *const ::termios) -> ::speed_t; in cfgetospeed() functions
|
/third_party/rust/crates/libc/src/fuchsia/ |
H A D | mod.rs | 3834 pub fn cfgetospeed(termios: *const ::termios) -> ::speed_t; in cfgetospeed() functions
|