HomeSort by relevance Sort by last modified time
    Searched defs:RunCommand (Results 1 - 25 of 27) sorted by null

1 2

  /device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/
Build.py 20 def RunCommand(commandLine):
41 ret = RunCommand(commandLine)
51 ret = RunCommand(commandLine)
  /development/testrunner/
run_command.py 32 """Sets behavior of RunCommand to throw AbortError if command process returns
37 def RunCommand(cmd, timeout_time=None, retry_count=3, return_output=True,
  /device/linaro/bootloader/edk2/IntelFsp2Pkg/FspSecCore/Vtf0/
Build.py 20 def RunCommand(commandLine):
41 ret = RunCommand(commandLine)
51 ret = RunCommand(commandLine)
  /device/linaro/bootloader/edk2/IntelFspPkg/FspSecCore/Vtf0/
Build.py 20 def RunCommand(commandLine):
41 ret = RunCommand(commandLine)
51 ret = RunCommand(commandLine)
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/FspWrapperSecCore/Vtf0/
Build.py 20 def RunCommand(commandLine):
41 ret = RunCommand(commandLine)
51 ret = RunCommand(commandLine)
  /device/google/cuttlefish_common/host/commands/stop_cvd/
main.cc 42 void RunCommand(const char* command) {
73 RunCommand(fuser_cmd.c_str());
76 RunCommand(delete_cmd.c_str());
  /test/vts/utils/python/common/
cmd_utils.py 67 def RunCommand(command):
  /external/pdfium/testing/tools/
common.py 23 def RunCommand(cmd):
  /external/perf_data_converter/src/quipper/
run_command.cc 57 int RunCommand(const std::vector<string>& command, std::vector<char>* output) {
  /external/toolchain-utils/automation/common/
command_executer.py 32 def RunCommand(self,
command_executer_test.py 85 def RunCommand(self, method, **kwargs):
88 return self._executer.RunCommand('%s runHelper %s' % (program, method),
93 exit_code = self.RunCommand('SleepForMinute', command_timeout=3)
99 exit_code = self.RunCommand('IgnoreSigTerm', command_timeout=3)
104 self.assertFalse(self.RunCommand('ReturnTrue'))
107 self.assertTrue(self.RunCommand('ReturnFalse'))
110 self.assertFalse(self.RunCommand('EchoToOutputStream'))
115 self.assertFalse(self.RunCommand('EchoToErrorStream'))
121 self.RunCommand('IsOutputStreamInteractive'),
126 self.RunCommand('IsErrorStreamInteractive')
    [all...]
  /build/make/tools/releasetools/
build_image.py 45 def RunCommand(cmd, verbose=None):
68 output, exit_code = RunCommand(cmd, False)
76 output, exit_code = RunCommand(cmd, False)
85 output, exit_code = RunCommand(cmd, False)
135 (output, exit_code) = RunCommand(cmd)
174 (_, exit_code) = RunCommand(cmd)
230 output, exit_code = RunCommand(cmd)
240 output, exit_code = RunCommand(cmd)
260 output, exit_code = RunCommand(cmd)
277 output, exit_code = RunCommand(cmd
    [all...]
  /build/kati/
fileutil.cc 63 int RunCommand(const string& shell,
  /device/linaro/bootloader/edk2/BaseTools/gcc/
mingw-gcc-build.py 467 self.RunCommand(cmd, module, 'config', skipable=True)
472 self.RunCommand(cmd, module, 'build')
479 self.RunCommand(cmd, module, 'install')
485 def RunCommand(self, cmd, module, stage, skipable=False):
  /external/google-breakpad/src/tools/windows/dump_syms/
dump_syms_unittest.cc 97 void RunCommand(const std::wstring& command_line,
196 ASSERT_NO_FATAL_FAILURE(RunCommand(command_line, &symbols));
  /external/toolchain-utils/cros_utils/
command_executer.py 184 def RunCommand(self, *args, **kwargs):
374 ret = self.RunCommand('cd %s; cros_sdk %s -- true' % (chromeos_root,
426 return self.RunCommand(
472 return self.RunCommand(
480 return self.RunCommand(
494 return self.RunCommand(
668 def RunCommand(self, *args, **kwargs):
  /external/vixl/tools/
test.py 257 def RunCommand(command, environment_options = None):
355 return RunCommand(scons_command, list(environment_options))
400 rc |= RunCommand(
406 rc |= RunCommand(
  /art/runtime/
native_stack_dump.cc 265 static bool RunCommand(const std::string& cmd) {
319 use_addr2line = (gAborting > 0) && RunCommand("addr2line -h");
  /art/tools/common/
common.py 184 def RunCommand(cmd, out, err, timeout=5):
263 def RunCommand(self, cmd, log_severity=LogSeverity.ERROR):
337 def RunCommand(self, cmd, log_severity=LogSeverity.ERROR):
436 def RunCommand(self, cmd, log_severity=LogSeverity.ERROR):
  /external/libmojo/third_party/catapult/devil/devil/android/sdk/
adb_wrapper.py 121 pshell.RunCommand('which ls')
160 def RunCommand(self, command, close=False):
  /external/v8/tools/clang/scripts/
update.py 196 def RunCommand(command, msvc_arch=None, env=None, fail_hard=True):
251 if RunCommand(command, fail_hard=False):
259 RunCommand(command)
435 RunCommand(['python', CHROMIUM_DIR+'/build/download_gold_plugin.py'])
524 RunCommand(['cmake'] + bootstrap_args + [LLVM_DIR], msvc_arch='x64')
525 RunCommand(['ninja'], msvc_arch='x64')
529 RunCommand(['ninja', 'check-all'], msvc_arch='x64')
530 RunCommand(['ninja', 'install'], msvc_arch='x64')
566 RunCommand(['ln', '-sf',
591 RunCommand(['cmake'] + lto_cmake_args + [LLVM_DIR], env=lto_env
    [all...]
  /frameworks/native/cmds/dumpstate/tests/
dumpstate_test.cpp 150 int RunCommand(const std::string& title, const std::vector<std::string>& full_command,
154 int status = ds.RunCommand(title, full_command, options);
205 EXPECT_EQ(-1, RunCommand("", {}));
209 EXPECT_EQ(0, RunCommand("", {kSimpleCommand}));
215 EXPECT_EQ(0, RunCommand("I AM GROOT", {kSimpleCommand}));
225 0, RunCommand("", {kSimpleCommand},
232 EXPECT_EQ(0, RunCommand("", {kSimpleCommand},
239 EXPECT_EQ(0, RunCommand("", {kEchoCommand, "one"}));
245 EXPECT_EQ(0, RunCommand("", {kEchoCommand, "one", "is", "the", "loniest", "number"}));
252 EXPECT_EQ(0, RunCommand("I AM GROOT", {kSimpleCommand}))
    [all...]
  /system/core/init/
subcontext.cpp 106 void RunCommand(const SubcontextCommand::ExecuteCommand& execute_command,
116 void SubcontextProcess::RunCommand(const SubcontextCommand::ExecuteCommand& execute_command,
191 RunCommand(subcontext_command.execute_command(), &reply);
  /external/chromium-trace/catapult/devil/devil/android/sdk/
adb_wrapper.py 147 pshell.RunCommand('which ls')
148 pshell.RunCommand('echo TEST', close=True)
188 def RunCommand(self, command, close=False):
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
Shell.c 533 Status = RunCommand(L"map");
    [all...]

Completed in 1169 milliseconds

1 2