Home
last modified time | relevance | path

Searched refs:cfsetspeed (Results 1 – 23 of 23) sorted by relevance

/third_party/rust/crates/rustix/src/termios/
Dcf.rs38 pub fn cfsetspeed(termios: &mut Termios, speed: Speed) -> io::Result<()> { in cfsetspeed() function
39 backend::termios::syscalls::cfsetspeed(termios, speed) in cfsetspeed()
Dmod.rs13 pub use cf::{cfgetispeed, cfgetospeed, cfmakeraw, cfsetispeed, cfsetospeed, cfsetspeed};
/third_party/toybox/toys/pending/
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()
/third_party/rust/crates/rustix/src/backend/libc/termios/
Dsyscalls.rs140 pub(crate) fn cfsetspeed(termios: &mut Termios, speed: Speed) -> io::Result<()> { in cfsetspeed() function
141 unsafe { ret(c::cfsetspeed(termios, speed)) } in cfsetspeed()
/third_party/toybox/lib/
Dtty.c74 cfsetspeed(tio, i+1+4081*(i>15)); in xsetspeed()
120 cfsetspeed(&termio, i+1+4081*(i>15)); in set_terminal()
/third_party/musl/porting/liteos_a/user/src/termios/
Dcfsetospeed.c25 weak_alias(cfsetospeed, cfsetspeed);
/third_party/musl/src/termios/
Dcfsetospeed.c25 weak_alias(cfsetospeed, cfsetspeed);
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/
Dtermios.h36 int cfsetspeed(struct termios *, speed_t);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dtermios.h39 int cfsetspeed(struct termios *, speed_t);
/third_party/musl/porting/liteos_m/kernel/include/
Dtermios.h39 int cfsetspeed(struct termios *, speed_t);
/third_party/musl/porting/uniproton/kernel/include/
Dtermios.h39 int cfsetspeed(struct termios *, speed_t);
/third_party/musl/libc-test/src/functionalext/supplement/termios/termios_gtest/
Dtermios_cfsetspeed_test.cpp28 cfsetspeed(&tty, B9600);
/third_party/musl/include/
Dtermios.h43 int cfsetspeed(struct termios *, speed_t);
/third_party/musl/porting/liteos_a/kernel/include/
Dtermios.h43 int cfsetspeed(struct termios *, speed_t);
/third_party/rust/crates/nix/src/sys/
Dtermios.rs1048 pub fn cfsetspeed<T: Into<u32>>(termios: &mut Termios, baud: T) -> Result<()> {
1050 let res = unsafe { libc::cfsetspeed(inner_termios, baud.into() as libc::speed_t) };
1103 pub fn cfsetspeed(termios: &mut Termios, baud: BaudRate) -> Result<()> {
1105 let res = unsafe { libc::cfsetspeed(inner_termios, baud as libc::speed_t) };
/third_party/rust/crates/libc/src/unix/solarish/
Dcompat.rs35 pub unsafe fn cfsetspeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int { in cfsetspeed() function
/third_party/rust/crates/rustix/src/backend/linux_raw/termios/
Dsyscalls.rs198 pub(crate) fn cfsetspeed(termios: &mut Termios, speed: u32) -> io::Result<()> { in cfsetspeed() function
/third_party/rust/crates/libc/libc-test/semver/
Dunix.txt482 cfsetspeed
Dandroid.txt2887 cfsetspeed
/third_party/musl/
Dlibc.map.txt436 cfsetspeed;
/third_party/rust/crates/libc/src/unix/
Dmod.rs1534 pub fn cfsetspeed(termios: *mut ::termios,
/third_party/rust/crates/libc/src/fuchsia/
Dmod.rs3838 pub fn cfsetspeed(termios: *mut ::termios, speed: ::speed_t) -> ::c_int; in cfsetspeed() function
/third_party/rust/crates/nix/
DCHANGELOG.md1280 - Added `cfmakeraw`, `cfsetspeed`, and `tcgetsid`. ([#527](https://github.com/nix-rust/nix/pull/527…