Home
last modified time | relevance | path

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

/packages/modules/Virtualization/android/forwarder_host/src/
Dforwarder_host.rs62 PollContextAdd(vmm_sys_util::errno::Error), enumerator
89 PollContextAdd(e) => write!(f, "failed to add fd to poll context: {}", e), in fmt()
187 .map_err(Error::PollContextAdd)?; in process_update_queue()
190 .map_err(Error::PollContextAdd)?; in process_update_queue()
237 .map_err(Error::PollContextAdd)?; in accept_connection()
240 .map_err(Error::PollContextAdd)?; in accept_connection()
279 poll_ctx.add(&*UPDATE_EVT, Token::UpdatePorts).map_err(Error::PollContextAdd)?; in run()
280 poll_ctx.add(&*SHUTDOWN_EVT, Token::Shutdown).map_err(Error::PollContextAdd)?; in run()
353 poll_ctx.add(&vsock_listener, Token::VsockAccept).map_err(Error::PollContextAdd)?; in create_forwarder_session()
/packages/modules/Virtualization/guest/forwarder_guest/src/
Dmain.rs34 PollContextAdd(vmm_sys_util::errno::Error), enumerator
51 PollContextAdd(e) => write!(f, "failed to add fd to poll context: {}", e), in fmt()
66 poll_ctx.add(&local_stream, Token::LocalStreamReadable).map_err(Error::PollContextAdd)?; in run_forwarder()
67 poll_ctx.add(&remote_stream, Token::RemoteStreamReadable).map_err(Error::PollContextAdd)?; in run_forwarder()