Home
last modified time | relevance | path

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

/wasmtime-44.0.1/crates/test-programs/src/bin/
H A Dasync_round_trip_stackful.rs27 waitable_set_new, waitable_set_wait,
81 let event = waitable_set_wait(set, payload.cast()); in export_foo()
H A Dasync_round_trip_many_stackful.rs27 waitable_set_new, waitable_set_wait,
99 let event = waitable_set_wait(set, payload.cast()); in export_foo()
/wasmtime-44.0.1/crates/test-programs/src/
H A Dasync_.rs55 pub fn waitable_set_wait(set: u32, results: *mut u32) -> u32; in waitable_set_wait() function
58 pub unsafe extern "C" fn waitable_set_wait(_set: u32, _results: *mut u32) -> u32 { in waitable_set_wait() function
/wasmtime-44.0.1/tests/all/
H A Dpulley_provenance_test_async_component.wat12 (core func $waitable_set_wait (canon waitable-set.wait (memory $libc "memory")))
22 (import "" "waitable-set.wait" (func $waitable_set_wait (param i32 i32) (result i32)))
63 (local.set $event0 (call $waitable_set_wait (local.get $set) (i32.const 0)))
90 (export "waitable-set.wait" (func $waitable_set_wait))
/wasmtime-44.0.1/crates/environ/src/
H A Dcomponent.rs112waitable_set_wait(vmctx: vmctx, caller_instance: u32, options: u32, set: u32, payload: u32) -> u64;
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/component/
H A Dlibcalls.rs746 fn waitable_set_wait( in waitable_set_wait() function
754 instance.waitable_set_wait(store, OptionsIndex::from_u32(options), set, payload) in waitable_set_wait()
/wasmtime-44.0.1/crates/cranelift/src/compiler/
H A Dcomponent.rs254 host::waitable_set_wait, in translate()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/component/
H A Dconcurrent.rs3168 pub(crate) fn waitable_set_wait( in waitable_set_wait() method