Home
last modified time | relevance | path

Searched defs:ComponentInstance (Results 1 – 11 of 11) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dcomponent.rs103 pub struct ComponentInstance { struct
105 id: ComponentInstanceId, argument
108 offsets: VMComponentOffsets<HostPtr>,
132 instance_states: PrimaryMap<RuntimeComponentInstanceIndex, InstanceState>, argument
146 /// `OwnedComponentInstance` but it's our job to keep them alive. argument
155 imports: Arc<PrimaryMap<RuntimeImportIndex, RuntimeImport>>,
158 store: VMStoreRawPtr,
162 vmctx: OwnedVMContext<VMComponentContext>,
234 impl ComponentInstance { implementation
976 unsafe impl InstanceLayout for ComponentInstance { implementation
[all …]
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/
H A Dstore.rs218 pub(crate) fn get<'a>(&self, store: &'a StoreOpaque) -> &'a ComponentInstance { in get()
228 pub(crate) fn get_mut<'a>(&self, store: &'a mut StoreOpaque) -> Pin<&'a mut ComponentInstance> { in get_mut()
243 Pin<&'a mut ComponentInstance>, in get_mut_and_registry()
252 fn from_data_get_mut<'a>(&self, store: &'a mut StoreData) -> Pin<&'a mut ComponentInstance> { in from_data_get_mut()
269 pub(crate) fn component_instance(&self, id: ComponentInstanceId) -> &ComponentInstance { in component_instance()
276 ) -> Pin<&mut ComponentInstance> { in component_instance_mut()
311 pub(crate) fn component_instance(&self, id: ComponentInstanceId) -> &ComponentInstance { in component_instance()
319 ) -> Pin<&mut ComponentInstance> { in component_instance_mut()
344 Pin<&mut ComponentInstance>, in lift_context_parts()
H A Dinstance.rs352 ) -> Option<(&'a ComponentInstance, &'a Export)> { in lookup_export()
1058 fn instance<'b>(&self, store: &'b StoreOpaque) -> &'b ComponentInstance { in instance()
1063 fn instance_mut<'b>(&self, store: &'b mut StoreOpaque) -> Pin<&'b mut ComponentInstance> { in instance_mut()
H A Dtypes.rs1081 pub struct ComponentInstance(Handle<TypeComponentInstanceIndex>); struct
1083 impl ComponentInstance { impl
1122 ComponentInstance(ComponentInstance), enumerator
H A Dfunc.rs150 instance: Option<&ComponentInstance>, in _typed()
163 instance: Option<&ComponentInstance>, in typecheck()
H A Dconcurrent.rs4386 state: Pin<&mut ComponentInstance>, in from_instance()
4624 state: Pin<&mut ComponentInstance>, in from_instance()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/resources/
H A Dty.rs70 instance: &ComponentInstance, in guest()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/func/
H A Doptions.rs104 pub fn instance(&self) -> &ComponentInstance { in instance()
109 pub fn instance_mut(&mut self) -> Pin<&mut ComponentInstance> { in instance_mut()
392 pub fn instance_mut(&mut self) -> Pin<&mut ComponentInstance> { in instance_mut()
/wasmtime-44.0.1/crates/c-api/src/component/types/
H A Dcomponent.rs122 ComponentInstance(Box<wasmtime_component_instance_type_t>), enumerator
/wasmtime-44.0.1/crates/environ/src/component/
H A Dtypes.rs272 ComponentInstance(ComponentInstanceIndex), enumerator
456 ComponentInstance(TypeComponentInstanceIndex), enumerator
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/concurrent/
H A Dfutures_and_streams.rs4479 impl ComponentInstance { implementation