Home
last modified time | relevance | path

Searched refs:cfgetispeed (Results 1 – 25 of 26) sorted by relevance

12

/third_party/rust/crates/rustix/src/termios/
Dcf.rs14 pub fn cfgetispeed(termios: &Termios) -> Speed { in cfgetispeed() function
15 backend::termios::syscalls::cfgetispeed(termios) in cfgetispeed()
Dmod.rs13 pub use cf::{cfgetispeed, cfgetospeed, cfmakeraw, cfsetispeed, cfsetospeed, cfsetspeed};
/third_party/rust/crates/rustix/src/backend/libc/termios/
Dsyscalls.rs116 pub(crate) fn cfgetispeed(termios: &Termios) -> Speed { in cfgetispeed() function
117 unsafe { c::cfgetispeed(termios) } in cfgetispeed()
/third_party/musl/src/termios/
Dcfgetospeed.c10 speed_t cfgetispeed(const struct termios *tio) in cfgetispeed() function
/third_party/musl/libc-test/src/functionalext/supplement/termios/
Dcfgetispeed.c32 speed_t ret = cfgetispeed(&t); in cfgetispeed_0100()
Dcfsetispeed.c32 if (cfgetispeed(&t) != (speed_t)(B1200)) { in cfsetispeed_0100()
Dtest_src_functionalext_supplement_termios.gni15 "cfgetispeed",
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
Dtermios.h20 speed_t cfgetispeed (const struct termios *);
/third_party/musl/porting/uniproton/kernel/include/
Dtermios.h23 speed_t cfgetispeed (const struct termios *);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dtermios.h23 speed_t cfgetispeed (const struct termios *);
/third_party/musl/porting/liteos_m/kernel/include/
Dtermios.h23 speed_t cfgetispeed (const struct termios *);
/third_party/musl/ndk_musl_include/
Dtermios.h23 speed_t cfgetispeed (const struct termios *);
/third_party/musl/porting/liteos_a/kernel/include/
Dtermios.h24 speed_t cfgetispeed (const struct termios *);
/third_party/musl/include/
Dtermios.h24 speed_t cfgetispeed (const struct termios *);
/third_party/rust/crates/nix/src/sys/
Dtermios.rs1005 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/
Dtermios.c120 {speed_t(*p)(const struct termios*) = cfgetispeed;} in f()
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/
Dsyscalls.rs154 pub(crate) fn cfgetispeed(termios: &Termios) -> u32 { in cfgetispeed() function
/third_party/rust/crates/rustix/examples/
Dstdio.rs61 if let Some(speed) = speed_value(cfgetispeed(&term)) { in show()
/third_party/python/Modules/
Dtermios.c89 speed_t ispeed = cfgetispeed(&mode); in termios_tcgetattr_impl()
/third_party/rust/crates/libc/libc-test/semver/
Dunix.txt477 cfgetispeed
Dandroid.txt2882 cfgetispeed
/third_party/toybox/toys/pending/
Dstty.c192 int ispeed = baud(cfgetispeed(t)), ospeed = baud(cfgetospeed(t)); in show_speed()
/third_party/musl/
Dlibc.map.txt417 cfgetispeed;
/third_party/rust/crates/libc/src/unix/
Dmod.rs1373 pub fn cfgetispeed(termios: *const ::termios) -> ::speed_t; in cfgetispeed() function
/third_party/rust/crates/libc/src/fuchsia/
Dmod.rs3833 pub fn cfgetispeed(termios: *const ::termios) -> ::speed_t; in cfgetispeed() function

12