Home
last modified time | relevance | path

Searched refs:MmapMemory (Results 1 – 3 of 3) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/memory/
H A Dmmap.rs14 pub struct MmapMemory { struct
48 impl MmapMemory { argument
147 impl RuntimeLinearMemory for MmapMemory { implementation
H A Dshared_memory.rs3 use crate::runtime::vm::memory::{LocalMemory, MmapMemory, validate_atomic_addr};
39 let mmap_memory = MmapMemory::new(ty, tunables, minimum_bytes, maximum_bytes)?; in new()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dmemory.rs94 pub use self::mmap::MmapMemory;
145 try_new::<Box<_>>(MmapMemory::new(ty, tunables, minimum, maximum)?)? in new_memory()