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

  /external/chromium-trace/catapult/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)])
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
StubFunctions.c 75 popen (const char *cmd, const char *type) function
  /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/autotest/client/cros/audio/
cmd_utils.py 174 ps = popen(args, stdin=stdin, stdout=stdout, stderr=stderr,
186 pass that to the preexec_fn argument of subprocess.Popen.
189 subprocess.Popen(..., preexec_fn=lambda: _run_as('chronos'))
199 def popen(args, stdin=None, stdout=TEE_TO_LOGS, stderr=TEE_TO_LOGS, env=None, function
201 """Returns a Popen object just as subprocess.Popen does but with the
202 executed command stored in Popen.command.
228 ps = subprocess.Popen(args, stdin=stdin, stdout=stdout, stderr=stderr,
  /external/e2fsprogs/include/nonunix/
unistd.h 15 #define popen _popen macro
  /external/v8/src/inspector/build/
compile-scripts.py 49 def popen(arguments): function
50 return subprocess.Popen(arguments, stdout=subprocess.PIPE,
91 java_version_out, _ = popen([java_path, '-version']).communicate()
102 check_server_proc = popen(exec_command + ['-version'])
130 injected_script_compile_proc = popen(command)
140 debugger_script_compile_proc = popen(command)
145 validate_injected_script_proc = popen([sys.executable,
  /external/python/cpython3/Lib/
platform.py 58 # 0.5.3 - added experimental MacOS support; added better popen()
65 # to cover up situations where platforms don't have os.popen
75 # 0.3.3 - fixed popen() and "file" command invokation bugs
384 def popen(cmd, mode='r', bufsize=-1): function
386 """ Portable popen() interface.
389 warnings.warn('use os.popen instead', DeprecationWarning, stacklevel=2)
390 return os.popen(cmd, mode, bufsize)
442 pipe = os.popen(cmd)
755 f = os.popen('uname %s 2> %s' % (option, DEV_NULL))
779 proc = subprocess.Popen(['file', target]
    [all...]
os.py 35 "popen", "extsep"]
966 def popen(cmd, mode="r", buffering=-1): function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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/ImageMagick/MagickCore/
nt-base.h 208 #if !defined(popen)
209 # define popen _popen macro
  /external/python/cpython2/Lib/
platform.py 61 # 0.5.3 - added experimental MacOS support; added better popen()
68 # to cover up situations where platforms don't have os.popen
78 # 0.3.3 - fixed popen() and "file" command invokation bugs
369 """ Fairly portable (alternative) popen implementation.
371 This is mostly needed in case os.popen() is not available, or
386 raise ValueError,'popen()-emulation only supports read mode'
421 def popen(cmd, mode='r', bufsize=None): function
423 """ Portable popen() interface.
425 # Find a working popen implementation preferring win32pipe.popen
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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 510 #if !defined(NO_OLDNAMES) && !defined(popen)
511 #define popen _popen macro
    [all...]
pthread.h 604 #define popen(...) (pthread_testcancel(), popen(__VA_ARGS__)) macro
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/
resrc.c 72 #define popen _popen macro
126 /* The temporary file used if we're not using popen, so we can delete it
339 cpp_pipe = popen (cmd, FOPEN_RT);
341 fatal (_("can't popen `%s': %s"), cmd, strerror (errno));
343 fprintf (stderr, _("Using popen to read preprocessor output\n"));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
edk2module.c 2677 popen(const char *command, const char *mode, int pipesize, int *err) function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c 275 #define popen _popen macro
4267 popen(const char *command, const char *mode, int pipesize, int *err) function
    [all...]
  /external/python/cpython2/Modules/
posixmodule.c 276 #define popen _popen macro
4523 popen(const char *command, const char *mode, int pipesize, int *err) function
    [all...]
  /external/sqlite/dist/orig/
shell.c 153 # undef popen macro
154 # define popen _popen macro
162 /* popen and pclose are not C89 functions and so are
164 extern FILE *popen(const char*,const char*);
    [all...]
  /external/sqlite/dist/
shell.c 159 # undef popen macro
160 # define popen _popen macro
168 /* popen and pclose are not C89 functions and so are
170 extern FILE *popen(const char*,const char*);
    [all...]

Completed in 432 milliseconds