Home
last modified time | relevance | path

Searched refs:cfsetospeed (Results 1 – 25 of 32) sorted by relevance

12

/third_party/musl/porting/liteos_a/user/src/termios/
Dcfsetospeed.c7 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/
Dcfsetospeed.c7 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/
Dserial.c302 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/
Dcfsetospeed.c28 int result = cfsetospeed(&t, B1200); in cfsetospeed_0100()
49 int result = cfsetospeed(&t, 1200); in cfsetospeed_0200()
Dcfgetospeed.c27 int result = cfsetospeed(&t, B1200); in cfgetospeed_0100()
Dtest_src_functionalext_supplement_termios.gni19 "cfsetospeed",
/third_party/musl/Benchmark/musl/
Dlibc_ioctl.cpp42 cfsetospeed(&ttydev, B19200); in Bm_function_Ioctl_baudrate()
51 cfsetospeed(&ttydev, speed); in Bm_function_Ioctl_baudrate()
/third_party/rust/crates/rustix/src/termios/
Dcf.rs26 pub fn cfsetospeed(termios: &mut Termios, speed: Speed) -> io::Result<()> { in cfsetospeed() function
27 backend::termios::syscalls::cfsetospeed(termios, speed) in cfsetospeed()
Dmod.rs13 pub use cf::{cfgetispeed, cfgetospeed, cfmakeraw, cfsetispeed, cfsetospeed, cfsetspeed};
/third_party/rust/crates/rustix/src/backend/libc/termios/
Dsyscalls.rs128 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/
Dtermios.h21 int cfsetospeed (struct termios *, speed_t);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dtermios.h24 int cfsetospeed (struct termios *, speed_t);
/third_party/musl/porting/liteos_m/kernel/include/
Dtermios.h24 int cfsetospeed (struct termios *, speed_t);
/third_party/musl/porting/uniproton/kernel/include/
Dtermios.h24 int cfsetospeed (struct termios *, speed_t);
/third_party/musl/include/
Dtermios.h25 int cfsetospeed (struct termios *, speed_t);
/third_party/musl/porting/liteos_a/kernel/include/
Dtermios.h25 int cfsetospeed (struct termios *, speed_t);
/third_party/rust/crates/nix/src/sys/
Dtermios.rs1036 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/
Dcompat.rs39 ::cfsetospeed(termios, speed); in cfsetspeed()
/third_party/musl/libc-test/src/api/
Dtermios.c123 {int(*p)(struct termios*,speed_t) = cfsetospeed;} in f()
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-serial/
Dminimal-raw-file.c90 cfsetospeed(&tio, B115200); in callback_raw_test()
/third_party/toybox/toys/pending/
Dstty.c339 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/
Ddebugger-serial.c120 cfsetospeed (&options, serial_config.baud_rate); in jerryx_debugger_serial_configure_attributes()
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/
Dsyscalls.rs175 pub(crate) fn cfsetospeed(termios: &mut Termios, speed: u32) -> io::Result<()> { in cfsetospeed() function
/third_party/rust/crates/libc/libc-test/semver/
Dunix.txt481 cfsetospeed
/third_party/python/Modules/
Dtermios.c212 if (cfsetospeed(&mode, (speed_t) ospeed) == -1) in termios_tcsetattr_impl()

12