Home
last modified time | relevance | path

Searched refs:vhost_net_device_path (Results 1 – 5 of 5) sorted by relevance

/external/crosvm/vhost/src/
Dnet.rs32 fn new(vhost_net_device_path: &PathBuf, mem: &GuestMemory) -> Result<Self>; in new()
51 fn new(vhost_net_device_path: &PathBuf, mem: &GuestMemory) -> Result<Net<T>> { in new()
57 .open(vhost_net_device_path) in new()
/external/crosvm/src/
Dcrosvm.rs198 pub vhost_net_device_path: PathBuf, field
274 vhost_net_device_path: PathBuf::from(VHOST_NET_PATH), in default()
Dmain.rs785 let vhost_net_device_path = PathBuf::from(value.unwrap()); in set_argument() localVariable
786 if !vhost_net_device_path.exists() { in set_argument()
793 cfg.vhost_net_device_path = vhost_net_device_path; in set_argument()
Dlinux.rs813 &cfg.vhost_net_device_path, in create_net_device()
/external/crosvm/devices/src/virtio/vhost/
Dnet.rs48 vhost_net_device_path: &PathBuf, in new()
75 let vhost_net_handle = U::new(vhost_net_device_path, mem).map_err(Error::VhostOpen)?; in new()