Searched defs:VmInstance (Results 1 – 6 of 6) sorted by relevance
/aosp_15_r20/packages/modules/Virtualization/android/virtmgr/src/ |
D | crosvm.rs | 380 pub struct VmInstance { struct 382 pub vm_state: Mutex<VmState>, 385 pub(crate) vm_context: VmContext, 387 pub cid: Cid, 389 crosvm_control_socket_path: PathBuf, 391 pub name: String, 416 impl fmt::Display for VmInstance { argument 427 impl VmInstance { impl 435 ) -> Result<VmInstance, Error> { in new()
|
D | aidl.rs | 1649 fn vms(&self) -> Vec<Arc<VmInstance>> { in vms() 1655 fn add_vm(&mut self, vm: Weak<VmInstance>) { in add_vm() 1664 fn get_vm(&self, cid: Cid) -> Option<Arc<VmInstance>> { in get_vm()
|
/aosp_15_r20/packages/modules/Virtualization/libs/libvmclient/src/ |
D | lib.rs | 167 pub struct VmInstance { struct 169 pub vm: Strong<dyn IVirtualMachine>, 170 cid: i32, 171 state: Arc<Monitor<VmState>>, 174 _death_recipient: DeathRecipient, 203 impl VmInstance { implementation 317 impl Debug for VmInstance { implementation
|
/aosp_15_r20/packages/modules/Virtualization/libs/libavf/src/ |
D | lib.rs | 304 vm_ptr: *mut *mut VmInstance, in AVirtualMachine_createRaw() 396 pub unsafe extern "C" fn AVirtualMachine_destroy(vm: *mut VmInstance) { in AVirtualMachine_destroy()
|
/aosp_15_r20/packages/modules/Virtualization/guest/rialto/tests/ |
D | test.rs | 312 fn vm_instance(vm_type: VmType, vm_memory_mb: Option<i32>) -> Result<VmInstance> { in vm_instance() 322 fn nonprotected_vm_instance(memory_mib: i32) -> Result<VmInstance> { in nonprotected_vm_instance()
|
/aosp_15_r20/packages/modules/Virtualization/libs/libservice_vm_manager/src/ |
D | lib.rs | 150 pub fn start_vm(vm: VmInstance, vm_type: VmType) -> Result<Self> { in start_vm() 217 pub fn protected_vm_instance(instance_img_path: PathBuf) -> Result<VmInstance> { in protected_vm_instance()
|