Home
last modified time | relevance | path

Searched refs:get_module (Results 1 – 8 of 8) sorted by relevance

/wasmtime-44.0.1/tests/all/component_model/
H A Dinstance.rs51 assert!(instance.get_module(&mut store, &m).is_some()); in instance_exports()
60 instance.get_module(&mut store, &m).unwrap(); in instance_exports()
87 instance.get_module(&mut store, "a:b/[email protected]").unwrap(); in export_old_get_new()
122 instance.get_module(&mut store, "a:b/[email protected]").unwrap(); in export_new_get_old()
170 let m = instance.get_module(&mut store, &m).unwrap(); in export_missing_get_max()
173 let m = instance.get_module(&mut store, name).unwrap(); in export_missing_get_max()
177 let m = instance.get_module(&mut store, &m).unwrap(); in export_missing_get_max()
H A Daot.rs98 let module = instance.get_module(&mut store, "a").unwrap(); in cannot_serialize_exported_module()
118 let module = instance.get_module(&mut store, "a").unwrap(); in usable_exported_modules()
/wasmtime-44.0.1/crates/gdbstub-component/src/
H A Daddr.rs135 let module = frame.get_instance(debuggee).unwrap().get_module(debuggee); in frame_to_pc()
145 let module = frame.get_instance(debuggee).unwrap().get_module(debuggee); in frame_to_return_addr()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/allocator/
H A Dpooling.rs564 get_module: &'a dyn Fn(StaticModuleIndex) -> &'a Module, in validate_component()
580 let module = get_module(*static_module_index); in validate_component()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/
H A Dallocator.rs140 get_module: &'a dyn Fn(StaticModuleIndex) -> &'a Module, in validate_component()
/wasmtime-44.0.1/crates/wast/src/
H A Dwast.rs361 let module = instance.get_module(&mut store, name).unwrap(); in module()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/
H A Dinstance.rs220 pub fn get_module( in get_module() method
/wasmtime-44.0.1/crates/debugger/src/host/
H A Dapi.rs304 async fn get_module( in get_module() method