Searched refs:inner_termios (Results 1 – 2 of 2) sorted by relevance
1006 let inner_termios = termios.get_libc_termios(); localVariable1007 unsafe { libc::cfgetispeed(&*inner_termios) as u32 }1017 let inner_termios = termios.get_libc_termios(); localVariable1018 unsafe { libc::cfgetospeed(&*inner_termios) as u32 }1026 let inner_termios = unsafe { termios.get_libc_termios_mut() }; localVariable1027 let res = unsafe { libc::cfsetispeed(inner_termios, baud.into() as libc::speed_t) };1037 let inner_termios = unsafe { termios.get_libc_termios_mut() }; localVariable1038 let res = unsafe { libc::cfsetospeed(inner_termios, baud.into() as libc::speed_t) };1049 let inner_termios = unsafe { termios.get_libc_termios_mut() }; localVariable1050 let res = unsafe { libc::cfsetspeed(inner_termios, baud.into() as libc::speed_t) };[all …]
263 let inner_termios = termios.get_libc_termios(); in openpty() localVariable269 &*inner_termios as *const libc::termios as *mut _, in openpty()284 let inner_termios = termios.get_libc_termios(); in openpty() localVariable290 &*inner_termios as *const libc::termios as *mut _, in openpty()348 let inner_termios = termios.get_libc_termios(); localVariable349 &*inner_termios as *const libc::termios as *mut _