Lines Matching full:vsock
201 /// Cannot create virtio-vsock device
202 #[error("Cannot create virtio-vsock device")]
213 /// Failed to convert Path to &str for the virtio-vsock device.
214 #[error("Failed to convert Path to &str for the virtio-vsock device")]
217 /// Cannot create virtio-vsock backend
218 #[error("Cannot create virtio-vsock backend")]
219 CreateVsockBackend(#[source] virtio_devices::vsock::VsockUnixError),
2469 // Add virtio-vsock if required in make_virtio_devices()
3248 info!("Creating virtio-vsock device: {:?}", vsock_cfg); in make_virtio_vsock_device()
3255 virtio_devices::vsock::VsockUnixBackend::new(vsock_cfg.cid, socket_path.to_string()) in make_virtio_vsock_device()
3259 virtio_devices::Vsock::new( in make_virtio_vsock_device()
3296 let mut vsock = self.config.lock().unwrap().vsock.clone(); in make_virtio_vsock_devices() localVariable
3297 if let Some(ref mut vsock_cfg) = &mut vsock { in make_virtio_vsock_devices()
3300 self.config.lock().unwrap().vsock = vsock; in make_virtio_vsock_devices()
4386 | VirtioDeviceType::Vsock => {} in remove_device()