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

  /external/bison/lib/
stdio--.h 39 # undef popen macro
40 # define popen popen_safer macro
  /external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
list_ports_linux.py 19 def popen(argv): function
26 def popen(argv): function
84 desc = popen(['lsusb', '-v', '-s', '%s:%s' % (bus, dev)])
  /bionic/libc/upstream-netbsd/lib/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/skia/tools/
misc_utils.py 117 def popen(self, *args, **kwargs): member in class:VerboseSubprocess
118 """Wrapper for subprocess.Popen().
121 *args: to be passed to subprocess.Popen()
122 **kwargs: to be passed to subprocess.Popen()
124 The output of subprocess.Popen()
126 OSError or subprocess.CalledProcessError: raised by Popen.
130 return subprocess.Popen(*args, **kwargs)
213 *args: to be passed to subprocess.Popen()
214 **kwargs: to be passed to subprocess.Popen()
221 proc = subprocess.Popen(*args, stdout=subprocess.PIPE, **kwargs
    [all...]
  /external/skia/tools/
misc_utils.py 117 def popen(self, *args, **kwargs): member in class:VerboseSubprocess
118 """Wrapper for subprocess.Popen().
121 *args: to be passed to subprocess.Popen()
122 **kwargs: to be passed to subprocess.Popen()
124 The output of subprocess.Popen()
126 OSError or subprocess.CalledProcessError: raised by Popen.
130 return subprocess.Popen(*args, **kwargs)
213 *args: to be passed to subprocess.Popen()
214 **kwargs: to be passed to subprocess.Popen()
221 proc = subprocess.Popen(*args, stdout=subprocess.PIPE, **kwargs
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_mock.py 140 def popen(self, args, cwd=None, env=None, **kwargs): member in class:MockExecutive
149 _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)
349 # Popen in Python 2.5 and before does not automatically encode unicode objects.
381 """Popen wrapper for convenience and to work around python bugs."""
388 process = self.popen(args,
451 # Popen will throw an exception if args are non-strings (like int())
453 # The Windows implementation of Popen cannot handle unicode strings. :(
456 # The only required arugment to popen is named "args", the rest are optional keyword arguments.
457 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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
stdio.h 499 #if !defined(NO_OLDNAMES) && !defined(popen)
500 #define popen _popen macro
    [all...]
  /external/sqlite/dist/orig/
shell.c 72 #undef popen macro
73 #define popen _popen macro
81 /* popen and pclose are not C89 functions and so are sometimes omitted from
83 extern FILE *popen(const char*,const char*);
    [all...]
  /external/sqlite/dist/
shell.c 77 #undef popen macro
78 #define popen _popen macro
86 /* popen and pclose are not C89 functions and so are sometimes omitted from
88 extern FILE *popen(const char*,const char*);
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 458 /// FILE *popen(const char *command, const char *mode);
459 popen, enumerator in enum:llvm::LibFunc::Func

Completed in 1389 milliseconds