Lines Matching refs:callback
97 callback: wasm_func_callback_t, in wasm_func_new()
99 create_function(store, ty, move |params, results| callback(params, results)) in wasm_func_new()
106 callback: wasm_func_callback_with_env_t, in wasm_func_new_with_env()
113 callback(finalizer.data, params, results) in wasm_func_new_with_env()
243 callback: wasmtime_func_callback_t, in wasmtime_func_new()
249 let cb = c_callback_to_rust_fn(callback, data, finalizer); in wasmtime_func_new()
255 callback: wasmtime_func_callback_t, in c_callback_to_rust_fn()
283 let out = callback( in c_callback_to_rust_fn()
313 callback: wasmtime_func_unchecked_callback_t, in wasmtime_func_new_unchecked()
319 let cb = c_unchecked_callback_to_rust_fn(callback, data, finalizer); in wasmtime_func_new_unchecked()
324 callback: wasmtime_func_unchecked_callback_t, in c_unchecked_callback_to_rust_fn()
332 match callback( in c_unchecked_callback_to_rust_fn()