Home
last modified time | relevance | path

Searched refs:inner_termios (Results 1 – 2 of 2) sorted by relevance

/third_party/rust/crates/nix/src/sys/
Dtermios.rs1006 let inner_termios = termios.get_libc_termios(); localVariable
1007 unsafe { libc::cfgetispeed(&*inner_termios) as u32 }
1017 let inner_termios = termios.get_libc_termios(); localVariable
1018 unsafe { libc::cfgetospeed(&*inner_termios) as u32 }
1026 let inner_termios = unsafe { termios.get_libc_termios_mut() }; localVariable
1027 let res = unsafe { libc::cfsetispeed(inner_termios, baud.into() as libc::speed_t) };
1037 let inner_termios = unsafe { termios.get_libc_termios_mut() }; localVariable
1038 let res = unsafe { libc::cfsetospeed(inner_termios, baud.into() as libc::speed_t) };
1049 let inner_termios = unsafe { termios.get_libc_termios_mut() }; localVariable
1050 let res = unsafe { libc::cfsetspeed(inner_termios, baud.into() as libc::speed_t) };
[all …]
/third_party/rust/crates/nix/src/
Dpty.rs263 let inner_termios = termios.get_libc_termios(); in openpty() localVariable
269 &*inner_termios as *const libc::termios as *mut _, in openpty()
284 let inner_termios = termios.get_libc_termios(); in openpty() localVariable
290 &*inner_termios as *const libc::termios as *mut _, in openpty()
348 let inner_termios = termios.get_libc_termios(); localVariable
349 &*inner_termios as *const libc::termios as *mut _