Home
last modified time | relevance | path

Searched refs:get_init_func (Results 1 – 6 of 6) sorted by relevance

/wasmtime-44.0.1/crates/wizer/src/
H A Dwasmtime.rs33 match module.get_export(self.get_init_func()) { in validate_init_func()
38 self.get_init_func() in validate_init_func()
44 self.get_init_func() in validate_init_func()
48 self.get_init_func() in validate_init_func()
69 if self.get_init_func() == "_initialize" { in initialize()
78 .get_typed_func::<(), ()>(&mut *store, self.get_init_func()) in initialize()
83 .with_context(|| format!("the `{}` function trapped", self.get_init_func()))?; in initialize()
H A Drewrite.rs133 if (export.name == self.get_init_func() && !self.get_keep_init_func()) in rewrite()
H A Dlib.rs166 pub fn get_init_func(&self) -> &str { in get_init_func() method
/wasmtime-44.0.1/src/commands/
H A Dwizer.rs81 format!("{}()", self.wizer.get_init_func()) in execute_async()
83 self.wizer.get_init_func().to_string() in execute_async()
/wasmtime-44.0.1/crates/wizer/src/component/
H A Dwasmtime.rs42 let init_func = self.get_init_func(); in validate_component_init_func()
H A Drewrite.rs239 if !self.wizer.get_keep_init_func() && export.name.0 == self.wizer.get_init_func() { in parse_component_export_section()