Home
last modified time | relevance | path

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

/wasmtime-44.0.1/examples/wasip2-plugins/
H A D.gitignore2 c-plugin/plugin.c
3 c-plugin/plugin.h
4 c-plugin/plugin_component_type.o
H A DREADME.md3 Then, create a plugins directory (e.g. `plugins`) and copy `c-plugin/add.wasm`
4 and `js-plugin/subtract.wasm` into that directory.
/wasmtime-44.0.1/docs/
H A Dwasip2-plugins.md37 that this plugin implements.
44 `c-plugin/add.wasm` and `js-plugin/subtract.wasm`.
66 world plugin {
69 export get-plugin-name: func() -> string;
82 that does computation specific to this plugin.
87 bindgen!("plugin");
98 to execute a plugin given arguments.
168 let (plugin_name, plugin, store) = {
171 (plugin.call_get_plugin_name(&mut store)?, plugin, store)
238 pub plugin: Plugin,
[all …]
H A Dexamples-debugging-native-debugger.md31 plugin.jit-loader.gdb.enable on`
H A Dexamples-minimal.md281 anything. Something like a [plugin feature for the
/wasmtime-44.0.1/examples/wasip2-plugins/src/
H A Dmain.rs38 let result = desc.plugin.call_evaluate(&mut desc.store, self.x, self.y)?; in run()
64 pub plugin: Plugin, field
79 let (plugin_name, plugin, store) = { in load_plugin()
85 let plugin = Plugin::instantiate(&mut store, &component, linker)?; in load_plugin() localVariable
86 (plugin.call_get_plugin_name(&mut store)?, plugin, store) in load_plugin()
91 .insert(plugin_name, PluginDesc { plugin, store }); in load_plugin()
/wasmtime-44.0.1/examples/wasip2-plugins/wit/
H A Dcalculator.wit5 world plugin {
8 export get-plugin-name: func() -> string;
/wasmtime-44.0.1/crates/c-api/
H A Ddoxygen.conf.in1473 # generated, together with the HTML files, they form an Eclipse help plugin. To
1474 # install this plugin and make it available under the help contents menu in
1484 # A unique identifier for the Eclipse help plugin. When installing the plugin
/wasmtime-44.0.1/.github/workflows/
H A Dmain.yml1066 # Requires wasi-sdk >= 32 for LLDB with the Wasm remote-debug plugin.