Home
last modified time | relevance | path

Searched refs:component_type (Results 1 – 9 of 9) sorted by relevance

/wasmtime-44.0.1/crates/environ/src/component/
H A Dintrinsic.rs106 … Self::$variant => &[ $( define_unsafe_intrinsics!(@component_type $param_ty) ),* ],
115 … Self::$variant => &[ $( define_unsafe_intrinsics!(@component_type $result_ty) ),* ],
140 (@component_type u8) => { $crate::component::InterfaceType::U8 };
141 (@component_type u16) => { $crate::component::InterfaceType::U16 };
142 (@component_type u32) => { $crate::component::InterfaceType::U32 };
143 (@component_type u64) => { $crate::component::InterfaceType::U64 };
/wasmtime-44.0.1/tests/all/
H A Dcompile_time_builtins.rs257 let component_type = component.component_type(); in import_erased() localVariable
258 let imports = component_type in import_erased()
H A Dintrinsics.rs307 let component_type = component.component_type(); in intrinsics_not_listed_in_imports() localVariable
308 let imports = component_type.imports(&engine); in intrinsics_not_listed_in_imports()
/wasmtime-44.0.1/crates/component-macro/src/
H A Dlib.rs34 pub fn component_type(input: proc_macro::TokenStream) -> proc_macro::TokenStream { in component_type() function
/wasmtime-44.0.1/crates/c-api/src/component/
H A Dcomponent.rs88 Box::new(component.component.component_type().into()) in wasmtime_component_type()
/wasmtime-44.0.1/tests/all/component_model/
H A Daot.rs151 let ty = c.component_type(); in reflect_resource_import()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/
H A Dcomponent.rs386 pub fn component_type(&self) -> types::Component { in component_type() method
/wasmtime-44.0.1/crates/wast/src/
H A Dwast.rs355 let ty = component.component_type(); in module()
/wasmtime-44.0.1/src/commands/
H A Drun.rs801 Self::search_component_funcs(store.engine(), component.component_type(), name); in invoke_component()