Home
last modified time | relevance | path

Searched refs:module1 (Results 1 – 7 of 7) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/tests/
H A Dcustom_signal_handler.rs311 let module1 = Module::new(&engine, WAT1)?; in test_custom_signal_handler_instance_calling_another_instance() localVariable
312 let externs = make_externs(&mut store, &module1); in test_custom_signal_handler_instance_calling_another_instance()
313 let instance1 = Instance::new(&mut store, &module1, &externs)?; in test_custom_signal_handler_instance_calling_another_instance()
/wasmtime-44.0.1/tests/all/
H A Dasync_functions.rs706 let module1 = Module::new( in linker_module_command() localVariable
734 linker.module_async(&mut store, "", &module1).await?; in linker_module_command()
748 let module1 = Module::new( in linker_module_reactor() localVariable
773 linker.module_async(&mut store, "", &module1).await?; in linker_module_reactor()
841 let module1 = Module::new( in non_stacky_async_activations() localVariable
934 let instance1 = linker1.instantiate_async(&mut store1, &module1).await?; in non_stacky_async_activations()
H A Dcoredump.rs98 let module1 = Module::new(store.engine(), wat1)?; in coredump_has_modules_and_instances() localVariable
103 let linking1 = linker.instantiate(&mut store, &module1)?; in coredump_has_modules_and_instances()
H A Dmodule.rs108 let module1 = Module::new(&engine, wasm).unwrap(); in serialize_deterministic() localVariable
109 let a1 = module1.serialize().unwrap(); in serialize_deterministic()
110 let a2 = module1.serialize().unwrap(); in serialize_deterministic()
H A Ddebug.rs261 let module1 = Module::new( in stack_values_two_activations() localVariable
286 let module1_clone = module1.clone(); in stack_values_two_activations()
371 let instance1 = Instance::new(&mut store, &module1, &[Extern::Func(host1)])?; in stack_values_two_activations()
1234 let module1 = Module::new( in debug_ids() localVariable
1257 let instance1 = Instance::new(&mut store, &module1, &[])?; in debug_ids()
1259 let instance3 = Instance::new(&mut store, &module1, &[])?; in debug_ids()
1262 module1.debug_index_in_engine(), in debug_ids()
H A Dpooling_allocator.rs580 let module1 = Module::new( in switch_image_and_non_image() localVariable
604 let instance = Instance::new(&mut store, &module1, &[])?; in switch_image_and_non_image()
H A Dfunc.rs1160 let module1 = Module::new(store.engine(), "(module (import \"\" \"\" (func)))")?; in trampolines_always_valid() localVariable
1166 drop(Instance::new(&mut store, &module1, &[])); in trampolines_always_valid()
1167 drop(module1); in trampolines_always_valid()