| /wasmtime-44.0.1/crates/core/src/alloc/ |
| H A D | try_clone.rs | 10 fn try_clone(&self) -> Result<Self, OutOfMemory>; in try_clone() method 15 self.try_clone().panic_on_oom() in clone_panic_on_oom() 24 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function 34 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function 44 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function 55 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function 57 Ok(x) => Ok(Ok(x.try_clone()?)), in try_clone() 58 Err(e) => Ok(Err(e.try_clone()?)), in try_clone() 68 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function 70 Some(x) => Ok(Some(x.try_clone()?)), in try_clone() [all …]
|
| H A D | try_cow.rs | 34 v.push(x.try_clone()?)?; in try_to_owned() 47 self.try_clone() in try_to_owned() 98 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function
|
| H A D | boxed.rs | 49 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function 51 let v = (**self).try_clone()?; in try_clone() 60 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function 63 builder.push(v.try_clone()?).expect("reserved capacity"); in try_clone() 71 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method
|
| H A D | vec.rs | 74 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function 77 v.push(x.try_clone()?).expect("reserved capacity"); in try_clone() 111 v.push(elem.try_clone()?)?; in from_elem() 186 self.push(value.try_clone()?)?; in resize()
|
| H A D | string.rs | 16 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method
|
| /wasmtime-44.0.1/crates/environ/src/collections/ |
| H A D | hash_map.rs | 28 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function 29 let mut map = Self::with_capacity_and_hasher(self.len(), self.hasher().try_clone()?)?; in try_clone() 31 map.insert(k.try_clone()?, v.try_clone()?) in try_clone()
|
| H A D | index_map.rs | 31 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function 32 let mut map = Self::with_capacity_and_hasher(self.capacity(), self.hasher().try_clone()?)?; in try_clone() 34 map.insert(k.try_clone()?, v.try_clone()?)?; in try_clone() 248 let mut map = Self::with_capacity_and_hasher(self.len() - at, self.hasher().try_clone()?)?; in split_off()
|
| /wasmtime-44.0.1/crates/core/src/ |
| H A D | alloc.rs | 6 mod try_clone; module 18 pub use try_clone::TryClone;
|
| /wasmtime-44.0.1/crates/environ/src/ |
| H A D | gc.rs | 290 fn try_clone(&self) -> core::result::Result<Self, wasmtime_core::error::OutOfMemory> { in try_clone() method 401 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method 405 fields: self.fields.try_clone()?, in try_clone() 435 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method
|
| H A D | types.rs | 147 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method 697 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method 948 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method 951 fields: self.fields.try_clone()?, in try_clone() 1058 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method 1123 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method 1125 fields: self.fields.try_clone()?, in try_clone() 1173 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method 1175 inner: self.inner.try_clone()?, in try_clone() 1206 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method [all …]
|
| H A D | string_pool.rs | 75 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method 94 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method
|
| /wasmtime-44.0.1/cranelift/entity/src/ |
| H A D | packed_option.rs | 37 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() function 38 Ok(Self(self.0.try_clone()?)) in try_clone()
|
| /wasmtime-44.0.1/crates/fuzzing/tests/oom/ |
| H A D | hash_map.rs | 43 let map2 = map.try_clone()?; in try_hash_map_try_clone()
|
| H A D | index_map.rs | 15 let map2 = map1.try_clone()?; in try_index_map_try_clone()
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/ |
| H A D | type_registry.rs | 280 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method 466 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method 705 iter_entity_range(module_group.clone()).map(|ty| types[ty].try_clone()), in register_module_types() 776 .push((module_index, ty.try_clone()?)) in register_rec_group() 1021 ty.try_clone()? in insert_entry_trampolines()
|
| H A D | linker.rs | 120 fn try_clone(&self) -> Result<Self, OutOfMemory> { in try_clone() method 132 fn try_clone(&self) -> core::result::Result<Self, OutOfMemory> { in try_clone() method
|
| /wasmtime-44.0.1/crates/wasmtime/src/runtime/component/ |
| H A D | types.rs | 1146 subty.unwrap_func().try_clone().panic_on_oom(), in from()
|