Home
last modified time | relevance | path

Searched refs:cfsetspeed (Results 1 - 18 of 18) sorted by relevance

/third_party/rust/crates/rustix/src/termios/
H A Dcf.rs36 /// `cfsetspeed(termios, speed)`
38 pub fn cfsetspeed(termios: &mut Termios, speed: Speed) -> io::Result<()> { in cfsetspeed() functions
39 backend::termios::syscalls::cfsetspeed(termios, speed) in cfsetspeed()
H A Dmod.rs13 pub use cf::{cfgetispeed, cfgetospeed, cfmakeraw, cfsetispeed, cfsetospeed, cfsetspeed};
/third_party/toybox/toys/pending/
H A Dgetty.c171 if (TT.speeds[0] != B0) cfsetspeed(&TT.termios, TT.speeds[0]); in termios_init()
193 if (speed > 0) cfsetspeed(&TT.termios,speed); in sense_baud()
326 cfsetspeed(&TT.termios, TT.speeds[index]); // Select from multiple speeds in getty_main()
327 //Necessary after cfsetspeed in getty_main()
/third_party/musl/porting/liteos_a/user/src/termios/
H A Dcfsetospeed.c25 weak_alias(cfsetospeed, cfsetspeed);
/third_party/musl/porting/uniproton/kernel/include/
H A Dtermios.h39 int cfsetspeed(struct termios *, speed_t);
/third_party/musl/src/termios/
H A Dcfsetospeed.c25 weak_alias(cfsetospeed, cfsetspeed);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
H A Dtermios.h39 int cfsetspeed(struct termios *, speed_t);
/third_party/musl/porting/liteos_a/kernel/include/
H A Dtermios.h43 int cfsetspeed(struct termios *, speed_t);
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
H A Dtermios.h36 int cfsetspeed(struct termios *, speed_t);
/third_party/musl/porting/liteos_m/kernel/include/
H A Dtermios.h39 int cfsetspeed(struct termios *, speed_t);
/third_party/musl/include/
H A Dtermios.h43 int cfsetspeed(struct termios *, speed_t);
/third_party/musl/libc-test/src/functionalext/supplement/termios/termios_gtest/
H A Dtermios_cfsetspeed_test.cpp15 * @tc.desc: Verify the functionality of the cfsetspeed() function by opening a file, retrieving the current terminal
28 cfsetspeed(&tty, B9600); in HWTEST_F()
/third_party/toybox/lib/
H A Dtty.c74 cfsetspeed(tio, i+1+4081*(i>15)); in xsetspeed()
120 cfsetspeed(&termio, i+1+4081*(i>15)); in set_terminal()
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/
H A Dsyscalls.rs198 pub(crate) fn cfsetspeed(termios: &mut Termios, speed: u32) -> io::Result<()> {
/third_party/rust/crates/libc/src/unix/solarish/
H A Dcompat.rs35 pub unsafe fn cfsetspeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int { in cfsetspeed() functions
/third_party/rust/crates/nix/src/sys/
H A Dtermios.rs58 //! * `cfsetspeed()` - Takes `u32` or `BaudRate` on BSDs, `BaudRate` on Android/Linux
64 //! # use nix::sys::termios::{BaudRate, cfsetispeed, cfsetospeed, cfsetspeed, Termios};
69 //! cfsetspeed(&mut t, BaudRate::B9600).unwrap();
76 //! # use nix::sys::termios::{BaudRate, cfgetispeed, cfgetospeed, cfsetispeed, cfsetspeed, Termios};
79 //! # cfsetspeed(&mut t, BaudRate::B9600).unwrap();
110 //! # use nix::sys::termios::{BaudRate, cfgetispeed, cfgetospeed, cfsetspeed, Termios};
113 //! # cfsetspeed(&mut t, BaudRate::B9600);
143 //! # use nix::sys::termios::{BaudRate, cfgetispeed, cfgetospeed, cfsetspeed, Termios};
146 //! # cfsetspeed(&mut t, 9600u32);
176 //! # use nix::sys::termios::{BaudRate, cfgetispeed, cfsetspeed, Termio
1048 pub fn cfsetspeed<T: Into<u32>>(termios: &mut Termios, baud: T) -> Result<()> { cfsetspeed() functions
1103 pub fn cfsetspeed(termios: &mut Termios, baud: BaudRate) -> Result<()> { cfsetspeed() functions
[all...]
/third_party/rust/crates/libc/src/unix/
H A Dmod.rs1534 pub fn cfsetspeed(termios: *mut ::termios, in cfsetspeed() functions
/third_party/rust/crates/libc/src/fuchsia/
H A Dmod.rs3838 pub fn cfsetspeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int; in cfsetspeed() functions

Completed in 18 milliseconds