Searched refs:add_fd_flags (Results 1 – 3 of 3) sorted by relevance
/external/crosvm/sys_util/src/ |
D | terminal.rs | 14 use crate::{add_fd_flags, clear_fd_flags, errno_result, Result}; 84 add_fd_flags(self.tty_fd(), O_NONBLOCK) in set_non_block()
|
D | lib.rs | 466 pub fn add_fd_flags(fd: RawFd, set_flags: c_int) -> Result<()> { in add_fd_flags() function 508 add_fd_flags(tx.as_raw_fd(), libc::O_NONBLOCK).expect("Failed to set tx non blocking"); in pipe_size_and_fill()
|
/external/crosvm/cros_async/src/ |
D | fd_executor.rs | 26 use sys_util::{add_fd_flags, warn, EpollContext, EpollEvents, EventFd, WatchingEvents}; 188 add_fd_flags(notify.as_raw_fd(), libc::O_NONBLOCK) in notify_task() 497 add_fd_flags(f.as_raw_fd(), libc::O_NONBLOCK).map_err(Error::SettingNonBlocking)?; in register_source()
|