Home
last modified time | relevance | path

Searched refs:init_func (Results 1 – 7 of 7) sorted by relevance

/wasmtime-44.0.1/crates/wizer/examples/cpp/
H A Dmain.cpp17 static void init_func() { in init_func() function
24 WIZER_INIT(init_func);
28 init_func(); in main()
/wasmtime-44.0.1/crates/wizer/src/
H A Dlib.rs63 init_func: String, field
151 init_func: "wizer-initialize".to_string(), in new()
160 pub fn init_func(&mut self, init_func: impl Into<String>) -> &mut Self { in init_func() method
161 self.init_func = init_func.into(); in init_func()
167 &self.init_func in get_init_func()
H A Dwasmtime.rs77 let init_func = instance in initialize() localVariable
80 init_func in initialize()
/wasmtime-44.0.1/crates/wizer/fuzz/fuzz_targets/
H A Dsame_result.rs97 'init_loop: for init_func in init_funcs {
105 wizer.init_func(init_func);
122 if *main_func == init_func {
147 let init_func = instance localVariable
148 .get_typed_func::<(), ()>(&mut store, init_func)
150 init_func.call(&mut store, ()).unwrap();
/wasmtime-44.0.1/crates/wizer/src/component/
H A Dwasmtime.rs42 let init_func = self.get_init_func(); in validate_component_init_func() localVariable
44 .get_export(None, init_func) in validate_component_init_func()
66 let init_func = instance in initialize_component() localVariable
69 init_func in initialize_component()
/wasmtime-44.0.1/crates/wizer/include/
H A Dwizer.h85 #define WIZER_INIT(init_func) \ argument
100 init_func(); \
/wasmtime-44.0.1/crates/wizer/tests/all/
H A Dtests.rs649 wizer.init_func("_initialize"); in wasi_reactor_initializer_as_init_func()