Home
last modified time | relevance | path

Searched defs:vm (Results 1 – 25 of 1354) sorted by relevance

12345678910>>...55

/aosp_15_r20/art/compiler/utils/riscv64/
H A Dassembler_riscv64.cc1799 void Riscv64Assembler::VLe8(VRegister vd, XRegister rs1, VM vm) { in VLe8()
1806 void Riscv64Assembler::VLe16(VRegister vd, XRegister rs1, VM vm) { in VLe16()
1813 void Riscv64Assembler::VLe32(VRegister vd, XRegister rs1, VM vm) { in VLe32()
1820 void Riscv64Assembler::VLe64(VRegister vd, XRegister rs1, VM vm) { in VLe64()
1827 void Riscv64Assembler::VSe8(VRegister vs3, XRegister rs1, VM vm) { in VSe8()
1833 void Riscv64Assembler::VSe16(VRegister vs3, XRegister rs1, VM vm) { in VSe16()
1839 void Riscv64Assembler::VSe32(VRegister vs3, XRegister rs1, VM vm) { in VSe32()
1845 void Riscv64Assembler::VSe64(VRegister vs3, XRegister rs1, VM vm) { in VSe64()
1887 void Riscv64Assembler::VLse8(VRegister vd, XRegister rs1, XRegister rs2, VM vm) { in VLse8()
1894 void Riscv64Assembler::VLse16(VRegister vd, XRegister rs1, XRegister rs2, VM vm) { in VLse16()
[all …]
/aosp_15_r20/external/bc/src/
H A Dlibrary.c123 bcl_setspecific(BcVm* vm) in bcl_setspecific()
151 BcVm* vm; in bcl_getspecific() local
170 BcVm* vm; in bcl_init() local
249 BcVm* vm = bcl_getspecific(); in bcl_pushContext() local
264 BcVm* vm = bcl_getspecific(); in bcl_popContext() local
270 bcl_contextHelper(BcVm* vm) in bcl_contextHelper()
279 BcVm* vm = bcl_getspecific(); in bcl_context() local
287 BcVm* vm = bcl_getspecific(); in bcl_free() local
338 BcVm* vm = bcl_getspecific(); in bcl_abortOnFatalError() local
346 BcVm* vm = bcl_getspecific(); in bcl_setAbortOnFatalError() local
[all …]
H A Dvm.c78 BcVm* vm = &vm_data; variable
93 BcVm* vm = bcl_getspecific(); local
333 BcVm* vm = bcl_getspecific(); local
714 BcVm* vm = bcl_getspecific(); local
733 BcVm* vm = bcl_getspecific(); local
749 BcVm* vm = bcl_getspecific(); local
764 BcVm* vm = bcl_getspecific(); local
894 BcVm* vm = bcl_getspecific(); local
915 BcVm* vm = bcl_getspecific(); local
1103 BcVm* vm = bcl_getspecific(); local
[all …]
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/kvm/lib/
H A Dkvm_util.c122 void vm_enable_dirty_ring(struct kvm_vm *vm, uint32_t ring_size) in vm_enable_dirty_ring()
131 static void vm_open(struct kvm_vm *vm) in vm_open()
190 struct kvm_vm *vm; in ____vm_create() local
337 struct kvm_vm *vm; in __vm_create() local
372 struct kvm_vm *vm; in __vm_create_with_vcpus() local
390 struct kvm_vm *vm; in __vm_create_with_one_vcpu() local
433 __weak struct kvm_vcpu *vm_arch_vcpu_recreate(struct kvm_vm *vm, in vm_arch_vcpu_recreate()
439 struct kvm_vcpu *vm_recreate_with_one_vcpu(struct kvm_vm *vm) in vm_recreate_with_one_vcpu()
466 userspace_mem_region_find(struct kvm_vm *vm, uint64_t start, uint64_t end) in userspace_mem_region_find()
505 kvm_userspace_memory_region_find(struct kvm_vm *vm, uint64_t start, in kvm_userspace_memory_region_find()
[all …]
/aosp_15_r20/packages/modules/Virtualization/tests/testapk/src/java/com/android/microdroid/test/
DMicrodroidTests.java188 VirtualMachine vm = forceCreateNewVirtualMachine("test_vm", config); in createAndConnectToVmHelper() local
239 VirtualMachine vm = in vmAttestationWhenRemoteAttestationIsNotSupported() local
266 VirtualMachine vm = in vmAttestationWithVendorPartitionWhenSupported() local
286 VirtualMachine vm = in vmAttestationWhenRemoteAttestationIsSupported() local
302 private void checkVmAttestationWithValidChallenge(VirtualMachine vm) throws Exception { in checkVmAttestationWithValidChallenge()
333 VirtualMachine vm = forceCreateNewVirtualMachine("test_vm", config); in createAndRunNoDebugVm() local
352 try (VirtualMachine vm = forceCreateNewVirtualMachine("test_vm", config)) { in autoCloseVm()
357 try (VirtualMachine vm = getVirtualMachineManager().get("test_vm")) { in autoCloseVm()
363 try (VirtualMachine vm = getVirtualMachineManager().get("test_vm")) { in autoCloseVm()
378 VirtualMachine vm = forceCreateNewVirtualMachine("test_vm", config); in autoCloseVmDescriptor() local
[all …]
/aosp_15_r20/external/crosvm/kvm/tests/
H A Dkvm_tests.rs75 let vm = Vm::new(&kvm, gm).unwrap(); in check_vm_extension() localVariable
113 let mut vm = Vm::new(&kvm, gm).unwrap(); in add_memory() localVariable
132 let mut vm = Vm::new(&kvm, gm).unwrap(); in add_memory_ro() localVariable
143 let mut vm = Vm::new(&kvm, gm).unwrap(); in remove_memory_region() localVariable
159 let mut vm = Vm::new(&kvm, gm).unwrap(); in remove_invalid_memory() localVariable
167 let mut vm = Vm::new(&kvm, gm).unwrap(); in overlap_memory() localVariable
184 let vm = Vm::new(&kvm, gm).unwrap(); in get_memory() localVariable
196 let vm = Vm::new(&kvm, gm).unwrap(); in clock_handling() localVariable
207 let vm = Vm::new(&kvm, gm).unwrap(); in pic_handling() localVariable
218 let vm = Vm::new(&kvm, gm).unwrap(); in ioapic_handling() localVariable
[all …]
/aosp_15_r20/external/crosvm/e2e_tests/tests/
H A Dboot.rs12 let mut vm = TestVm::new(Config::new()).unwrap(); in boot_test_vm() localVariable
25 let mut vm = TestVm::new(cfg).unwrap(); in boot_custom_vm_kernel_initrd() localVariable
39 let mut vm = TestVm::new( in boot_test_vm_uring() localVariable
50 let mut vm = TestVm::new(Config::new().o_direct()).unwrap(); in boot_test_vm_odirect() localVariable
57 let mut vm = TestVm::new_with_config_file(Config::new()).unwrap(); in boot_test_vm_config_file() localVariable
70 let mut vm = TestVm::new(Config::new()).unwrap(); in vcpu_suspend_resume_succeeds() localVariable
83 let mut vm = TestVm::new(config).unwrap(); in vcpu_suspend_resume_succeeds_with_pvclock() localVariable
106 let mut vm = TestVm::new(config).unwrap(); in full_suspend_resume_test_suspend_resume_full() localVariable
125 let mut vm = TestVm::new(config).unwrap(); in full_suspend_resume_with_pvclock() localVariable
149 let mut vm = TestVm::new(config).unwrap(); in vcpu_suspend_resume_with_pvclock_adjusts_guest_clocks() localVariable
[all …]
H A Dvsock.rs52 let mut vm = TestVm::new(config).unwrap(); in host_to_guest() localVariable
64 let mut vm = TestVm::new(config).unwrap(); in host_to_guest_disable_sandbox() localVariable
80 let mut vm = TestVm::new(config).unwrap(); in host_to_guest_snapshot_restore() localVariable
111 let mut vm = TestVm::new(config.disable_sandbox()).unwrap(); in host_to_guest_disable_sandbox_snapshot_restore() localVariable
165 let mut vm = TestVm::new(config).unwrap(); in guest_to_host() localVariable
176 let mut vm = TestVm::new(config).unwrap(); in guest_to_host_disable_sandbox() localVariable
191 let mut vm = TestVm::new(config).unwrap(); in guest_to_host_snapshot_restore() localVariable
222 let mut vm = TestVm::new(config).unwrap(); in guest_to_host_disable_sandbox_snapshot_restore() localVariable
298 let mut vm = TestVm::new(config).unwrap(); in vhost_user_host_to_guest() localVariable
317 let mut vm = TestVm::new(config).unwrap(); in vhost_user_host_to_guest_with_devices() localVariable
[all …]
H A Dswap.rs81 let mut vm = TestVm::new_sudo(config).unwrap(); in swap_enabled_impl() localVariable
122 let mut vm = TestVm::new_sudo(config).unwrap(); in swap_out_multiple_times_impl() localVariable
183 let mut vm = TestVm::new_sudo(config).unwrap(); in swap_disabled_without_swapped_out_impl() localVariable
208 let mut vm = TestVm::new_sudo(config).unwrap(); in stopped_with_swap_enabled_impl() localVariable
242 let mut vm = TestVm::new_sudo(config).unwrap(); in memory_contents_preserved_while_vmm_swap_enabled_impl() localVariable
263 let mut vm = TestVm::new_sudo(config).unwrap(); in memory_contents_preserved_after_vmm_swap_out_impl() localVariable
300 let mut vm = TestVm::new_sudo(config).unwrap(); in memory_contents_preserved_after_vmm_swap_disabled_impl() localVariable
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/kvm/lib/aarch64/
H A Dprocessor.c19 static uint64_t page_align(struct kvm_vm *vm, uint64_t v) in page_align()
24 static uint64_t pgd_index(struct kvm_vm *vm, vm_vaddr_t gva) in pgd_index()
32 static uint64_t pud_index(struct kvm_vm *vm, vm_vaddr_t gva) in pud_index()
43 static uint64_t pmd_index(struct kvm_vm *vm, vm_vaddr_t gva) in pmd_index()
54 static uint64_t pte_index(struct kvm_vm *vm, vm_vaddr_t gva) in pte_index()
60 static uint64_t pte_addr(struct kvm_vm *vm, uint64_t entry) in pte_addr()
66 static uint64_t ptrs_per_pgd(struct kvm_vm *vm) in ptrs_per_pgd()
72 static uint64_t __maybe_unused ptrs_per_pte(struct kvm_vm *vm) in ptrs_per_pte()
77 void virt_arch_pgd_alloc(struct kvm_vm *vm) in virt_arch_pgd_alloc()
88 static void _virt_pg_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr, in _virt_pg_map()
[all …]
/aosp_15_r20/external/crosvm/hypervisor/tests/kvm/
H A Dmain.rs74 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in clone_vm() localVariable
82 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in send_vm() localVariable
94 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in check_vm_capability() localVariable
104 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in create_vcpu() localVariable
112 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in get_memory() localVariable
127 let mut vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in add_memory() localVariable
153 let mut vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in add_memory_ro() localVariable
170 let mut vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in remove_memory() localVariable
192 let mut vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in remove_invalid_memory() localVariable
200 let mut vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in overlap_memory() localVariable
[all …]
H A Dx86_64.rs61 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in check_vm_arch_capability() localVariable
243 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in clock_handling() localVariable
253 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in set_gsi_routing() localVariable
295 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in set_identity_map_addr() localVariable
303 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in mp_state() localVariable
314 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in enable_feature() localVariable
340 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in debugregs() localVariable
357 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in xcrs() localVariable
369 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in get_msr() localVariable
384 let vm = KvmVm::new(&kvm, gm, Default::default()).unwrap(); in set_msr() localVariable
[all …]
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/kvm/lib/x86_64/
H A Dprocessor.c122 void virt_arch_pgd_alloc(struct kvm_vm *vm) in virt_arch_pgd_alloc()
134 static void *virt_get_pte(struct kvm_vm *vm, uint64_t pt_pfn, uint64_t vaddr, in virt_get_pte()
143 static uint64_t *virt_create_upper_pte(struct kvm_vm *vm, in virt_create_upper_pte()
174 void __virt_pg_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr, int level) in __virt_pg_map()
220 void virt_arch_pg_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr) in virt_arch_pg_map()
225 void virt_map_level(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr, in virt_map_level()
244 static uint64_t *_vm_get_page_table_entry(struct kvm_vm *vm, in _vm_get_page_table_entry()
316 uint64_t vm_get_page_table_entry(struct kvm_vm *vm, struct kvm_vcpu *vcpu, in vm_get_page_table_entry()
324 void vm_set_page_table_entry(struct kvm_vm *vm, struct kvm_vcpu *vcpu, in vm_set_page_table_entry()
332 void virt_arch_dump(FILE *stream, struct kvm_vm *vm, uint8_t indent) in virt_arch_dump()
[all …]
H A Dvmx.c75 vcpu_alloc_vmx(struct kvm_vm *vm, vm_vaddr_t *p_vmx_gva) in vcpu_alloc_vmx()
387 static void nested_create_pte(struct kvm_vm *vm, in nested_create_pte()
419 void __nested_pg_map(struct vmx_pages *vmx, struct kvm_vm *vm, in __nested_pg_map()
470 void nested_pg_map(struct vmx_pages *vmx, struct kvm_vm *vm, in nested_pg_map()
493 void __nested_map(struct vmx_pages *vmx, struct kvm_vm *vm, in __nested_map()
510 void nested_map(struct vmx_pages *vmx, struct kvm_vm *vm, in nested_map()
519 void nested_map_memslot(struct vmx_pages *vmx, struct kvm_vm *vm, in nested_map_memslot()
541 void nested_identity_map_1g(struct vmx_pages *vmx, struct kvm_vm *vm, in nested_identity_map_1g()
547 bool kvm_vm_has_ept(struct kvm_vm *vm) in kvm_vm_has_ept()
563 void prepare_eptp(struct vmx_pages *vmx, struct kvm_vm *vm, in prepare_eptp()
[all …]
/aosp_15_r20/external/crosvm/hypervisor/tests/
H A Dmmio_and_pio.rs22 let vm = KvmVm::new(&kvm, guest_mem, Default::default()).expect("failed to create vm"); in test_kvm_mmio_and_pio() localVariable
33 let vm = HaxmVm::new(&haxm, guest_mem).expect("failed to create vm"); in test_haxm_mmio_and_pio() localVariable
47 let vm = in test_whpx_mmio_and_pio() localVariable
59 let vm = GvmVm::new(&gvm, guest_mem).expect("failed to create vm"); in test_gvm_mmio_and_pio() localVariable
175 let vm = KvmVm::new(&kvm, guest_mem, Default::default()).expect("failed to create vm"); in test_kvm_pio_out() localVariable
186 let vm = HaxmVm::new(&haxm, guest_mem).expect("failed to create vm"); in test_haxm_pio_out() localVariable
200 let vm = in test_whpx_pio_out() localVariable
212 let vm = GvmVm::new(&gvm, guest_mem).expect("failed to create vm"); in test_gvm_pio_out() localVariable
311 let vm = KvmVm::new(&kvm, guest_mem, Default::default()).expect("failed to create vm"); in test_kvm_pio_in() localVariable
322 let vm = HaxmVm::new(&haxm, guest_mem).expect("failed to create vm"); in test_haxm_pio_in() localVariable
[all …]
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/kvm/lib/riscv/
H A Dprocessor.c16 static uint64_t page_align(struct kvm_vm *vm, uint64_t v) in page_align()
21 static uint64_t pte_addr(struct kvm_vm *vm, uint64_t entry) in pte_addr()
27 static uint64_t ptrs_per_pte(struct kvm_vm *vm) in ptrs_per_pte()
46 static uint64_t pte_index(struct kvm_vm *vm, vm_vaddr_t gva, int level) in pte_index()
56 void virt_arch_pgd_alloc(struct kvm_vm *vm) in virt_arch_pgd_alloc()
67 void virt_arch_pg_map(struct kvm_vm *vm, uint64_t vaddr, uint64_t paddr) in virt_arch_pg_map()
111 vm_paddr_t addr_arch_gva2gpa(struct kvm_vm *vm, vm_vaddr_t gva) in addr_arch_gva2gpa()
140 static void pte_dump(FILE *stream, struct kvm_vm *vm, uint8_t indent, in pte_dump()
162 void virt_arch_dump(FILE *stream, struct kvm_vm *vm, uint8_t indent) in virt_arch_dump()
183 struct kvm_vm *vm = vcpu->vm; in riscv_vcpu_mmu_setup() local
[all …]
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/kvm/include/
H A Dkvm_util_base.h51 struct kvm_vm *vm; member
98 #define kvm_for_each_vcpu(vm, i, vcpu) \ argument
215 static __always_inline void static_assert_is_vm(struct kvm_vm *vm) { } in static_assert_is_vm()
217 #define __vm_ioctl(vm, cmd, arg) \ argument
223 #define _vm_ioctl(vm, cmd, name, arg) \ argument
230 #define vm_ioctl(vm, cmd, arg) \ argument
256 static inline int vm_check_cap(struct kvm_vm *vm, long cap) in vm_check_cap()
264 static inline int __vm_enable_cap(struct kvm_vm *vm, uint32_t cap, uint64_t arg0) in __vm_enable_cap()
270 static inline void vm_enable_cap(struct kvm_vm *vm, uint32_t cap, uint64_t arg0) in vm_enable_cap()
290 static inline void kvm_vm_get_dirty_log(struct kvm_vm *vm, int slot, void *log) in kvm_vm_get_dirty_log()
[all …]
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/kvm/
H A Ddirty_log_perf_test.c30 static void arch_setup_vm(struct kvm_vm *vm, unsigned int nr_vcpus) in arch_setup_vm()
39 static void arch_cleanup_vm(struct kvm_vm *vm) in arch_cleanup_vm()
47 static void arch_setup_vm(struct kvm_vm *vm, unsigned int nr_vcpus) in arch_setup_vm()
51 static void arch_cleanup_vm(struct kvm_vm *vm) in arch_cleanup_vm()
137 static void toggle_dirty_logging(struct kvm_vm *vm, int slots, bool enable) in toggle_dirty_logging()
149 static inline void enable_dirty_logging(struct kvm_vm *vm, int slots) in enable_dirty_logging()
154 static inline void disable_dirty_logging(struct kvm_vm *vm, int slots) in disable_dirty_logging()
159 static void get_dirty_log(struct kvm_vm *vm, unsigned long *bitmaps[], int slots) in get_dirty_log()
170 static void clear_dirty_log(struct kvm_vm *vm, unsigned long *bitmaps[], in clear_dirty_log()
211 struct kvm_vm *vm; in run_test() local
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/kvm/lib/s390x/
H A Dprocessor.c13 void virt_arch_pgd_alloc(struct kvm_vm *vm) in virt_arch_pgd_alloc()
36 static uint64_t virt_alloc_region(struct kvm_vm *vm, int ri) in virt_alloc_region()
49 void virt_arch_pg_map(struct kvm_vm *vm, uint64_t gva, uint64_t gpa) in virt_arch_pg_map()
88 vm_paddr_t addr_arch_gva2gpa(struct kvm_vm *vm, vm_vaddr_t gva) in addr_arch_gva2gpa()
113 static void virt_dump_ptes(FILE *stream, struct kvm_vm *vm, uint8_t indent, in virt_dump_ptes()
127 static void virt_dump_region(FILE *stream, struct kvm_vm *vm, uint8_t indent, in virt_dump_region()
149 void virt_arch_dump(FILE *stream, struct kvm_vm *vm, uint8_t indent) in virt_arch_dump()
157 struct kvm_vcpu *vm_arch_vcpu_add(struct kvm_vm *vm, uint32_t vcpu_id, in vm_arch_vcpu_add()
/aosp_15_r20/packages/modules/Virtualization/android/TerminalApp/java/com/android/virtualization/terminal/
DRunner.java38 private Runner(VirtualMachine vm, Callback cb) { in Runner()
60 VirtualMachine vm = vmm.getOrCreate(name, config); in create() local
89 public void onPayloadStarted(VirtualMachine vm) { in onPayloadStarted()
94 public void onPayloadReady(VirtualMachine vm) { in onPayloadReady()
99 public void onPayloadFinished(VirtualMachine vm, int exitCode) { in onPayloadFinished()
104 public void onError(VirtualMachine vm, int errorCode, String message) { in onError()
110 public void onStopped(VirtualMachine vm, int reason) { in onStopped()
/aosp_15_r20/packages/modules/Virtualization/tests/benchmark/src/java/com/android/microdroid/benchmark/
DMicrodroidBenchmarks.java357 VirtualMachine vm = forceCreateNewVirtualMachine(vmName, config); in testVsockTransferFromHostToVM() local
389 VirtualMachine vm = forceCreateNewVirtualMachine(vmName, config); in testVirtioBlkReadRate() local
418 public void onPayloadReady(VirtualMachine vm, IBenchmarkService benchmarkService) in onPayloadReady()
532 VirtualMachine vm = forceCreateNewVirtualMachine(vmName, config); in testMemoryUsage() local
595 public void onPayloadReady(VirtualMachine vm, IBenchmarkService service) in onPayloadReady()
619 VirtualMachine vm = forceCreateNewVirtualMachine(vmName, config); in testMemoryReclaim() local
669 public void onPayloadReady(VirtualMachine vm, IBenchmarkService service) in onPayloadReady()
703 public void onPayloadReady(VirtualMachine vm, IBenchmarkService benchmarkService) in onPayloadReady()
718 private double runVsockClientAndSendData(VirtualMachine vm) { in runVsockClientAndSendData()
746 VirtualMachine vm = forceCreateNewVirtualMachine("test_vm_latency" + i, config); in testRpcBinderLatency() local
[all …]
/aosp_15_r20/external/bc/include/
H A Dstatus.h679 #define BC_SIG_EXC(vm) \ argument
683 #define BC_NO_SIG_EXC(vm) \ argument
687 #define BC_SIG_INTERRUPT(vm) \ argument
690 #define BC_SIG_INTERRUPT(vm) BC_UNLIKELY((vm)->sig != 0) argument
817 #define BC_SETJMP_LOCKED(vm, l) \ argument
835 #define BC_LONGJMP_CONT(vm) \ argument
855 #define BC_SIG_EXC(vm) \ argument
859 #define BC_NO_SIG_EXC(vm) \ argument
866 #define BC_LONGJMP_CONT(vm) \ argument
886 #define BC_SETJMP(vm, l) \ argument
[all …]
/aosp_15_r20/packages/modules/Virtualization/tests/helper/src/java/com/android/microdroid/test/device/
DMicrodroidDeviceTestBase.java330 public void runToFinish(String logTag, VirtualMachine vm) in runToFinish()
370 protected void forceStop(VirtualMachine vm) { in forceStop()
379 public void onPayloadStarted(VirtualMachine vm) {} in onPayloadStarted()
382 public void onPayloadReady(VirtualMachine vm) {} in onPayloadReady()
385 public void onPayloadFinished(VirtualMachine vm, int exitCode) {} in onPayloadFinished()
388 public void onError(VirtualMachine vm, int errorCode, String message) {} in onError()
392 public void onStopped(VirtualMachine vm, int reason) { in onStopped()
504 VirtualMachine vm = getVirtualMachineManager().get(vmName); in tryBootVm() local
602 String logTag, VirtualMachine vm, byte[] challenge, byte[] messageToSign) in runVmAttestationService()
636 String logTag, VirtualMachine vm, RunTestsAgainstTestService testsToRun) in runVmTestService()
/aosp_15_r20/external/sandboxed-api/contrib/jsonnet/
H A Djsonnet_helper.cc23 void c_jsonnet_destroy(struct JsonnetVm* vm) { return jsonnet_destroy(vm); } in c_jsonnet_destroy()
25 char* c_jsonnet_evaluate_snippet(struct JsonnetVm* vm, const char* filename, in c_jsonnet_evaluate_snippet()
30 char* c_jsonnet_evaluate_snippet_multi(struct JsonnetVm* vm, in c_jsonnet_evaluate_snippet_multi()
36 char* c_jsonnet_evaluate_snippet_stream(struct JsonnetVm* vm, in c_jsonnet_evaluate_snippet_stream()
69 char* c_jsonnet_realloc(struct JsonnetVm* vm, char* str, size_t sz) { in c_jsonnet_realloc()
73 char* c_jsonnet_fmt_snippet(struct JsonnetVm* vm, const char* filename, in c_jsonnet_fmt_snippet()
/aosp_15_r20/external/vixl/src/aarch64/
H A Dassembler-aarch64.cc316 const VRegister& vm, in NEONTable()
328 const VRegister& vm) { in tbl()
337 const VRegister& vm) { in tbl()
350 const VRegister& vm) { in tbl()
364 const VRegister& vm) { in tbl()
375 const VRegister& vm) { in tbx()
384 const VRegister& vm) { in tbx()
397 const VRegister& vm) { in tbx()
411 const VRegister& vm) { in tbx()
2382 const VRegister& vm, in NEON3DifferentL()
[all …]

12345678910>>...55