/third_party/rust/crates/rustix/src/termios/ |
D | cf.rs | 14 pub fn cfgetispeed(termios: &Termios) -> Speed { in cfgetispeed() function 15 backend::termios::syscalls::cfgetispeed(termios) in cfgetispeed()
|
D | mod.rs | 13 pub use cf::{cfgetispeed, cfgetospeed, cfmakeraw, cfsetispeed, cfsetospeed, cfsetspeed};
|
/third_party/rust/crates/rustix/src/backend/libc/termios/ |
D | syscalls.rs | 116 pub(crate) fn cfgetispeed(termios: &Termios) -> Speed { in cfgetispeed() function 117 unsafe { c::cfgetispeed(termios) } in cfgetispeed()
|
/third_party/musl/src/termios/ |
D | cfgetospeed.c | 10 speed_t cfgetispeed(const struct termios *tio) in cfgetispeed() function
|
/third_party/musl/libc-test/src/functionalext/supplement/termios/ |
D | cfgetispeed.c | 32 speed_t ret = cfgetispeed(&t); in cfgetispeed_0100()
|
D | cfsetispeed.c | 32 if (cfgetispeed(&t) != (speed_t)(B1200)) { in cfsetispeed_0100()
|
D | test_src_functionalext_supplement_termios.gni | 15 "cfgetispeed",
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
D | termios.h | 20 speed_t cfgetispeed (const struct termios *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | termios.h | 23 speed_t cfgetispeed (const struct termios *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | termios.h | 23 speed_t cfgetispeed (const struct termios *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | termios.h | 23 speed_t cfgetispeed (const struct termios *);
|
/third_party/musl/ndk_musl_include/ |
D | termios.h | 23 speed_t cfgetispeed (const struct termios *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | termios.h | 24 speed_t cfgetispeed (const struct termios *);
|
/third_party/musl/include/ |
D | termios.h | 24 speed_t cfgetispeed (const struct termios *);
|
/third_party/rust/crates/nix/src/sys/ |
D | termios.rs | 1005 pub fn cfgetispeed(termios: &Termios) -> u32 { 1007 unsafe { libc::cfgetispeed(&*inner_termios) as u32 } 1061 pub fn cfgetispeed(termios: &Termios) -> BaudRate { 1063 unsafe { libc::cfgetispeed(&*inner_termios) }.try_into().unwrap()
|
/third_party/musl/libc-test/src/api/ |
D | termios.c | 120 {speed_t(*p)(const struct termios*) = cfgetispeed;} in f()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/ |
D | syscalls.rs | 154 pub(crate) fn cfgetispeed(termios: &Termios) -> u32 { in cfgetispeed() function
|
/third_party/rust/crates/rustix/examples/ |
D | stdio.rs | 61 if let Some(speed) = speed_value(cfgetispeed(&term)) { in show()
|
/third_party/python/Modules/ |
D | termios.c | 89 speed_t ispeed = cfgetispeed(&mode); in termios_tcgetattr_impl()
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | unix.txt | 477 cfgetispeed
|
D | android.txt | 2882 cfgetispeed
|
/third_party/toybox/toys/pending/ |
D | stty.c | 192 int ispeed = baud(cfgetispeed(t)), ospeed = baud(cfgetospeed(t)); in show_speed()
|
/third_party/musl/ |
D | libc.map.txt | 417 cfgetispeed;
|
/third_party/rust/crates/libc/src/unix/ |
D | mod.rs | 1373 pub fn cfgetispeed(termios: *const ::termios) -> ::speed_t; in cfgetispeed() function
|
/third_party/rust/crates/libc/src/fuchsia/ |
D | mod.rs | 3833 pub fn cfgetispeed(termios: *const ::termios) -> ::speed_t; in cfgetispeed() function
|