Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/cache/src/
H A Dtests.rs63 let entry1 = ModuleCacheEntry::from_inner(ModuleCacheEntryInner::new(compiler1, &cache)); in test_write_read_cache()
64 let entry2 = ModuleCacheEntry::from_inner(ModuleCacheEntryInner::new(compiler2, &cache)); in test_write_read_cache()
H A Dlib.rs138 pub struct ModuleCacheEntry<'cache>(Option<ModuleCacheEntryInner<'cache>>); struct
147 impl<'cache> ModuleCacheEntry<'cache> { implementation
/wasmtime-44.0.1/crates/wasmtime/src/compile/
H A Druntime.rs45 wasmtime_cache::ModuleCacheEntry::new("wasmtime", self.engine.cache()) in compile_cached()