Searched refs:EngineCode (Results 1 – 5 of 5) sorted by relevance
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/ |
| H A D | code.rs | 101 pub struct EngineCode { struct 129 impl EngineCode { implementation 134 ) -> Result<EngineCode, OutOfMemory> { in new() argument 139 Ok(EngineCode { in new() 267 impl Drop for EngineCode { implementation 331 pub fn new(engine: &Engine, engine_code: &Arc<EngineCode>) -> Result<Self> { in new()
|
| H A D | instantiate.rs | 6 use crate::code::EngineCode; 23 engine_code: Arc<EngineCode>, 50 engine_code: Arc<EngineCode>, in from_artifacts() argument
|
| H A D | module.rs | 8 code::EngineCode, 147 code: Arc<EngineCode>, 526 let code = try_new::<Arc<_>>(EngineCode::new(code_memory, signatures, types.into())?)?; in from_parts() 533 code: Arc<EngineCode>, in from_parts_raw() argument 646 pub(crate) fn engine_code(&self) -> &Arc<EngineCode> { in engine_code() argument
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/module/ |
| H A D | registry.rs | 3 use crate::code::{EngineCode, EngineCodePC, ModuleWithCode, StoreCode, StoreCodePC}; 147 pub fn store_code(&self, engine_code: &EngineCode) -> Option<&StoreCode> { in store_code() 154 pub fn store_code_base(&self, engine_code: &EngineCode) -> Option<StoreCodePC> { in store_code_base() 224 code: &Arc<EngineCode>, in register() argument
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/component/ |
| H A D | component.rs | 9 Engine, Module, ResourcesRequired, code::EngineCode, code_memory::CodeMemory, 84 code: Arc<EngineCode>, 440 let code = Arc::new(EngineCode::new(code_memory, signatures, types.into())?); in from_parts() 557 pub(crate) fn engine_code(&self) -> &Arc<EngineCode> { in engine_code() argument
|