HomeSort by relevance Sort by last modified time
    Searched refs:run_command (Results 1 - 25 of 43) sorted by null

1 2

  /frameworks/base/cmds/dumpstate/
dumpstate.c 75 run_command("UPTIME", 10, "uptime", NULL);
77 run_command("CPU INFO", 10, "top", "-n", "1", "-d", "1", "-m", "30", "-t", NULL);
78 run_command("PROCRANK", 20, "procrank", NULL);
88 run_command(NULL, 5, "su", "root", "screenshot", screenshot_path, NULL);
92 run_command("SYSTEM LOG", 20, "logcat", "-v", "threadtime", "-d", "*:v", NULL);
130 run_command("EVENT LOG", 20, "logcat", "-b", "events", "-v", "threadtime", "-d", "*:v", NULL);
131 run_command("RADIO LOG", 20, "logcat", "-b", "radio", "-v", "threadtime", "-d", "*:v", NULL);
133 run_command("NETWORK INTERFACES", 10, "su", "root", "netcfg", NULL);
137 run_command("QTAGUID STATS INFO", 10, "su", "root", "cat", "/proc/net/xt_qtaguid/stats", NULL);
141 run_command("IP RULES", 10, "ip", "rule", "show", NULL)
    [all...]
dumpstate.h 28 int run_command(const char *title, int timeout_seconds, const char *command, ...);
  /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
  /development/testrunner/test_defs/
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)
gtest.py 26 import run_command namespace
57 run_command.RunCommand(shell_cmd, return_output=False)
  /external/webkit/Tools/Scripts/webkitpy/common/system/
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...]
workspace.py 60 self._executive.run_command(['zip', '-r', zip_path, source_path])
executive_mock.py 54 def run_command(self, arg_list, error_handler=None, return_exit_code=False, member in class:MockExecutive2
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...]
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
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...]
api.py 39 from webkitpy.common.system.executive import Executive, run_command, ScriptError namespace
164 run_command(args, input=patch.contents())
  /external/webkit/Tools/Scripts/webkitpy/common/
prettypatch.py 67 return self._executive.run_command(args, input=diff, decode_output=False)
prettypatch_unittest.py 40 result = executive.run_command(['ruby', '--version'])
  /external/webkit/Tools/Scripts/webkitpy/test/
cat_unittest.py 51 output = executive.Executive().run_command(cat.command_arguments(), input=input)
echo_unittest.py 63 output = executive.Executive().run_command(echo.command_arguments('foo', 'bar', 'baz'))
  /external/webkit/Tools/Scripts/
print-vse-failure-logs 61 lines = self._executive.run_command([script_path, sln_path]).splitlines()
85 build_directory = self._executive.run_command([build_directory_script_path, "--top-level"]).rstrip()
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
config.py 83 self._executive.run_command(args).rstrip())
92 exit_code = self._executive.run_command([
config_unittest.py 46 return executive.Executive().run_command(arg_list)
158 actual = e.run_command(args).rstrip()
  /development/testrunner/
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()
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)
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
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)
commitqueuetask.py 35 def run_command(self, command): member in class:CommitQueueTaskDelegate
84 self._delegate.run_command(command)

Completed in 533 milliseconds

1 2