Home
last modified time | relevance | path

Searched refs:needs_init (Results 1 – 4 of 4) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/memory/
H A Dshared_memory.rs177 pub(crate) fn needs_init(&self) -> bool { in needs_init() method
178 self.0.memory.read().unwrap().needs_init() in needs_init()
H A Dshared_memory_disabled.rs60 pub(crate) fn needs_init(&self) -> bool { in needs_init() method
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dmemory.rs389 pub(crate) fn needs_init(&self) -> bool { in needs_init() method
391 Memory::Local(mem) => mem.needs_init(), in needs_init()
392 Memory::Shared(mem) => mem.needs_init(), in needs_init()
756 pub fn needs_init(&self) -> bool { in needs_init() method
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/instance/
H A Dallocator.rs701 if !instance.memories[memory_index].1.needs_init() { in initialize_memories()