Home
last modified time | relevance | path

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

/aosp_15_r20/external/crosvm/devices/src/virtio/vhost_user_frontend/
H A 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 …]
H A Dfs.rs15 impl VhostUserFrontend { implementation
21 ) -> Result<VhostUserFrontend> { in new_fs()