Searched defs:run_command (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dexecutive_mock.py54 def run_command(self, arg_list, error_handler=None, return_exit_code=False, member in class:MockExecutive2
H A Dexecutive_unittest.py36 from webkitpy.common.system.executive import Executive, run_command, ScriptError namespace
98 run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True)
103 self.assertRaises(AssertionError, executive.run_command, "echo")
104 self.assertRaises(AssertionError, executive.run_command, u"echo")
105 executive.run_command(echo.command_arguments('foo'))
106 executive.run_command(tuple(echo.command_arguments('foo')))
127 output = executive.run_command(cat.command_arguments(), input=unicode_tor_input)
130 output = executive.run_command(echo.command_arguments("-n", unicode_tor_input))
133 output = executive.run_command(echo.command_arguments("-n", unicode_tor_input), decode_output=False)
137 output = executive.run_command(ca
[all...]
H A Dexecutive.py99 def run_command(*args, **kwargs): function
101 # New code should use Executive.run_command directly instead
102 return Executive().run_command(*args, **kwargs)
137 # FIXME: Remove this deprecated method and move callers to run_command.
172 return int(self.run_command(["sysctl", "-n", "hw.ncpu"]))
208 self.run_command(command, error_handler=self.ignore_error)
293 self.run_command(command, error_handler=self.ignore_error)
304 self.run_command(command, error_handler=self.ignore_error)
349 def run_command(self, member in class:Executive
374 # run_command automaticall
[all...]
/external/linux-tools-perf/util/
H A Drun-command.c190 int run_command(struct child_process *cmd) function
213 return run_command(&cmd);
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Ddeduplicate_tests_unittest.py38 def run_command(self, member in class:MockExecutive.Executive
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dapi.py39 from webkitpy.common.system.executive import Executive, run_command, ScriptError namespace
164 run_command(args, input=patch.contents())
H A Dscm.py40 from webkitpy.common.system.executive import Executive, run_command, ScriptError namespace
159 return self._executive.run_command(args,
363 info_output = run_command(svn_info_args).rstrip()
643 return run_command(['git', 'rev-parse', '--is-inside-work-tree'], cwd=path, error_handler=Executive.ignore_error).rstrip() == "true"
648 (checkout_root, dot_git) = os.path.split(run_command(['git', 'rev-parse', '--git-dir'], cwd=(path or "./")))
663 return run_command(["git", "config", "--get-all", key],
H A Dscm_unittest.py51 from webkitpy.common.system.executive import Executive, run_command, ScriptError namespace
86 return run_command([command, "diff"] + list(args), decode_output=False)
101 run_command(["svn", "add", path])
105 run_command(["svn", "commit", "--quiet", "--message", message])
141 run_command(['svn', 'update'])
150 run_command(['svnadmin', 'create', '--pre-1.5-compatible', test_object.svn_repo_path])
154 run_command(['svn', 'checkout', '--quiet', test_object.svn_repo_url, test_object.svn_checkout_path])
166 run_command(['rm', '-rf', test_object.svn_checkout_path])
167 run_command(['svn', 'checkout', '--quiet', test_object.svn_repo_url + '/trunk', test_object.svn_checkout_path])
173 run_command(['r
[all...]
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dcommitqueuetask.py35 def run_command(self, command): member in class:CommitQueueTaskDelegate
84 self._delegate.run_command(command)
H A Dcommitqueuetask_unittest.py47 def run_command(self, command): member in class:MockCommitQueue
248 def run_command(self, command): member in class:CommitQueueTaskTest.test_double_flaky_test_failure.DoubleFlakyCommitQueue
250 MockCommitQueue.run_command(self, command)
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Dqueues_unittest.py179 def run_command(self, command): member in class:SecondThoughtsCommitQueue
183 return CommitQueue.run_command(self, command)
H A Dqueues.py304 def run_command(self, command): member in class:CommitQueue
/external/webkit/Tools/Scripts/webkitpy/tool/
H A Dmocktool.py663 def run_command(self, member in class:MockExecutive
672 log("MOCK run_command: %s" % args)

Completed in 154 milliseconds