HomeSort by relevance Sort by last modified time
    Searched defs:popen (Results 1 - 15 of 15) sorted by null

  /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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_mock.py 132 def popen(self, args, cwd=None, env=None, **kwargs): member in class:MockExecutive
141 _log.info("MOCK popen: %s%s%s" % (args, cwd_string, env_string))
executive.py 99 child_process = self.popen(args,
105 # Use our own custom wait loop because Popen ignores a tee'd
276 ps_process = self.popen(['ps', '-eo', 'pid,comm'], stdout=self.PIPE, stderr=self.PIPE)
369 # Popen in Python 2.5 and before does not automatically encode unicode objects.
401 """Popen wrapper for convenience and to work around python bugs."""
408 process = self.popen(args,
470 # Popen will throw an exception if args are non-strings (like int())
472 # The Windows implementation of Popen cannot handle unicode strings. :(
475 # The only required arugment to popen is named "args", the rest are optional keyword arguments.
476 def popen(self, args, **kwargs) member in class:Executive
    [all...]
  /external/e2fsprogs/include/nonunix/
unistd.h 15 #define popen _popen macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_popen2.py 7 warnings.filterwarnings("ignore", "os\.popen. is deprecated.*",
23 # if we don't have os.popen, check that
27 from os import popen namespace
28 del popen
54 # The os.popen*() API delegates to the subprocess module (on Unix)
86 # same test as test_popen2(), but using the os.popen*() API
99 # same test as test_popen3(), but using the os.popen*() API
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_popen2.py 7 warnings.filterwarnings("ignore", "os\.popen. is deprecated.*",
23 # if we don't have os.popen, check that
27 from os import popen namespace
28 del popen
54 # The os.popen*() API delegates to the subprocess module (on Unix)
86 # same test as test_popen2(), but using the os.popen*() API
99 # same test as test_popen3(), but using the os.popen*() API
  /external/bison/darwin-lib/
stdio.h 1132 # undef popen macro
    [all...]
  /external/bison/linux-lib/
stdio.h 1132 # undef popen macro
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.h 384 inline FILE *popen(const char *command, const char *type) { function
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.h 381 inline FILE *popen(const char *command, const char *type) { function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
platform.py 59 # 0.5.3 - added experimental MacOS support; added better popen()
66 # to cover up situations where platforms don't have os.popen
76 # 0.3.3 - fixed popen() and "file" command invokation bugs
367 """ Fairly portable (alternative) popen implementation.
369 This is mostly needed in case os.popen() is not available, or
384 raise ValueError,'popen()-emulation only supports read mode'
419 def popen(cmd, mode='r', bufsize=None): function
421 """ Portable popen() interface.
423 # Find a working popen implementation preferring win32pipe.popen
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
platform.py 59 # 0.5.3 - added experimental MacOS support; added better popen()
66 # to cover up situations where platforms don't have os.popen
76 # 0.3.3 - fixed popen() and "file" command invokation bugs
367 """ Fairly portable (alternative) popen implementation.
369 This is mostly needed in case os.popen() is not available, or
384 raise ValueError,'popen()-emulation only supports read mode'
419 def popen(cmd, mode='r', bufsize=None): function
421 """ Portable popen() interface.
423 # Find a working popen implementation preferring win32pipe.popen
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 417 /// FILE *popen(const char *command, const char *mode);
418 popen, enumerator in enum:llvm::LibFunc::Func
  /external/chromium_org/third_party/mongoose/
mongoose.c 123 #define popen(x, y) _popen(x, y) macro
    [all...]

Completed in 1035 milliseconds