Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dcode_memory.rs35 custom_code_memory: Option<Arc<dyn CustomCodeMemory>>, field
61 if let Some(mem) = self.custom_code_memory.as_ref() { in drop()
267 custom_code_memory: engine.custom_code_memory().cloned(), in new()
478 if let Some(mem) = self.custom_code_memory.as_ref() { in custom_publish()
547 if let Some(mem) = self.custom_code_memory.as_ref() { in custom_unpublish()
/wasmtime-44.0.1/tests/all/
H A Dmain.rs12 mod custom_code_memory; module
/wasmtime-44.0.1/crates/wasmtime/src/
H A Dengine.rs809 pub(crate) fn custom_code_memory(&self) -> Option<&Arc<dyn CustomCodeMemory>> { in custom_code_memory() method
810 self.config().custom_code_memory.as_ref() in custom_code_memory()
868 self.custom_code_memory() in required_code_alignment()
H A Dconfig.rs163 pub(crate) custom_code_memory: Option<Arc<dyn CustomCodeMemory>>, field
269 custom_code_memory: None, in new()
1587 custom_code_memory: Option<Arc<dyn CustomCodeMemory>>, in with_custom_code_memory()
1589 self.custom_code_memory = custom_code_memory; in with_custom_code_memory()
/wasmtime-44.0.1/crates/wasmtime/src/compile/
H A Druntime.rs158 .custom_code_memory() in custom_alignment()