Home
last modified time | relevance | path

Searched refs:full_command (Results 1 – 7 of 7) sorted by relevance

/external/igt-gpu-tools/scripts/
Dtest_igt_gpu_tools.py40 full_command = ["adb", "-s", serial_number, "shell"] + command
42 print("+" + " ".join(full_command))
43 ret = subprocess.run(full_command, capture_output=True, universal_newlines=True)
/external/bcc/tests/python/
Dtest_tools_smoke.py29 full_command = TOOLS_DIR + command
32 (timeout, full_command), shell=True))
39 full_command = TOOLS_DIR + command
42 (signal, kill_timeout, timeout, full_command), shell=True)
/external/OpenCL-CTS/scripts/
Dtest_opencl_cts.py37 full_command = ["adb", "-s", serial_number, "shell", command]
39 full_command, capture_output=True, universal_newlines=True)
/external/autotest/server/site_tests/firmware_Cr50DeviceState/
Dfirmware_Cr50DeviceState.py403 full_command = self._s0ix_cmds
406 full_command = self._s3_cmds
409 full_command = 'poweroff'
410 self.faft_client.system.run_shell_command(full_command, block)
/external/toolchain-utils/
Dbuild_tc.py158 full_command = 'sudo %s %s' % (env_string, command)
159 rv = self._ce.ChrootRunCommand(self._chromeos_root, full_command)
/external/autotest/server/cros/multimedia/
Dremote_facade_factory.py229 full_command = '%s "%s"' % (self._client.ssh_command(), command)
240 self._log_saving_job = utils.BgJob(full_command,
/external/llvm-project/lldb/source/Interpreter/
DCommandObject.cpp1015 std::string full_command(GetCommandName()); in Execute() local
1016 full_command += ' '; in Execute()
1017 full_command += args_string; in Execute()
1019 argv[0] = full_command.c_str(); in Execute()