/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
webbrowser.py | 178 p = subprocess.Popen(cmdline, close_fds=True) 198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid) 236 p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, 367 close_fds=True, stdin=devnull, 379 close_fds=True, stdin=devnull, 392 close_fds=True, stdin=devnull,
|
subprocess.py | 35 preexec_fn=None, close_fds=False, shell=False, 83 If close_fds is true, all file descriptors except 0, 1 and 2 will be 314 stdin=PIPE, stdout=PIPE, close_fds=True) 323 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True) 333 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True) 367 stdin=PIPE, stdout=PIPE, close_fds=True) 378 stdin=PIPE, stdout=PIPE, close_fds=True) 388 close_fds=True with subprocess.Popen. 652 preexec_fn=None, close_fds=False, shell=False, 666 if close_fds and (stdin is not None or stdout is not None o [all...] |
os.py | 671 close_fds=True) 691 stderr=PIPE, close_fds=True) 711 stderr=subprocess.STDOUT, close_fds=True)
|
imaplib.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
webbrowser.py | 178 p = subprocess.Popen(cmdline, close_fds=True) 198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid) 236 p = subprocess.Popen(cmdline, close_fds=True, stdin=inout, 367 close_fds=True, stdin=devnull, 379 close_fds=True, stdin=devnull, 392 close_fds=True, stdin=devnull,
|
subprocess.py | 35 preexec_fn=None, close_fds=False, shell=False, 83 If close_fds is true, all file descriptors except 0, 1 and 2 will be 314 stdin=PIPE, stdout=PIPE, close_fds=True) 323 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True) 333 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True) 367 stdin=PIPE, stdout=PIPE, close_fds=True) 378 stdin=PIPE, stdout=PIPE, close_fds=True) 388 close_fds=True with subprocess.Popen. 652 preexec_fn=None, close_fds=False, shell=False, 666 if close_fds and (stdin is not None or stdout is not None o [all...] |
os.py | 671 close_fds=True) 691 stderr=PIPE, close_fds=True) 711 stderr=subprocess.STDOUT, close_fds=True)
|
imaplib.py | [all...] |
/external/chromium_org/build/android/pylib/ |
cmd_helper.py | 19 shell=shell, close_fds=True, env=env,
|
/external/chromium_org/remoting/tools/ |
native_messaging_host_test.py | 110 stdout=subprocess.PIPE, close_fds=True)
|
/external/chromium_org/third_party/android_testrunner/ |
run_command.py | 102 shell=True, close_fds=True,
|
/external/clang/tools/scan-view/ |
startfile.py | 58 stderr=inout, close_fds=closefds,
|
/external/llvm/utils/lit/lit/ |
TestRunner.py | 22 # Don't use close_fds on Windows. 31 close_fds = not kIsWindows 37 env=env, close_fds=close_fds) 175 close_fds = kUseCloseFDs))
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
server_process.py | 132 # close_fds is a workaround for http://bugs.python.org/issue2320 133 close_fds = not self._host.platform.is_win() 142 close_fds=close_fds,
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
test_endtoend.py | 189 return subprocess.Popen([sys.executable] + commandline, close_fds=True, 216 ('taskkill.exe', '/f', '/pid', str(pid)), close_fds=True)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
executive.py | 91 # We need to pass close_fds=True to work around Python bug #2320 94 # Note that close_fds isn't supported on Windows, but this bug only 102 close_fds=self._should_close_fds(), 414 close_fds=self._should_close_fds())
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_subprocess.py | [all...] |
regrtest.py | 514 close_fds=(os.name != 'nt')) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_subprocess.py | [all...] |
regrtest.py | 514 close_fds=(os.name != 'nt')) [all...] |
/external/chromium_org/tools/valgrind/ |
memcheck_analyze.py | 244 close_fds=True)
|
/ndk/ |
ndk-gdb.py | 342 bufsize=1, close_fds='posix' in sys.builtin_module_names)
|
/external/chromium_org/third_party/re2/lib/codereview/ |
codereview.py | 907 cmd = subprocess.Popen(["gofmt", "-l"] + files, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=sys.platform != "win32") [all...] |
/external/regex-re2/lib/codereview/ |
codereview.py | 907 cmd = subprocess.Popen(["gofmt", "-l"] + files, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=sys.platform != "win32") [all...] |
/external/chromium_org/chrome/test/functional/ |
perf.py | 252 stdout=subprocess.PIPE, stderr=subprocess.STDOUT, close_fds=True) [all...] |