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

1 2

  /external/chromium_org/third_party/skia/tools/
find_run_binary.py 14 def run_command(args): function
  /external/skia/tools/
find_run_binary.py 14 def run_command(args): function
  /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 32 run_command() { function
55 run_command rm $WORK_DIR/verifier_test
56 run_command rm $WORK_DIR/package.zip
68 run_command $WORK_DIR/verifier_test "$@" $WORK_DIR/package.zip || fail
75 run_command $WORK_DIR/verifier_test "$@" $WORK_DIR/package.zip && fail
  /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:
185 return run_command.RunHostCommand(full_path, valgrind=valgrind)
host_test.py 25 import run_command namespace
108 run_command.RunOnce(cmd, return_output=False)
  /external/skia/tools/tests/
base_unittest.py 45 def run_command(self, args): member in class:TestCase
58 return find_run_binary.run_command(args)
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
run-command.c 190 int run_command(struct child_process *cmd) function
213 return run_command(&cmd);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_mock.py 100 def run_command(self, member in class:MockExecutive
121 _log.info("MOCK run_command: %s, cwd=%s%s%s" % (args, cwd, env_string, input_string))
164 command_outputs.append([0, self.run_command(cmd_line, cwd=cwd), ''])
186 def run_command(self, member in class:MockExecutive2
executive.py 118 # FIXME: Remove this deprecated method and move callers to run_command.
186 self.run_command(command, error_handler=self.ignore_error)
372 def run_command(self, member in class:Executive
397 # run_command automatically decodes to unicode() unless explicitly told not to.
  /external/lldb/utils/test/
lldb-disasm.py 68 def run_command(ci, cmd, res, echo=True): function
74 print "run_command output:", res.GetOutput()
78 print "run_command error:", res.GetError()
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)
  /development/testrunner/
adb_interface.py 31 import run_command namespace
71 return run_command.RunCommand(adb_cmd, timeout_time=timeout_time,
268 run_command.RunCommand(adb_command_string, return_output=False)
runtest.py 48 import run_command namespace
291 run_command.SetAbortOnError()
293 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
299 run_command.RunCommand(alt_cmd, return_output=False, timeout_time=600)
301 output = run_command.RunCommand(cmd, return_output=True, timeout_time=600)
302 run_command.SetAbortOnError(False)
365 output = run_command.RunCommand(cmd, return_output=True)
487 run_command.SetAbortOnError()
  /development/testrunner/coverage/
coverage.py 32 import run_command namespace
191 run_command.RunCommand(cmd, return_output=False)
  /external/chromium_org/third_party/android_testrunner/
adb_interface.py 31 import run_command namespace
71 return run_command.RunCommand(adb_cmd, timeout_time=timeout_time,
262 run_command.RunCommand(adb_command_string, return_output=False)
  /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/chromium_org/build/android/pylib/utils/
emulator.py 26 import run_command namespace
401 run_command.RunCommand(adb_cmd,
410 run_command.RunCommand(adb_cmd)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
android_unittest.py 62 def run_command(self, args): member in class: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)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
cmd.py 321 def run_command(self, command): member in class:Command
322 """Run some other command: uses the 'run_command()' method of
326 self.distribution.run_command(command)
dist.py 957 def run_command(self, command): function
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
cmd.py 321 def run_command(self, command): member in class:Command
322 """Run some other command: uses the 'run_command()' method of
326 self.distribution.run_command(command)
dist.py 957 def run_command(self, command): function
    [all...]
  /frameworks/native/cmds/dumpstate/
utils.c 215 run_command(title, 20, SU_PATH, "root", "sqlite3", dbpath, sql, NULL);
250 run_command(title, 10, SU_PATH, "root", "showmap", arg, NULL);
305 int run_command(const char *title, int timeout_seconds, const char *command, ...) { function
684 run_command("ROUTE TABLE IPv4", 10, "ip", "-4", "route", "show", "table", table, NULL);
685 run_command("ROUTE TABLE IPv6", 10, "ip", "-6", "route", "show", "table", table, NULL);

Completed in 1375 milliseconds

1 2