Home
last modified time | relevance | path

Searched defs:VhostUserFrontend (Results 1 – 3 of 3) sorted by relevance

/external/crosvm/devices/src/virtio/vhost_user_frontend/
Dmod.rs55 pub struct VhostUserFrontend { struct
56 device_type: DeviceType,
57 worker_thread: Option<WorkerThread<Option<BackendReqHandler>>>,
59 backend_client: Arc<Mutex<BackendClient>>,
60 avail_features: u64,
61 acked_features: u64,
62 protocol_features: VhostUserProtocolFeatures,
66 backend_req_handler: Option<BackendReqHandler>,
68 shmem_region: RefCell<Option<Option<SharedMemoryRegion>>>,
93 impl VhostUserFrontend { argument
[all …]
Dfs.rs15 impl VhostUserFrontend { implementation
21 ) -> Result<VhostUserFrontend> { in new_fs()
/external/rust/android-crates-io/crates/vhost/src/vhost_user/
Dfrontend.rs25 pub trait VhostUserFrontend: VhostBackend { trait