Home
last modified time | relevance | path

Searched refs:ExceptionOps (Results 1 – 4 of 4) sorted by relevance

/wasmtime-44.0.1/fuzz/fuzz_targets/
H A Dexception_ops.rs8 use wasmtime_fuzzing::generators::ExceptionOps;
12 let Ok((seed, ops)) = postcard::from_bytes::<(u64, ExceptionOps)>(data) else {
37 let mut tuple: (u64, ExceptionOps) = from_bytes(&data[..size]).ok().unwrap_or_default();
/wasmtime-44.0.1/crates/fuzzing/src/generators/
H A Dexception_ops.rs115 pub struct ExceptionOps { struct
121 impl ExceptionOps { argument
592 impl Generate<ExceptionOps> for ExceptionOpsMutator {
593 fn generate(&mut self, _ctx: &mut Context) -> MutResult<ExceptionOps> { in generate() argument
594 let mut ops = ExceptionOps::default(); in generate()
612 .run(|ops: &ExceptionOps| { in always_produces_valid_wasm()
/wasmtime-44.0.1/crates/fuzzing/src/
H A Dgenerators.rs31 pub use exception_ops::ExceptionOps;
H A Doracles.rs26 use crate::generators::ExceptionOps;
1027 pub fn exception_ops(mut fuzz_config: generators::Config, mut ops: ExceptionOps) -> Result<()> { in exception_ops()