HomeSort by relevance Sort by last modified time
    Searched defs:run_command (Results 1 - 23 of 23) sorted by null

  /bootable/recovery/applypatch/
applypatch.sh 51 run_command() { function
75 run_command df | awk "/$1/ {print gensub(/K/, \"\", \"g\", \$6)}"
82 run_command rm $WORK_DIR/bloat.dat
83 run_command rm $WORK_DIR/old.file
84 run_command rm $WORK_DIR/foo
85 run_command rm $WORK_DIR/patch.bsdiff
86 run_command rm $WORK_DIR/applypatch
87 run_command rm $CACHE_TEMP_SOURCE
88 run_command rm /cache/bloat*.dat
110 run_command $WORK_DIR/applypatch && fai
    [all...]
imgdiff_test.sh 37 run_command() { function
68 run_command rm $WORK_DIR/applypatch
69 run_command rm $WORK_DIR/source
70 run_command rm $WORK_DIR/target
71 run_command rm $WORK_DIR/patch
91 run_command rm /data/local/tmp/target
93 run_command /data/local/tmp/applypatch /data/local/tmp/source \
  /bootable/recovery/
verifier_test.sh 36 run_command() { function
59 run_command rm $WORK_DIR/verifier_test
60 run_command rm $WORK_DIR/package.zip
71 run_command $WORK_DIR/verifier_test $WORK_DIR/package.zip || fail
77 run_command $WORK_DIR/verifier_test $WORK_DIR/package.zip && fail
  /external/webkit/Tools/Scripts/webkitpy/common/system/
executive_mock.py 54 def run_command(self, arg_list, error_handler=None, return_exit_code=False, member in class:MockExecutive2
executive_unittest.py 36 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(cat.command_arguments(), input=encoded_tor, decode_output=False
    [all...]
executive.py 99 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 automatically decodes to unicode() unless explicitly told not to
    [all...]
  /development/testrunner/test_defs/
gtest.py 26 import run_command namespace
57 run_command.RunCommand(shell_cmd, return_output=False)
native_test.py 27 import run_command namespace
71 if run_command.RunHostCommand(f) != 0:
74 if run_command.HasValgrind():
75 if run_command.RunHostCommand(f, valgrind=True) == 0:
164 return run_command.RunHostCommand(full_path, valgrind=valgrind)
host_test.py 25 import run_command namespace
107 run_command.RunOnce(cmd, return_output=False)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/
deduplicate_tests_unittest.py 38 def run_command(self, member in class:MockExecutive.Executive
  /development/testrunner/
adb_interface.py 31 import run_command namespace
71 return run_command.RunCommand(adb_cmd, timeout_time=timeout_time,
257 run_command.RunCommand(adb_command_string, return_output=False)
coverage.py 30 import run_command namespace
192 run_command.RunCommand(cmd, return_output=False)
runtest.py 46 import run_command namespace
261 run_command.RunCommand(cmd, return_output=False)
280 run_command.RunCommand(cmd, return_output=False, timeout_time=600)
311 run_command.RunCommand(cmd, return_output=False)
401 run_command.SetAbortOnError()
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
api.py 39 from webkitpy.common.system.executive import Executive, run_command, ScriptError namespace
164 run_command(args, input=patch.contents())
scm.py 40 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],
    [all...]
scm_unittest.py 51 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(['rm', '-rf', test_object.svn_repo_path]
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
commitqueuetask.py 35 def run_command(self, command): member in class:CommitQueueTaskDelegate
84 self._delegate.run_command(command)
commitqueuetask_unittest.py 47 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)
  /ndk/sources/host-tools/make-3.81/tests/
test_driver.pl 769 sub run_command subroutine
780 print "run_command: \"@_\" returned $code.\n" if $debug;
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queues_unittest.py 179 def run_command(self, command): member in class:SecondThoughtsCommitQueue
183 return CommitQueue.run_command(self, command)
queues.py 304 def run_command(self, command): member in class:CommitQueue
  /frameworks/base/cmds/dumpstate/
utils.c 105 run_command(title, 10, "su", "root", "showmap", arg, NULL);
150 int run_command(const char *title, int timeout_seconds, const char *command, ...) { function
444 run_command(NULL, 5, "/system/bin/stagefright", "-o", "-a", path, NULL);
  /external/webkit/Tools/Scripts/webkitpy/tool/
mocktool.py 663 def run_command(self, member in class:MockExecutive
672 log("MOCK run_command: %s" % args)

Completed in 219 milliseconds