Home
last modified time | relevance | path

Searched refs:Command (Results 1 – 25 of 62) sorted by relevance

123

/wasmtime-44.0.1/crates/fuzzing/src/oracles/
H A Dcomponent_async.rs192 ) -> StreamReader<Command> { in get_commands() argument
297 Command::Ack => {} in host_caller_cmd()
360 Command::Ack => {} in host_callee_cmd()
388 Command::Ack in future_or_stream_cmd()
389 | Command::SyncReadyCall in future_or_stream_cmd()
390 | Command::AsyncReadyCall in future_or_stream_cmd()
395 | Command::FutureTake(_) in future_or_stream_cmd()
396 | Command::FutureGive(_) in future_or_stream_cmd()
397 | Command::StreamTake(_) in future_or_stream_cmd()
398 | Command::StreamGive(_) in future_or_stream_cmd()
[all …]
/wasmtime-44.0.1/crates/fuzzing/src/generators/
H A Dcomponent_async.rs33 pub commands: Vec<(Scope, Command)>,
126 deferred: Vec<(Scope, Command)>,
324 commands: &mut Vec<(Scope, Command)>, in generate() argument
440 commands.push((caller, Command::SyncReadyCall)); in generate()
444 commands.push((caller, Command::AsyncReadyCall)); in generate()
485 commands.push((scope, Command::FutureNew(id))); in generate()
646 commands.push((scope, Command::FutureDropReadable(id))); in generate()
666 commands.push((scope, Command::FutureWriteDropped(id))); in generate()
674 commands.push((scope, Command::StreamNew(id))); in generate()
738 commands.push((scope, Command::StreamDropReadable(id))); in generate()
[all …]
/wasmtime-44.0.1/crates/test-programs/src/bin/
H A Dfuzz_async.rs335 Command::FutureNew(id) => { in run()
344 Command::FutureTake(id) => { in run()
351 Command::FutureGive(id) => { in run()
432 Command::FutureReadPending(id) => { in run()
483 Command::FutureCancelWrite(id) => { in run()
496 Command::FutureCancelRead(id) => { in run()
548 Command::StreamNew(id) => { in run()
557 Command::StreamTake(id) => { in run()
564 Command::StreamGive(id) => { in run()
748 Command::StreamCancelRead(id) => { in run()
[all …]
/wasmtime-44.0.1/crates/test-util/src/
H A Dlib.rs2 use std::process::Command;
23 pub fn command(bin: impl AsRef<Path>) -> Command { in command() argument
28 let mut cmd = Command::new(parts.next().unwrap()); in command()
35 None => Command::new(bin), in command()
/wasmtime-44.0.1/examples/wasip2-plugins/
H A Dbuild.rs3 use std::process::Command;
9 let mut status = Command::new("wit-bindgen") in build_c_plugin()
30 status = Command::new(&clang_path) in build_c_plugin()
59 Command::new("jco") in build_js_plugin()
/wasmtime-44.0.1/crates/fuzzing/wasm-spec-interpreter/
H A Dbuild.rs8 use std::{env, path::PathBuf, process::Command};
55 let status = Command::new("make") in build_lib()
79 let status = Command::new("git") in retrieve_spec_repository()
89 let status = Command::new("git") in retrieve_spec_repository()
/wasmtime-44.0.1/scripts/
H A Dpublish.rs14 use std::process::{Command, ExitStatus, Output, Stdio};
174 run_cmd(Command::new("cargo").arg("fetch")); in main()
218 fn cmd_output(cmd: &mut Command) -> Output { in cmd_output()
226 fn cmd_status(cmd: &mut Command) -> ExitStatus { in cmd_status()
234 fn run_cmd(cmd: &mut Command) { in run_cmd() argument
459 Command::new("cargo") in publish()
474 Command::new("curl") in curl()
506 let vendor = cmd_output(Command::new("cargo").arg("vendor").stderr(Stdio::inherit())); in verify()
522 let mut cmd = Command::new("cargo"); in verify()
532 Command::new("tar") in verify()
/wasmtime-44.0.1/crates/gdbstub-component/artifact/
H A Dbuild.rs3 use std::process::Command;
64 fn cargo() -> Command { in cargo()
65 let mut cargo = Command::new("cargo"); in cargo()
/wasmtime-44.0.1/ci/
H A Dtrigger-release-branch-ci.rs3 use std::process::Command;
6 let output = Command::new("git") in main()
57 let status = Command::new("gh") in main()
H A Dfind-latest-release.rs1 use std::process::Command;
3 let output = Command::new("git") in main()
/wasmtime-44.0.1/crates/cache/
H A Dbuild.rs1 use std::process::Command;
5 let git_rev = match Command::new("git").args(["rev-parse", "HEAD"]).output() { in main()
/wasmtime-44.0.1/crates/wizer/benches/uap-bench/
H A Dbuild.rs1 use std::process::Command;
8 let status = Command::new("curl") in main()
/wasmtime-44.0.1/crates/c-api/
H A Dbuild.rs2 use std::process::Command;
39 let mut cmake = Command::new("cmake"); in main()
/wasmtime-44.0.1/tests/all/native_debug/
H A Ddump.rs2 use std::process::Command;
15 let output = Command::new(&dwarfdump) in get_dwarfdump()
H A Dgdb.rs4 use std::process::Command;
10 let mut cmd = Command::new(&lldb_path); in gdb_with_script()
/wasmtime-44.0.1/
H A Dbuild.rs3 use std::process::Command;
23 let output = match Command::new("git") in set_commit_info_for_rustc()
/wasmtime-44.0.1/crates/wasi-nn/tests/check/
H A Dmod.rs10 process::Command,
35 let mut curl = Command::new("curl"); in download()
/wasmtime-44.0.1/examples/wasip2-async/
H A Dmain.rs12 use wasmtime_wasi::p2::bindings::Command;
51 let command = Command::instantiate_async(&mut store, &component, &linker).await?; in main()
/wasmtime-44.0.1/fuzz/fuzz_targets/
H A Dinstantiate-many.rs49 let mut commands: Vec<oracles::Command> = (0..u.int_in_range(1..=max_instances)?) in execute_one()
50 .map(|_| Ok(oracles::Command::Instantiate(u.arbitrary()?))) in execute_one()
/wasmtime-44.0.1/crates/debugger/src/
H A Dlib.rs52 in_tx: mpsc::Sender<Command<T>>,
149 enum Command<T: 'static> { enum
161 in_rx: Mutex<mpsc::Receiver<Command<T>>>,
207 Command::Query(closure) => { in handle()
221 Command::Continue => { in handle()
343 .send(Command::Continue) in run()
374 .send(Command::Continue) in run()
484 .send(Command::Query(Box::new(|store| Box::new(f(store))))) in with_store()
/wasmtime-44.0.1/crates/wasi-keyvalue/tests/
H A Dmain.rs7 use wasmtime_wasi::{WasiCtx, WasiCtxView, WasiView, p2::bindings::Command};
36 let command = Command::instantiate_async(&mut store, &component, &linker).await?; in run_wasi()
/wasmtime-44.0.1/crates/wasi-config/tests/
H A Dmain.rs7 use wasmtime_wasi::p2::{add_to_linker_async, bindings::Command};
37 let command = Command::instantiate_async(&mut store, &component, &linker).await?; in run_wasi()
/wasmtime-44.0.1/examples/wasip2/
H A Dmain.rs11 use wasmtime_wasi::p2::bindings::sync::Command;
50 let command = Command::instantiate(&mut store, &component, &linker)?; in main()
/wasmtime-44.0.1/crates/test-programs/artifacts/
H A Dbuild.rs6 use std::process::Command;
330 let mut cmd = Command::new(wasi_sdk_path.join("bin/wasm32-wasip1-clang")); in build_c_or_cpp_test()
347 let mut dwp = Command::new(wasi_sdk_path.join("bin/llvm-dwp")); in build_c_or_cpp_test()
409 fn cargo() -> Command { in cargo()
413 let mut cargo = Command::new("cargo"); in cargo()
/wasmtime-44.0.1/crates/wasi-nn/tests/exec/
H A Dwit.rs6 use wasmtime_wasi::p2::bindings::sync::Command;
24 let command = Command::instantiate(&mut store, &module, &linker)?; in run()

123