Searched refs:SocketBroken (Results 1 – 5 of 5) sorted by relevance
/external/rust/crates/vmm_vhost/src/vhost_user/ |
D | mod.rs | 74 SocketBroken(std::io::Error), enumerator 98 Error::SocketBroken(e) => write!(f, "socket is broken: {}", e), in fmt() 117 Error::SocketBroken(_) => true, in should_reconnect() 159 libc::ECONNRESET => Error::SocketBroken(IOError::from_raw_os_error(libc::ECONNRESET)), in from() 162 libc::EPIPE => Error::SocketBroken(IOError::from_raw_os_error(libc::EPIPE)), in from()
|
D | slave_fs_cache.rs | 27 Some(e) => Err(Error::SocketBroken(std::io::Error::from_raw_os_error(e))), in check_state()
|
D | master_req_handler.rs | 268 Some(e) => Err(Error::SocketBroken(std::io::Error::from_raw_os_error(e))), in check_state()
|
D | slave_req_handler.rs | 669 Some(e) => Err(Error::SocketBroken(std::io::Error::from_raw_os_error(e))), in check_state()
|
D | master.rs | 693 Some(e) => Err(VhostUserError::SocketBroken( in check_state()
|