Home
last modified time | relevance | path

Searched refs:run_command (Results 1 – 25 of 40) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
Dexecutive_unittest.py108 …Executive().run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exi…
113 self.assertRaises(AssertionError, executive.run_command, "echo")
114 self.assertRaises(AssertionError, executive.run_command, u"echo")
115 executive.run_command(command_line('echo', 'foo'))
116 executive.run_command(tuple(command_line('echo', 'foo')))
120 executive.run_command(command_line('echo', 1))
148 output = executive.run_command(command_line('cat'), input=unicode_tor_input)
151 output = executive.run_command(command_line('echo', unicode_tor_input))
154 output = executive.run_command(command_line('echo', unicode_tor_input), decode_output=False)
158 output = executive.run_command(command_line('cat'), input=encoded_tor, decode_output=False)
Dplatforminfo.py77 …output = self._executive.run_command(['system_profiler', 'SPDisplaysDataType'], error_handler=self…
94 return long(self._executive.run_command(["sysctl", "-n", "hw.memsize"]))
166 ver_output = self._executive.run_command(['cmd', '/c', 'ver'], decode_output=False)
Dexecutive_mock.py100 def run_command(self, member in MockExecutive
164 command_outputs.append([0, self.run_command(cmd_line, cwd=cwd), ''])
186 def run_command(self, member in MockExecutive2
Dworkspace.py68 self._executive.run_command(['zip', '-9', '-r', zip_path, '.'], cwd=source_path)
Dprofiler.py120 profile_text = self._host.executive.run_command(pprof_args)
168 perf_output = self._host.executive.run_command(perf_args)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
Dhost.py83 self.executive.run_command(['svn', 'help'])
86 self.executive.run_command(['svn.bat', 'help'])
103 self.executive.run_command(['git', 'help'])
106 self.executive.run_command(['git.bat', 'help'])
Dprettypatch.py64 return self._executive.run_command(args, input=diff, decode_output=False)
/external/chromium_org/third_party/android_testrunner/
Dpatch.diff1 diff --git a/third_party/android_testrunner/run_command.py b/third_party/android_testrunner/run_com…
3 --- a/third_party/android_testrunner/run_command.py
4 +++ b/third_party/android_testrunner/run_command.py
Dadb_interface.py31 import run_command
71 return run_command.RunCommand(adb_cmd, timeout_time=timeout_time,
262 run_command.RunCommand(adb_command_string, return_output=False)
DREADME.chromium18 bugs in run_command.py.
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
Dandroid_unittest.py62 def run_command(self, args): member in MockAndroidDebugBridge
121 return MockExecutive2(run_command_fn=self._mock_executive.run_command)
161 port._executive = MockExecutive2(run_command_fn=port._mock_adb.run_command)
203 self._mock_executive = MockExecutive2(run_command_fn=self._mock_adb.run_command)
226 mock_executive = MockExecutive2(run_command_fn=mock_adb.run_command)
242 mock_executive = MockExecutive2(run_command_fn=mock_adb.run_command)
258 self._mock_executive = MockExecutive2(run_command_fn=self._mock_adb.run_command)
Dbase.py384 output = self._executive.run_command(cmd, error_handler=error_handler)
408 _ = self._executive.run_command(['ruby', '--version'])
430 _ = self._executive.run_command([self._path_to_wdiff(), '--help'])
450 if self._executive.run_command([httpd_path, "-v"], env=env, return_exit_code=True) != 0:
499 exit_code = self._executive.run_command(comand, return_exit_code=True)
1341 wdiff = self._executive.run_command(command, decode_output=False,
1380 return self._executive.run_command(command, decode_output=False)
1438 config = self._executive.run_command([self.path_to_apache(), '-v'])
1517 …stderr = self._executive.run_command(['flock', sys.executable, sanitizer_filter_path, sanitizer_st…
1622 …symbols += self._executive.run_command(['nm', path_to_module], error_handler=self._executive.ignor…
Dandroid.py257 …result = self._executive.run_command(self.adb_command() + command, error_handler=error_handler, de…
315 …output = executive.run_command([adb_command_path, 'version'], error_handler=executive.ignore_error,
356 …result = executive.run_command([AndroidCommands.adb_command_path(executive, debug_logging=self._de…
504 self._executive.run_command(['adb', 'devices'])
511 self._executive.run_command(['taskset', '-p', '-c', '0', str(pid)])
723 return self._host.executive.run_command([perf_path, '--version'])
764 perf_output = self._host.executive.run_command(perfhost_args)
/external/skia/tools/tests/
Dbase_unittest.py45 def run_command(self, args): member in TestCase
58 return find_run_binary.run_command(args)
Drender_pictures_test.py557 return self.run_command([binary,
619 return self.run_command([binary,
/external/lldb/utils/test/
Dlldb-disasm.py68 def run_command(ci, cmd, res, echo=True): function
107 run_command(ci, cmd, res, not quiet_disassembly)
110 run_command(ci, 'file %s' % exe, res, not quiet_disassembly)
167 run_command(ci, cmd, res, not quiet_disassembly)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
Ddump_reader_win.py63 stack = self._host.executive.run_command(cmd)
125 _ = self._host.executive.run_command([cdb, '-version'])
Ddump_reader_multipart.py75 stack = self._host.executive.run_command(cmd, return_stderr=False)
147 self._host.executive.run_command(cmd)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
Dsvn.py72 exit_code = executive.run_command(svn_info_args, cwd=path, return_exit_code=True)
84 info_output = Executive().run_command(svn_info_args, cwd=path).rstrip()
185 …info_output = Executive().run_command([self.executable_name, 'log', '-r', revision, '--xml', repos…
/external/chromium_org/build/android/pylib/utils/
Demulator.py26 import run_command
401 run_command.RunCommand(adb_cmd,
410 run_command.RunCommand(adb_cmd)
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
Drun-command.h51 int run_command(struct child_process *);
Drun-command.c190 int run_command(struct child_process *cmd) in run_command() function
213 return run_command(&cmd); in run_command_v_opt()
/external/chromium_org/components/cloud_devices/tools/prototype/
Dprototype.py269 self.run_command(ifconfig_cmd % self.interface)
285 self.run_command(dhclient_release % self.interface)
286 self.run_command(dhclient_renew % self.interface)
303 def run_command(self, cmd): member in WifiHandlerReal
449 self.run_command()
466 def run_command(self): member in MDnsWrapper
477 self.run_command()
482 self.run_command()
/external/skia/tools/
Dfind_run_binary.py14 def run_command(args): function
/external/chromium_org/third_party/skia/tools/
Dfind_run_binary.py14 def run_command(args): function

12