Lines Matching refs:GuestAddress
41 use vm_memory::{GuestAddress, GuestMemory};
452 guest_addr: GuestAddress, in add_memory_region() argument
1169 use vm_memory::GuestAddress;
1196 let gm = GuestMemory::new(&[(GuestAddress(0), 0x1000)]).unwrap(); in create_vm()
1203 let gm = GuestMemory::new(&[(GuestAddress(0), 0x1000)]).unwrap(); in clone_vm()
1211 let gm = GuestMemory::new(&[(GuestAddress(0), 0x1000)]).unwrap(); in send_vm()
1223 let gm = GuestMemory::new(&[(GuestAddress(0), 0x1000)]).unwrap(); in check_vm_capability()
1233 let gm = GuestMemory::new(&[(GuestAddress(0), 0x10000)]).unwrap(); in create_vcpu()
1241 let gm = GuestMemory::new(&[(GuestAddress(0), 0x1000)]).unwrap(); in get_memory()
1243 let obj_addr = GuestAddress(0xf0); in get_memory()
1253 GuestMemory::new(&[(GuestAddress(0), 0x1000), (GuestAddress(0x5000), 0x5000)]).unwrap(); in add_memory()
1257 vm.add_memory_region(GuestAddress(0x1000), Box::new(mem), false, false) in add_memory()
1260 vm.add_memory_region(GuestAddress(0x10000), Box::new(mem), false, false) in add_memory()
1267 let gm = GuestMemory::new(&[(GuestAddress(0), 0x1000)]).unwrap(); in add_memory_ro()
1271 vm.add_memory_region(GuestAddress(0x1000), Box::new(mem), true, false) in add_memory_ro()
1278 let gm = GuestMemory::new(&[(GuestAddress(0), 0x1000)]).unwrap(); in remove_memory()
1284 .add_memory_region(GuestAddress(0x1000), Box::new(mem), false, false) in remove_memory()
1294 let gm = GuestMemory::new(&[(GuestAddress(0), 0x1000)]).unwrap(); in remove_invalid_memory()
1302 let gm = GuestMemory::new(&[(GuestAddress(0), 0x10000)]).unwrap(); in overlap_memory()
1307 .add_memory_region(GuestAddress(0x2000), Box::new(mem), false, false) in overlap_memory()
1315 GuestMemory::new(&[(GuestAddress(0), 0x1000), (GuestAddress(0x5000), 0x5000)]).unwrap(); in sync_memory()
1320 .add_memory_region(GuestAddress(0x1000), Box::new(mem), false, false) in sync_memory()
1330 let gm = GuestMemory::new(&[(GuestAddress(0), 0x10000)]).unwrap(); in register_irqfd()
1345 let gm = GuestMemory::new(&[(GuestAddress(0), 0x10000)]).unwrap(); in unregister_irqfd()
1362 let gm = GuestMemory::new(&[(GuestAddress(0), 0x10000)]).unwrap(); in irqfd_resample()
1377 let gm = GuestMemory::new(&[(GuestAddress(0), 0x10000)]).unwrap(); in set_signal_mask()
1395 let gm = GuestMemory::new(&[(GuestAddress(0), 0x10000)]).unwrap(); in register_ioevent()
1431 let gm = GuestMemory::new(&[(GuestAddress(0), 0x10000)]).unwrap(); in unregister_ioevent()