/third_party/musl/porting/liteos_a/user/src/termios/ |
D | cfsetospeed.c | 7 int cfsetospeed(struct termios *tio, speed_t speed) in cfsetospeed() function 22 return speed ? cfsetospeed(tio, speed) : 0; in cfsetispeed() 25 weak_alias(cfsetospeed, cfsetspeed);
|
/third_party/musl/src/termios/ |
D | cfsetospeed.c | 7 int cfsetospeed(struct termios *tio, speed_t speed) in cfsetospeed() function 22 return speed ? cfsetospeed(tio, speed) : 0; in cfsetispeed() 25 weak_alias(cfsetospeed, cfsetspeed);
|
/third_party/cups-filters/backend/ |
D | serial.c | 302 cfsetospeed(&opts, atoi(value)); in main() 308 cfsetospeed(&opts, B1200); in main() 312 cfsetospeed(&opts, B2400); in main() 316 cfsetospeed(&opts, B4800); in main() 320 cfsetospeed(&opts, B9600); in main() 324 cfsetospeed(&opts, B19200); in main() 328 cfsetospeed(&opts, B38400); in main() 333 cfsetospeed(&opts, B57600); in main() 339 cfsetospeed(&opts, B115200); in main() 345 cfsetospeed(&opts, B230400); in main()
|
/third_party/musl/libc-test/src/functionalext/supplement/termios/ |
D | cfsetospeed.c | 28 int result = cfsetospeed(&t, B1200); in cfsetospeed_0100() 49 int result = cfsetospeed(&t, 1200); in cfsetospeed_0200()
|
D | cfgetospeed.c | 27 int result = cfsetospeed(&t, B1200); in cfgetospeed_0100()
|
D | test_src_functionalext_supplement_termios.gni | 19 "cfsetospeed",
|
/third_party/musl/Benchmark/musl/ |
D | libc_ioctl.cpp | 42 cfsetospeed(&ttydev, B19200); in Bm_function_Ioctl_baudrate() 51 cfsetospeed(&ttydev, speed); in Bm_function_Ioctl_baudrate()
|
/third_party/rust/crates/rustix/src/termios/ |
D | cf.rs | 26 pub fn cfsetospeed(termios: &mut Termios, speed: Speed) -> io::Result<()> { in cfsetospeed() function 27 backend::termios::syscalls::cfsetospeed(termios, speed) in cfsetospeed()
|
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 | 128 pub(crate) fn cfsetospeed(termios: &mut Termios, speed: Speed) -> io::Result<()> { in cfsetospeed() function 129 unsafe { ret(c::cfsetospeed(termios, speed)) } in cfsetospeed()
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
D | termios.h | 21 int cfsetospeed (struct termios *, speed_t);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | termios.h | 24 int cfsetospeed (struct termios *, speed_t);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | termios.h | 24 int cfsetospeed (struct termios *, speed_t);
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | termios.h | 24 int cfsetospeed (struct termios *, speed_t);
|
/third_party/musl/include/ |
D | termios.h | 25 int cfsetospeed (struct termios *, speed_t);
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | termios.h | 25 int cfsetospeed (struct termios *, speed_t);
|
/third_party/rust/crates/nix/src/sys/ |
D | termios.rs | 1036 pub fn cfsetospeed<T: Into<u32>>(termios: &mut Termios, baud: T) -> Result<()> { 1038 let res = unsafe { libc::cfsetospeed(inner_termios, baud.into() as libc::speed_t) }; 1090 pub fn cfsetospeed(termios: &mut Termios, baud: BaudRate) -> Result<()> { 1092 let res = unsafe { libc::cfsetospeed(inner_termios, baud as libc::speed_t) };
|
/third_party/rust/crates/libc/src/unix/solarish/ |
D | compat.rs | 39 ::cfsetospeed(termios, speed); in cfsetspeed()
|
/third_party/musl/libc-test/src/api/ |
D | termios.c | 123 {int(*p)(struct termios*,speed_t) = cfsetospeed;} in f()
|
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-serial/ |
D | minimal-raw-file.c | 90 cfsetospeed(&tio, B115200); in callback_raw_test()
|
/third_party/toybox/toys/pending/ |
D | stty.c | 339 cfsetospeed(&new, new_speed); in do_stty() 343 cfsetospeed(&new, speed(get_arg(&i, 0, 4000000))); in do_stty()
|
/third_party/jerryscript/jerry-ext/debugger/ |
D | debugger-serial.c | 120 cfsetospeed (&options, serial_config.baud_rate); in jerryx_debugger_serial_configure_attributes()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/ |
D | syscalls.rs | 175 pub(crate) fn cfsetospeed(termios: &mut Termios, speed: u32) -> io::Result<()> { in cfsetospeed() function
|
/third_party/rust/crates/libc/libc-test/semver/ |
D | unix.txt | 481 cfsetospeed
|
/third_party/python/Modules/ |
D | termios.c | 212 if (cfsetospeed(&mode, (speed_t) ospeed) == -1) in termios_tcsetattr_impl()
|