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

1 2 3 4

  /device/lge/hammerhead/dumpstate/
dumpstate.c 23 run_command("SUBSYSTEM TOMBSTONES", 5, SU_PATH, "root", "ls", "-l", "/data/tombstones/ramdump", NULL);
28 run_command("ION HEAPS", 5, SU_PATH, "root", "/system/bin/sh", "-c", "for f in $(ls /d/ion/*); do echo $f; cat $f; done", NULL);
  /device/lge/mako/dumpstate/
dumpstate.c 23 run_command("MODEM TOMBSTONES", 5, SU_PATH, "root", "ls", "-l", "/data/tombstones/mdm", NULL);
  /device/moto/shamu/dumpstate/
dumpstate.c 43 run_command("Subsystem Tombstone list", 5, SU_PATH, "root", "ls", "-l", "/data/tombstones/ramdump", NULL);
44 run_command("ION CLIENTS", 5, SU_PATH, "root", "/system/bin/sh", "-c", "for f in $(ls /d/ion/clients/*); do echo $f; cat $f; done", NULL);
45 run_command("ION HEAPS", 5, SU_PATH, "root", "/system/bin/sh", "-c", "for f in $(ls /d/ion/heaps/*); do echo $f; cat $f; done", 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 \
  /frameworks/native/cmds/dumpstate/
dumpstate.c 134 run_command("UPTIME", 10, "uptime", NULL);
137 run_command("CPU INFO", 10, "top", "-n", "1", "-d", "1", "-m", "30", "-t", NULL);
138 run_command("PROCRANK", 20, "procrank", NULL);
153 run_command("PROCESSES", 10, "ps", "-P", NULL);
154 run_command("PROCESSES AND THREADS", 10, "ps", "-t", "-p", "-P", NULL);
155 run_command("PROCESSES (SELINUX LABELS)", 10, "ps", "-Z", NULL);
156 run_command("LIBRANK", 10, "librank", NULL);
160 run_command("LIST OF OPEN FILES", 10, SU_PATH, "root", "lsof", NULL);
166 run_command(NULL, 10, "/system/bin/screencap", "-p", screenshot_path, NULL);
171 run_command("SYSTEM LOG", 20, "logcat", "-v", "threadtime", "-d", "*:v", NULL)
    [all...]
dumpstate.h 38 int run_command(const char *title, int timeout_seconds, const char *command, ...);
  /device/asus/deb/dumpstate/
dumpstate.c 33 run_command("MODEM TOMBSTONES", 5, SU_PATH, "root", "ls", "-l", "/data/tombstones/mdm", NULL);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
run-command.h 51 int run_command(struct child_process *);
  /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
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_unittest.py 108 Executive().run_command(["foo_bar_command_blah"], error_handler=Executive.ignore_error, return_exit_code=True)
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
    [all...]
platforminfo.py 77 output = self._executive.run_command(['system_profiler', 'SPDisplaysDataType'], error_handler=self._executive.ignore_error)
94 return long(self._executive.run_command(["sysctl", "-n", "hw.memsize"]))
166 ver_output = self._executive.run_command(['cmd', '/c', 'ver'], decode_output=False)
workspace.py 68 self._executive.run_command(['zip', '-9', '-r', zip_path, '.'], cwd=source_path)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
host.py 83 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'])
prettypatch.py 64 return self._executive.run_command(args, input=diff, decode_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)
  /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:
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)
gtest.py 26 import run_command namespace
57 run_command.RunCommand(shell_cmd, return_output=False)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/
dump_reader_win.py 63 stack = self._host.executive.run_command(cmd)
125 _ = self._host.executive.run_command([cdb, '-version'])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_dumb.py 86 self.run_command('build')
94 self.run_command('install')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
bdist_dumb.py 86 self.run_command('build')
94 self.run_command('install')
  /external/chromium_org/third_party/skia/tools/
find_run_binary.py 14 def run_command(args): function
  /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)
  /external/skia/tools/
find_run_binary.py 14 def run_command(args): function

Completed in 546 milliseconds

1 2 3 4