HomeSort by relevance Sort by last modified time
    Searched full:popen (Results 1 - 25 of 290) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/tests/
bccarm 11 proc = subprocess.Popen(["bcc"] + args, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
16 proc = subprocess.Popen(args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
58 proc = subprocess.Popen(remoteCmdLine, stdout=subprocess.PIPE)
  /external/e2fsprogs/include/nonunix/
unistd.h 15 #define popen _popen macro
  /external/clang/utils/C++Tests/LLVM-Code-Symbols/
check-symbols 8 p0 = subprocess.Popen(args0, stdin=None, stdout=subprocess.PIPE,
10 p1 = subprocess.Popen(args1, stdin=p0.stdout, stdout=subprocess.PIPE,
  /external/qemu/
migration-exec.c 74 f = popen(command, "w");
76 DPRINTF("Unable to popen exec target\n");
82 DPRINTF("Unable to retrieve file descriptor for popen'd handle\n");
145 DPRINTF("Unable to apply qemu wrapper to popen file\n");
  /build/tools/
adbs 36 stream = os.popen(cmd)
46 stream = os.popen(cmd)
79 stream = os.popen(cmd)
118 stream = os.popen(cmd)
197 stream = os.popen(adb_cmd)
  /frameworks/base/tests/DumpRenderTree2/assets/
run_layout_tests.py 46 (stdoutdata, stderrdata) = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
63 subprocess.Popen(cmd, shell=True).wait()
69 subprocess.Popen(cmd, shell=True).wait()
  /frameworks/base/tests/DumpRenderTree/assets/
run_reliability_tests.py 40 adb_output = subprocess.Popen(shell_cmd_str,
48 subprocess.Popen(shell_cmd_str,
154 proc = subprocess.Popen(test_cmd, shell=True,
192 adb_output = subprocess.Popen(test_cmd, shell=True,
200 (crashed_test, err) = subprocess.Popen(
215 adb_output = subprocess.Popen(test_cmd, shell=True, stdout=subprocess.PIPE,
237 subprocess.Popen(test_cmd, shell=True, stdout=subprocess.PIPE,
244 subprocess.Popen(test_cmd, shell=True, stdout=subprocess.PIPE,
run_layout_tests.py 62 adb_output = subprocess.Popen(shell_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
167 adb_output = subprocess.Popen(generate_test_list_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
205 adb_output = subprocess.Popen(run_layout_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
213 (crashed_test, err) = subprocess.Popen(
230 adb_output = subprocess.Popen(run_layout_test_cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
253 adb_output = subprocess.Popen(shell_cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()[0]
  /external/chromium/build/
compiler_version.py 22 pipe = subprocess.Popen(compiler, stdout=subprocess.PIPE, shell=True)
  /external/llvm/utils/git/
find-rev 24 p = subprocess.Popen(['git', 'rev-list', 'git-svn', '--pretty'],
  /external/valgrind/main/none/tests/
coolo_sigaction.cpp 46 FILE *p = popen("echo Hallo World", "r");
  /external/e2fsprogs/e2fsck/
badblocks.c 79 f = popen(buf, "r");
82 _("while trying popen '%s'"), buf);
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_maketokenizer.py 89 p1 = subprocess.Popen(['flex', '-t', flexInput], stdout=subprocess.PIPE)
90 p2 = subprocess.Popen(['perl', maketokenizer], stdin=p1.stdout, stdout=outfile)
  /frameworks/compile/libbcc/tools/build/
gen-build-stamp.py 21 proc = subprocess.Popen(['git', 'log', '-1', '--format=%H'],
31 proc = subprocess.Popen(['git', 'status'],
  /external/chromium-trace/
update.py 49 p = subprocess.Popen(yuic_args, stdin=subprocess.PIPE)
  /development/testrunner/
run_command.py 98 pipe = subprocess.Popen(
167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE,
175 subproc = subprocess.Popen(["/usr/bin/valgrind", "--tool=memcheck",
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 54 pipes[binary] = subprocess.Popen(["addr2line", "-f", "-e", binary],
73 otool_pipe = subprocess.Popen(["otool", "-Vh", binary],
108 pipes[binary] = subprocess.Popen(["atos", "-o", binary, "-arch", arch, "-l", load_addr],
symbolize.py 38 readelf_pipe = subprocess.Popen([readelf, "-l", path], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
70 pipes[binary] = subprocess.Popen(["addr2line", "-f", "-e", binary],
  /external/webkit/Tools/Scripts/webkitpy/common/system/
executive.py 116 args = map(unicode, args) # Popen will throw an exception if args are non-strings (like int())
119 child_process = subprocess.Popen(args,
124 # Use our own custom wait loop because Popen ignores a tee'd
327 # Popen in Python 2.5 and before does not automatically encode unicode objects.
357 """Popen wrapper for convenience and to work around python bugs."""
360 args = map(unicode, args) # Popen will throw an exception if args are non-strings (like int())
366 process = subprocess.Popen(args,
  /external/chromium/build/util/
lastchange.py 33 proc = subprocess.Popen(['svn', 'info'],
74 # We can't just pass shell=True to Popen, as under win32 this will
79 proc = subprocess.Popen(command,
  /cts/suite/audio_quality/lib/src/
SimpleScriptExec.cpp 76 if ( !(fpipe = (FILE*)popen(command.string(),"r")) ) {
  /development/scripts/
symbol.py 25 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE, shell=True).stdout
171 child = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
237 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE).stdout
276 process = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
  /external/e2fsprogs/lib/
fpopen.c 2 * fpopen.c --- unlike the libc popen, it directly executes the
  /bionic/libc/unistd/
popen.c 1 /* $OpenBSD: popen.c,v 1.17 2005/08/08 08:05:34 espie Exp $ */
54 popen(const char *program, const char *type) function
  /external/dropbear/
svr-x11fwd.c 157 /* popen is a nice function - code is strongly based on OpenSSH's */
158 authprog = popen(XAUTH_COMMAND, "w");

Completed in 548 milliseconds

1 2 3 4 5 6 7 8 91011>>