Home
last modified time | relevance | path

Searched defs:command (Results 1 – 11 of 11) sorted by relevance

/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/
Dprocess.rs30 let mut command = Command::new("echo"); in sdv_process_output_test() localVariable
49 let mut command = Command::new("echo"); in sdv_process_status_test() localVariable
67 let mut command = Command::new("echo"); in sdv_process_spawn_test() localVariable
141 let mut command = Command::new("echo"); in sdv_process_kill_test() localVariable
159 let mut command = Command::new("echo"); in sdv_process_try_wait_test() localVariable
182 let mut command = Command::new("echo"); in sdv_process_drop_test() localVariable
188 let mut command = Command::new("echo"); in sdv_process_drop_test() localVariable
206 let mut command = Command::new("echo"); in sdv_process_stdio_test() localVariable
253 let mut command = std::process::Command::new("echo"); in sdv_process_child_stdio_convert_test() localVariable
277 let mut command = Command::new("echo"); in sdv_process_debug_test() localVariable
Dpty_process.rs31 let mut command = PtyCommand::new("echo"); in sdv_pty_process_test() localVariable
80 let mut command = PtyCommand::new("echo"); in sdv_pty_process_read_and_write_test() localVariable
111 let mut command = PtyCommand::new("echo"); in sdv_pty_split_test() localVariable
143 let mut command = PtyCommand::new("echo"); in sdv_pty_into_split_test() localVariable
177 let mut command = PtyCommand::new("echo"); in sdv_pty_unsplit_test() localVariable
/commonlibrary/rust/ylong_runtime/ylong_runtime/benches/
Dylong_tokio_process.rs32 let mut command = tokioCommand::new("echo"); localVariable
57 let mut command = Command::new("echo"); localVariable
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/
Dcommand.rs604 let mut command = Command::new("echo"); in ut_process_basic_test() localVariable
621 let mut command = Command::new("echo"); in ut_process_output_test() localVariable
640 let mut command = Command::new("echo"); in ut_process_status_test() localVariable
711 let mut command = Command::new("echo"); in ut_process_kill_test() localVariable
729 let mut command = Command::new("echo"); in ut_process_drop_test() localVariable
735 let mut command = Command::new("echo"); in ut_process_drop_test() localVariable
752 let mut command = Command::new("echo"); in ut_process_debug_test() localVariable
Dmod.rs20 mod command; module
Dchild.rs453 let mut command = std::process::Command::new("echo"); in ut_process_child_new_test() localVariable
477 let mut command = std::process::Command::new("echo"); in ut_process_try_wait_test() localVariable
501 let mut command = Command::new("echo"); in ut_process_stdio_test() localVariable
547 let mut command = std::process::Command::new("echo"); in ut_process_child_stdio_convert_test() localVariable
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/process/pty_process/
Dcommand.rs24 command: Command, field
529 let mut command = PtyCommand::new("echo"); in ut_pty_process_basic_test() localVariable
583 let mut command = PtyCommand::new("echo"); in ut_pty_process_read_write_test() localVariable
614 let mut command = PtyCommand::new("echo"); in ut_pty_process_split_test() localVariable
646 let mut command = PtyCommand::new("echo"); in ut_pty_process_into_split_test() localVariable
680 let mut command = PtyCommand::new("echo"); in ut_pty_process_unsplit_test() localVariable
Dmod.rs16 mod command; module
/commonlibrary/ets_utils/js_sys_module/test/
Dtest_process.cpp39 OHOS::JsSysModule::Process::ChildProcess* RunCommand(napi_env env, napi_value command, napi_value o… in RunCommand()
107 std::string command("ls; sleep 1"); variable
133 std::string command("ls; sleep 1"); variable
159 std::string command("each abc"); variable
182 std::string command("mkdir test.txt"); variable
319 std::string command("ls; sleep 1s;"); variable
345 std::string command("ls; sleep 1s;"); variable
695 std::string command("ls; sleep 1"); variable
724 std::string command("ls; sleep 1s;"); variable
/commonlibrary/ets_utils/js_util_module/container/
Dbuild_ts_js.py21 def run_command(command): argument
/commonlibrary/ets_utils/js_sys_module/process/
Djs_childprocess.cpp62 void ChildProcess::Spawn(napi_env env, napi_value command) in Spawn()