Home
last modified time | relevance | path

Searched refs:StructRefPre (Results 1 – 10 of 10) sorted by relevance

/wasmtime-44.0.1/tests/all/
H A Dstructs.rs9 let pre = StructRefPre::new(&mut store, struct_ty); in struct_new_empty()
25 let pre = StructRefPre::new(&mut store, struct_ty); in struct_new_with_fields()
50 let pre = StructRefPre::new(&mut store, struct_ty); in struct_new_unrooted_field()
71 let pre = StructRefPre::new(&mut store, struct_ty); in struct_new_cross_store_field()
124 let pre = StructRefPre::new(&mut store, struct_ty); in struct_field_simple()
141 let pre = StructRefPre::new(&mut store, struct_ty); in struct_field_out_of_bounds()
157 let pre = StructRefPre::new(&mut store, struct_ty); in struct_field_on_unrooted()
177 let pre = StructRefPre::new(&mut store, struct_ty); in struct_set_field_simple()
195 let pre = StructRefPre::new(&mut store, struct_ty); in struct_set_field_out_of_bounds()
211 let pre = StructRefPre::new(&mut store, struct_ty); in struct_set_field_on_unrooted()
[all …]
H A Dgc.rs988 let pre = StructRefPre::new(&mut store, StructType::new(&engine, [])?); in ref_matches()
1187 let pre = StructRefPre::new(&mut store, struct_ty.clone()); in drc_transitive_drop_cons_list()
1437 let empty_pre = StructRefPre::new(&mut store, StructType::new(&engine, [])?); in issue_10772()
1439 let tuple_pre = StructRefPre::new( in issue_10772()
H A Dmissing_async.rs267 let pre = StructRefPre::new(&mut store, ty); in async_disallows_structref_new()
H A Dasync_functions.rs1092 let struct_pre = StructRefPre::new(&mut cx, struct_ty); in async_gc_with_func_new_and_func_wrap()
1115 let struct_pre = StructRefPre::new(&mut cx, struct_ty); in async_gc_with_func_new_and_func_wrap()
/wasmtime-44.0.1/crates/c-api/include/wasmtime/
H A Dgc.hh171 friend class StructRefPre;
180 class StructRefPre { class
182 WASMTIME_OWN_WRAPPER(StructRefPre, wasmtime_struct_ref_pre)
186 static StructRefPre create(Store::Context cx, const StructType &ty) { in create()
188 StructRefPre pre(raw); in create()
240 static Result<StructRef> create(Store::Context cx, const StructRefPre &pre, in create()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/gc/enabled/
H A Dstructref.rs64 pub struct StructRefPre { struct
69 impl StructRefPre { impl
80 StructRefPre { store_id, ty } in _new()
235 allocator: &StructRefPre, in new() argument
276 allocator: &StructRefPre, in new_async() argument
286 allocator: &StructRefPre, in _new_async() argument
301 allocator: &StructRefPre, in type_check_fields() argument
328 allocator: &StructRefPre, in new_unchecked() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/gc/disabled/
H A Dstructref.rs8 pub enum StructRefPre {} enum
/wasmtime-44.0.1/crates/c-api/tests/
H A Dgc.cc106 auto pre = StructRefPre::create(cx, ty); in TEST()
142 auto pre = StructRefPre::create(cx, ty); in TEST()
267 auto pre = StructRefPre::create(cx, ty); in TEST()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dconst_expr.rs8 AnyRef, ArrayRef, ArrayRefPre, ArrayType, ExternRef, I31, StructRef, StructRefPre, StructType,
81 let allocator = StructRefPre::_new(store, struct_ty); in struct_new()
/wasmtime-44.0.1/crates/c-api/src/
H A Dref.rs6 OwnedRooted, Ref, RootScope, StorageType, StructRef, StructRefPre, StructType, Val, ValType,
281 pre: StructRefPre,
625 let pre = StructRefPre::new(cx, ty.ty.clone()); in wasmtime_struct_ref_pre_new()