Searched defs:popen (Results 1 - 12 of 12) sorted by relevance

/external/chromium-trace/catapult/third_party/pyserial/serial/tools/
H A Dlist_ports_linux.py19 def popen(argv): function
26 def popen(argv): function
84 desc = popen(['lsusb', '-v', '-s', '%s:%s' % (bus, dev)])
/external/e2fsprogs/include/nonunix/
H A Dunistd.h15 #define popen _popen macro
/external/python/cpython2/Lib/test/
H A Dtest_popen2.py6 warnings.filterwarnings("ignore", "os\.popen. is deprecated.*",
22 # if we don't have os.popen, check that
26 from os import popen namespace
27 del popen
53 # The os.popen*() API delegates to the subprocess module (on Unix)
85 # same test as test_popen2(), but using the os.popen*() API
98 # same test as test_popen3(), but using the os.popen*() API
/external/autotest/client/cros/audio/
H A Dcmd_utils.py174 ps = popen(args, stdin=stdin, stdout=stdout, stderr=stderr,
199 def popen(args, stdin=None, stdout=TEE_TO_LOGS, stderr=TEE_TO_LOGS, env=None, function
/external/v8/src/inspector/build/
H A Dcompile-scripts.py49 def popen(arguments): function
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/ImageMagick/MagickCore/
H A Dnt-base.h208 #if !defined(popen)
209 # define popen _popen macro
/external/python/cpython3/Lib/
H A Dplatform.py58 # 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))
H A Dos.py35 "popen", "extsep"]
965 # Supply os.popen()
966 def popen(cmd, mode="r", buffering=-1): function
972 raise ValueError("popen() does not support unbuffered streams")
987 # Helper for popen() -- a proxy for a file whose close waits for the process
/external/python/cpython2/Lib/
H A Dplatform.py61 # 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...]
/external/python/cpython2/Modules/
H A Dposixmodule.c276 #define popen _popen macro
4486 "popen(command [, mode='r' [, bufsize]]) -> pipe\n\n\
4523 popen(const char *command, const char *mode, int pipesize, int *err) function
4583 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
4586 fp = popen(name, mode, (bufsize > 0) ? bufsize : 4096, &err);
4599 /* standard posix version of popen() support */
4608 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
4611 fp = popen(name, mode);
4622 * EMX supports pipe() and spawn*() so we can synthesize popen[234]()
4637 * Internal dictionary mapping popen* fil
[all...]
/external/sqlite/dist/orig/
H A Dshell.c153 # 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*);
12798 sCtx.in = popen(sCtx.zFile+1, "r");
13284 p->out = popen(zFile + 1, "w");
/external/sqlite/dist/
H A Dshell.c159 # 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*);
12821 sCtx.in = popen(sCtx.zFile+1, "r");
13307 p->out = popen(zFile + 1, "w");

Completed in 440 milliseconds