Home
last modified time | relevance | path

Searched refs:EngineCode (Results 1 – 5 of 5) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dcode.rs101 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 Dinstantiate.rs6 use crate::code::EngineCode;
23 engine_code: Arc<EngineCode>,
50 engine_code: Arc<EngineCode>, in from_artifacts() argument
H A Dmodule.rs8 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 Dregistry.rs3 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 Dcomponent.rs9 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