/third_party/musl/src/termios/ |
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/ |
D | cf.rs | 7 pub fn cfgetospeed(termios: &Termios) -> Speed { in cfgetospeed() function 8 backend::termios::syscalls::cfgetospeed(termios) in cfgetospeed()
|
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 | 109 pub(crate) fn cfgetospeed(termios: &Termios) -> Speed { in cfgetospeed() function 110 unsafe { c::cfgetospeed(termios) } in cfgetospeed()
|
/third_party/musl/libc-test/src/functionalext/supplement/termios/ |
D | cfgetospeed.c | 32 speed_t ret = cfgetospeed(&t); in cfgetospeed_0100()
|
D | cfsetospeed.c | 33 speed_t ret = cfgetospeed(&t); in cfsetospeed_0100()
|
D | test_src_functionalext_supplement_termios.gni | 16 "cfgetospeed",
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
D | termios.h | 19 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | termios.h | 22 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | termios.h | 22 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | termios.h | 22 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/ndk_musl_include/ |
D | termios.h | 22 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | termios.h | 23 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/include/ |
D | termios.h | 23 speed_t cfgetospeed (const struct termios *);
|
/third_party/musl/Benchmark/musl/ |
D | libc_ioctl.cpp | 44 int speed = cfgetospeed(&ttydev); in Bm_function_Ioctl_baudrate()
|
/third_party/rust/crates/nix/src/sys/ |
D | termios.rs | 1016 pub fn cfgetospeed(termios: &Termios) -> u32 { 1018 unsafe { libc::cfgetospeed(&*inner_termios) as u32 } 1070 pub fn cfgetospeed(termios: &Termios) -> BaudRate { 1072 unsafe { libc::cfgetospeed(&*inner_termios) }.try_into().unwrap()
|
/third_party/musl/libc-test/src/api/ |
D | termios.c | 121 {speed_t(*p)(const struct termios*) = cfgetospeed;} in f()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/ |
D | syscalls.rs | 147 pub(crate) fn cfgetospeed(termios: &Termios) -> u32 { in cfgetospeed() function
|
/third_party/rust/crates/rustix/examples/ |
D | stdio.rs | 64 if let Some(speed) = speed_value(cfgetospeed(&term)) { in show()
|
/third_party/python/Modules/ |
D | termios.c | 90 speed_t ospeed = cfgetospeed(&mode); in termios_tcgetattr_impl()
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | unix.txt | 478 cfgetospeed
|
D | android.txt | 2883 cfgetospeed
|
/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 | 418 cfgetospeed;
|
/third_party/rust/crates/libc/src/unix/ |
D | mod.rs | 1374 pub fn cfgetospeed(termios: *const ::termios) -> ::speed_t; in cfgetospeed() function
|