Home
last modified time | relevance | path

Searched refs:shell_command (Results 1 – 25 of 42) sorted by relevance

12

/aosp_15_r20/device/generic/goldfish/tools/
Dmk_combined_img.py22 def shell_command(comm_list): function
75 shell_command(dd_comm)
83 shell_command([simg2img, partition["path"], temp_file])
90 shell_command([sgdisk, '--clear', filename])
103 shell_command([sgdisk, new_comm, type_comm, name_comm, output_file])
121 shell_command(['rm', '-rf', output_filename + ".qcow2"])
135 shell_command(['dd', "if=" + partitions[0]["path"], "of=" + output_filename,
137 shell_command(['dd', "if=" + partitions[1]["path"], "of=" + output_filename,
146 shell_command(['dd', "if=" + gpt_head, "of=" + output_filename, "bs=1024k",
148 shell_command(['dd', "if=" + partitions[0]["path"], "of=" + output_filename,
[all …]
/aosp_15_r20/platform_testing/tests/automotive/mobly_tests/utilities/
H A Dmedia_utils.py31 def execute_shell_on_device(self, shell_command): argument
34 shell_command,
37 return self.target.adb.shell(shell_command)
40 def execute_shell_on_hu_device(self, shell_command): argument
43 shell_command,
46 return self.discoverer.adb.shell(shell_command)
H A Dspectatio_utils.py58 def execute_shell_on_device(self, device_target, shell_command): argument
62 shell_command,
65 return device_target.adb.shell(shell_command)
/aosp_15_r20/external/python/watchdog/src/watchdog/tricks/
D__init__.py78 shell_command: str,
91 self.shell_command = shell_command
116 if self.shell_command is None:
125 command = self.shell_command
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/lldb/API/
DSBPlatform.h58 SBPlatformShellCommand(const char *shell, const char *shell_command);
59 SBPlatformShellCommand(const char *shell_command);
75 void SetCommand(const char *shell_command);
152 SBError Run(SBPlatformShellCommand &shell_command);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/lldb/API/
DSBPlatform.h58 SBPlatformShellCommand(const char *shell, const char *shell_command);
59 SBPlatformShellCommand(const char *shell_command);
75 void SetCommand(const char *shell_command);
152 SBError Run(SBPlatformShellCommand &shell_command);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/lldb/API/
DSBPlatform.h58 SBPlatformShellCommand(const char *shell, const char *shell_command);
59 SBPlatformShellCommand(const char *shell_command);
75 void SetCommand(const char *shell_command);
152 SBError Run(SBPlatformShellCommand &shell_command);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/lldb/API/
DSBPlatform.h58 SBPlatformShellCommand(const char *shell, const char *shell_command);
59 SBPlatformShellCommand(const char *shell_command);
75 void SetCommand(const char *shell_command);
152 SBError Run(SBPlatformShellCommand &shell_command);
/aosp_15_r20/frameworks/base/services/tests/
H A Druntests.py31 def run(shell_command, echo=True): argument
35 echo if isinstance(echo, str) else shell_command,
37 return subprocess.check_call(shell_command, shell=True)
/aosp_15_r20/trusty/device/arm/generic-arm64/project/qemu/
Drun.py63 elif args.shell_command:
83 if args.shell_command:
84 return runner.androidtest_run(args.shell_command, timeout)
149 results = runner.run(args.boot_test, args.shell_command, args.timeout)
/aosp_15_r20/system/connectivity/wificond/tests/
Dshell_utils.cpp59 int RunShellCommand(const std::string& shell_command, std::string* output) { in RunShellCommand() argument
70 LOG(FATAL) << "Failed to fork child for shell command: " << shell_command; in RunShellCommand()
79 execl(kShellPath, "sh", "-c", shell_command.c_str(), nullptr); in RunShellCommand()
Dshell_utils.h30 int RunShellCommand(const std::string& shell_command,
/aosp_15_r20/device/google/cuttlefish/host/frontend/webrtc/libdevice/
Dstreamer.cpp107 std::optional<std::string> shell_command; member
357 const std::string& icon_name, const std::string& shell_command) { in AddCustomControlPanelButtonWithShellCommand() argument
360 button.shell_command = shell_command; in AddCustomControlPanelButtonWithShellCommand()
466 if (button.shell_command) { in OnOpen()
467 button_entry[kControlPanelButtonShellCommand] = *(button.shell_command); in OnOpen()
/aosp_15_r20/external/mbedtls/tests/scripts/
H A Danalyze_outcomes.py67 shell_command = "tests/scripts/all.sh --outcome-file " + outcome_file + \
69 Results.log("Running: " + shell_command)
70 ret_val = subprocess.run(shell_command.split(), check=False).returncode
/aosp_15_r20/external/chromium-trace/catapult/devil/devil/android/
H A Dinstall_commands.py47 shell_command = _SHELL_COMMAND_FORMAT % (file_system.TEST_EXECUTABLE_DIR,
50 device.WriteFile(shell_file, shell_command)
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/tests/scripts/
H A Danalyze_outcomes.py77 shell_command = "tests/scripts/all.sh --outcome-file " + outcome_file + \
79 results.info("Running: {}", shell_command)
80 ret_val = subprocess.run(shell_command.split(), check=False).returncode
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/tools/run_tests/artifacts/
Dpackage_targets.py26 shell_command, argument
39 'DOCKER_RUN_SCRIPT_COMMAND': shell_command,
Ddistribtest_targets.py26 shell_command, argument
44 'DOCKER_RUN_SCRIPT_COMMAND': shell_command,
Dartifact_targets.py30 shell_command, argument
47 'DOCKER_RUN_SCRIPT_COMMAND': shell_command,
/aosp_15_r20/external/grpc-grpc/tools/run_tests/artifacts/
H A Dpackage_targets.py27 shell_command, argument
41 "DOCKER_RUN_SCRIPT_COMMAND": shell_command,
H A Ddistribtest_targets.py27 shell_command, argument
46 "DOCKER_RUN_SCRIPT_COMMAND": shell_command,
H A Dartifact_targets.py31 shell_command, argument
49 "DOCKER_RUN_SCRIPT_COMMAND": shell_command,
/aosp_15_r20/build/bazel/rules/
H A Dgensrcs.bzl52 shell_command = command \
59 command = shell_command,
/aosp_15_r20/device/google/cuttlefish/host/frontend/webrtc/html_client/js/
Dapp.js307 if (button.shell_command) {
311 e => this.#onCustomShellButton(button.shell_command, e),
1129 #onCustomShellButton(shell_command, e) { argument
1134 adbShell(shell_command);
/aosp_15_r20/device/google/cuttlefish/host/libs/config/
Dcustom_actions.cpp64 config.shell_command = dictionary[kCustomActionShellCommand].asString(); in GetCustomShellActionConfigFromJson()
118 json[kCustomActionShellCommand] = custom_action.shell_command; in ToJson()

12