HomeSort by relevance Sort by last modified time
    Searched full:popen (Results 1 - 25 of 347) 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/bison/lib/
stdio--.h 39 # undef popen macro
40 # define popen popen_safer macro
  /bionic/libc/upstream-netbsd/libc/gen/
popen.c 1 /* $NetBSD: popen.c,v 1.32 2012/06/25 22:32:43 abs Exp $ */
38 static char sccsid[] = "@(#)popen.c 8.3 (Berkeley) 5/3/95";
40 __RCSID("$NetBSD: popen.c,v 1.32 2012/06/25 22:32:43 abs Exp $");
63 __weak_alias(popen,_popen)
81 popen(const char *command, const char *type) function
128 /* POSIX.2 B.3.2.2 "popen() shall ensure that any streams
129 from previous popen() calls that remain open in the
  /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)
199 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()
  /external/skia/tools/
merge_static_libs.py 32 proc = subprocess.Popen([ar, '-t', in_lib], stdout=subprocess.PIPE)
36 proc = subprocess.Popen([ar, '-x', in_lib], stdout=subprocess.PIPE,
submit_try 51 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
68 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
87 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
232 proc = subprocess.Popen(try_args, stdout=subprocess.PIPE,
  /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', opts.branch, '--pretty'],
  /external/valgrind/main/none/tests/
coolo_sigaction.cpp 46 FILE *p = popen("echo Hallo World", "r");
  /external/chromium-trace/
update.py 26 p = subprocess.Popen(svn_co_args, stdout=subprocess.PIPE)
96 p = subprocess.Popen(yuic_args, stdin=subprocess.PIPE)
  /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-info.py 36 proc = subprocess.Popen(['git', 'log', '-1', '--format=%H'],
46 proc = subprocess.Popen(['git', 'status'],
  /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/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
172 child = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
238 stream = subprocess.Popen(cmd, stdout=subprocess.PIPE).stdout
277 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/tests/
stdio_test.cpp 185 TEST(stdio, popen) {
186 FILE* fp = popen("cat /proc/version", "r");

Completed in 1665 milliseconds

1 2 3 4 5 6 7 8 91011>>