Searched refs:Command (Results 1 – 4 of 4) sorted by relevance
14 use std::process::Command;51 let output = t!(Command::new("xcrun").arg("simctl").arg("list").output()); in start_simulator()71 Command::new("xcrun") in start_simulator()80 Command::new("xcrun") in start_simulator()90 Command::new("xcrun").arg("simctl").arg("erase").arg("rust_ios").check_status(); in start_simulator()91 Command::new("xcrun").arg("simctl").arg("boot").arg("rust_ios").check_status(); in start_simulator()97 Command::new("xcrun") in install_app_to_simulator()108 let output = t!(Command::new("xcrun") in run_app_on_simulator()130 Command::new("xcrun") in run_app_on_simulator()144 impl CheckStatus for Command { implementation
3 use std::process::Command;14 let status = Command::new("adb") in main()20 let status = Command::new("adb") in main()28 let output = Command::new("adb") in main()
1 use std::process::{Command, Output};177 Some(ref wrapper) if wrapper.is_empty() => Command::new(rustc), in rustc_version_cmd()179 let mut cmd = Command::new(wrapper); in rustc_version_cmd()187 None => Command::new(rustc), in rustc_version_cmd()248 let output = Command::new("freebsd-version").output().ok()?; in which_freebsd()273 let output = Command::new(emcc).arg("-dumpversion").output().ok()?; in emcc_version_code()
5160 let output = std::process::Command::new("freebsd-version") in which_freebsd()