Home
last modified time | relevance | path

Searched refs:func_type (Results 1 – 8 of 8) sorted by relevance

/wasmtime-44.0.1/examples/
H A Dthreads.c70 own wasm_functype_t *func_type = wasm_functype_new_0_0(); in run() local
71 own wasm_func_t *func = wasm_func_new(store, func_type, callback); in run()
72 wasm_functype_delete(func_type); in run()
/wasmtime-44.0.1/crates/c-api/src/types/
H A Dtag.rs52 let func_type = self.cty().ty.ty(engine); in to_tag_type() localVariable
53 TagType::new(func_type) in to_tag_type()
/wasmtime-44.0.1/crates/fuzzing/tests/oom/
H A Dmain.rs13 mod func_type; module
/wasmtime-44.0.1/crates/wizer/src/
H A Dinfo.rs101 pub(crate) fn push_function(&mut self, func_type: u32) { in push_function()
102 self.functions.push(func_type); in push_function()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dfunc.rs1649 fn func_type( in func_type() method
1692 fn func_type( in func_type() function
1735 fn func_type( in func_type() function
1739 T::func_type(engine, params) in func_type()
1793 fn func_type(
2562 let ty = R::func_type(engine, None::<ValType>.into_iter().chain(P::valtypes()))?; in wrap()
2590 let ty = R::func_type(engine, None::<ValType>.into_iter().chain(P::valtypes()))?; in wrap_async()
/wasmtime-44.0.1/crates/c-api/tests/
H A DCMakeLists.txt29 func_type.cc
/wasmtime-44.0.1/crates/wizer/tests/all/
H A Dtests.rs741 types.ty().func_type(&wasm_encoder::FuncType::new( in accept_bulk_memory_data_count()
747 .func_type(&wasm_encoder::FuncType::new(vec![], vec![])); in accept_bulk_memory_data_count()
/wasmtime-44.0.1/src/commands/
H A Drun.rs802 let (names, func_type) = match matches.len() { in invoke_component()
810 let param_types = WasmFunc::params(func_type).collect::<Vec<_>>(); in invoke_component()
828 let mut results = vec![Val::Bool(false); func_type.results().len()]; in invoke_component()