Home
last modified time | relevance | path

Searched refs:get_funcref (Results 1 – 3 of 3) sorted by relevance

/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dvmcontext.rs579 WasmHeapTopType::Func => *global.as_func_ref_mut() = raw.get_funcref().cast(), in from_val_raw()
580 …WasmHeapTopType::Cont => *global.as_func_ref_mut() = raw.get_funcref().cast(), // TODO(#10248): te… in from_val_raw()
1579 debug_assert_eq!(raw.get_funcref(), ptr::null_mut()); in null()
1713 pub fn get_funcref(&self) -> *mut c_void { in get_funcref() method
/wasmtime-44.0.1/crates/wasmtime/src/runtime/func/
H A Dtyped.rs554 let p = NonNull::new(ptr.get_funcref()).unwrap().cast(); in load()
609 let ptr = NonNull::new(ptr.get_funcref())?.cast(); in load()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dvalues.rs330 Func::_from_raw(store, raw.get_funcref()).into() in _from_raw()