Home
last modified time | relevance | path

Searched refs:cfsetospeed (Results 1 - 25 of 27) sorted by relevance

12

/third_party/musl/porting/liteos_a/user/src/termios/
H A 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/
H A 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/
H A 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( in main()
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/termios/
H A Dcfsetospeed.c28 int result = cfsetospeed(&t, B1200); in cfsetospeed_0100()
30 t_error("%s cfsetospeed failed\n", __func__); in cfsetospeed_0100()
49 int result = cfsetospeed(&t, 1200); in cfsetospeed_0200()
51 t_error("%s cfsetospeed should be failed\n", __func__); in cfsetospeed_0200()
H A Dcfgetospeed.c27 int result = cfsetospeed(&t, B1200); in cfgetospeed_0100()
29 t_error("%s cfsetospeed failed\n", __func__); in cfgetospeed_0100()
/third_party/musl/Benchmark/musl/
H A 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/
H A Dcf.rs24 /// `cfsetospeed(termios, speed)`
26 pub fn cfsetospeed(termios: &mut Termios, speed: Speed) -> io::Result<()> { in cfsetospeed() functions
27 backend::termios::syscalls::cfsetospeed(termios, speed) in cfsetospeed()
H A Dmod.rs13 pub use cf::{cfgetispeed, cfgetospeed, cfmakeraw, cfsetispeed, cfsetospeed, cfsetspeed};
/third_party/musl/porting/uniproton/kernel/include/
H A Dtermios.h24 int cfsetospeed (struct termios *, speed_t);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Dtermios.h24 int cfsetospeed (struct termios *, speed_t);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dtermios.h25 int cfsetospeed (struct termios *, speed_t);
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
H A Dtermios.h21 int cfsetospeed (struct termios *, speed_t);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dtermios.h24 int cfsetospeed (struct termios *, speed_t);
/third_party/musl/include/
H A Dtermios.h25 int cfsetospeed (struct termios *, speed_t);
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/
H A Dsyscalls.rs175 pub(crate) fn cfsetospeed(termios: &mut Termios, speed: u32) -> io::Result<()> {
/third_party/libwebsockets/minimal-examples/raw/minimal-raw-serial/
H A Dminimal-raw-file.c90 cfsetospeed(&tio, B115200); in callback_raw_test()
/third_party/musl/libc-test/src/api/
H A Dtermios.c123 {int(*p)(struct termios*,speed_t) = cfsetospeed;} in f()
/third_party/rust/crates/libc/src/unix/solarish/
H A Dcompat.rs39 ::cfsetospeed(termios, speed); in cfsetspeed()
/third_party/toybox/toys/pending/
H A Dstty.c339 cfsetospeed(&new, new_speed); in do_stty()
343 cfsetospeed(&new, speed(get_arg(&i, 0, 4000000))); in do_stty()
/third_party/backends/backend/
H A Ddc210.c386 cfsetospeed (&tty_new, B9600); in init_dc210()
435 cfsetospeed (&tty_new, speeds[speed_index].baud); in init_dc210()
458 cfsetospeed (&tty_new, Camera.baud); in init_dc210()
H A Ddc25.c448 cfsetospeed (&tty_new, B9600); in init_dc20()
470 cfsetospeed (&tty_new, speeds[speed_index].baud); in init_dc20()
494 cfsetospeed (&tty_new, speed); in init_dc20()
1664 cfsetospeed (&tty_temp, B9600); in shoot()
H A Ddc240.c431 cfsetospeed (&tty_new, B9600); in init_dc240()
494 cfsetospeed (&tty_new, Camera.baud); in init_dc240()
/third_party/rust/crates/nix/src/sys/
H A Dtermios.rs57 //! * `cfsetospeed()` - Takes `u32` or `BaudRate` on BSDs, `BaudRate` on Android/Linux
64 //! # use nix::sys::termios::{BaudRate, cfsetispeed, cfsetospeed, cfsetspeed, Termios};
68 //! cfsetospeed(&mut t, BaudRate::B9600).unwrap();
210 //! # use nix::sys::termios::{cfsetispeed, cfsetospeed, cfsetspeed, Termios};
214 //! cfsetospeed(&mut t, 9600u32);
1033 /// [cfsetospeed(3p)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/cfsetospeed.html)).
1035 /// `cfsetospeed()` sets the output baud rate in the given termios structure.
1036 pub fn cfsetospeed<T: Into<u32>>(termios: &mut Termios, baud: T) -> Result<()> { in cfsetospeed() functions
1038 let res = unsafe { libc::cfsetospeed(inner_termio in cfsetospeed()
1090 pub fn cfsetospeed(termios: &mut Termios, baud: BaudRate) -> Result<()> { cfsetospeed() functions
[all...]
/third_party/jerryscript/jerry-ext/debugger/
H A Ddebugger-serial.c120 cfsetospeed (&options, serial_config.baud_rate); in jerryx_debugger_serial_configure_attributes()
/third_party/python/Modules/
H A Dtermios.c222 if (cfsetospeed(&mode, (speed_t) ospeed) == -1) in termios_tcsetattr_impl()
558 /* cfgetospeed(), cfsetospeed() constants */

Completed in 14 milliseconds

12