Searched defs:VMArrayRef (Results 1 – 7 of 7) sorted by relevance
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/gc/enabled/ |
| H A D | arrayref.rs | 23 pub struct VMArrayRef(VMGcRef); struct 25 impl fmt::Pointer for VMArrayRef { implementation 53 pub fn into_arrayref(self, gc_heap: &(impl GcHeap + ?Sized)) -> Result<VMArrayRef, VMGcRef> { in into_arrayref() 69 pub fn into_arrayref_unchecked(self) -> VMArrayRef { in into_arrayref_unchecked() 76 pub fn as_arrayref(&self, gc_heap: &(impl GcHeap + ?Sized)) -> Option<&VMArrayRef> { in as_arrayref() 89 pub fn as_arrayref_unchecked(&self) -> &VMArrayRef { in as_arrayref_unchecked() 98 impl VMArrayRef { impl
|
| H A D | null.rs | 74 array: &'a VMArrayRef, in typed_ref() 309 ) -> Result<Result<VMArrayRef, u64>> { in alloc_uninit_array() 323 fn dealloc_uninit_array(&mut self, _array_ref: VMArrayRef) {} in dealloc_uninit_array()
|
| H A D | drc.rs | 994 ) -> Result<Result<VMArrayRef, u64>> { in alloc_uninit_array() 1009 fn dealloc_uninit_array(&mut self, arrayref: VMArrayRef) { in dealloc_uninit_array()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/gc/ |
| H A D | disabled.rs | 9 pub enum VMArrayRef {} enum
|
| H A D | gc_runtime.rs | 323 ) -> Result<Result<VMArrayRef, u64>>; in alloc_uninit_array() 331 fn dealloc_uninit_array(&mut self, arrayref: VMArrayRef); in dealloc_uninit_array()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/ |
| H A D | gc.rs | 332 ) -> Result<Result<VMArrayRef, u64>> { in alloc_uninit_array() 337 pub fn dealloc_uninit_array(&mut self, arrayref: VMArrayRef) { in dealloc_uninit_array()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/gc/enabled/ |
| H A D | arrayref.rs | 707 fn arrayref<'a>(&self, store: &'a AutoAssertNoGc<'_>) -> Result<&'a VMArrayRef> { in arrayref()
|