HomeSort by relevance Sort by last modified time
    Searched refs:preexec_fn (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/python/cpython3/Modules/
_posixsubprocess.c 400 PyObject *preexec_fn,
473 if (preexec_fn != Py_None && preexec_fn_args_tuple) {
475 result = PyObject_Call(preexec_fn, preexec_fn_args_tuple, NULL);
482 err_msg = "Exception occurred in preexec_fn.";
489 /* close FDs after executing preexec_fn, which might open FDs */
548 PyObject *env_list, *preexec_fn; local
570 &restore_signals, &call_setsid, &preexec_fn))
586 /* We need to call gc.disable() when we'll be calling preexec_fn */
587 if (preexec_fn != Py_None) {
653 if (preexec_fn != Py_None)
    [all...]
  /development/python-packages/adb/
device.py 374 def shell_popen(self, cmd, kill_atexit=True, preexec_fn=None,
385 preexec_fn: Argument forwarded to subprocess.Popen.
399 if preexec_fn is None:
400 preexec_fn = os.setpgrp
401 elif preexec_fn is not os.setpgrp:
402 fn = preexec_fn
406 preexec_fn = _wrapper
409 preexec_fn=preexec_fn, **kwargs)
  /external/autotest/client/cros/audio/
cmd_utils.py 186 pass that to the preexec_fn argument of subprocess.Popen.
189 subprocess.Popen(..., preexec_fn=lambda: _run_as('chronos'))
222 preexec_fn = None
224 preexec_fn = lambda: _run_as(run_as)
229 env=env, preexec_fn=preexec_fn)
  /external/chromium-trace/catapult/devil/devil/utils/
cmd_helper.py 92 # preexec_fn isn't supported on windows.
95 preexec_fn = None
98 preexec_fn = lambda: signal.signal(signal.SIGPIPE, signal.SIG_DFL)
102 shell=shell, close_fds=close_fds, env=env, preexec_fn=preexec_fn)
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/testGenerator/
SubprocessLogger.py 155 preexec_fn=self.__subProcPreExec,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
webbrowser.py 198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid)
238 stderr=inout, preexec_fn=setsid)
369 preexec_fn=setsid)
382 preexec_fn=setsid)
  /external/clang/tools/scan-view/share/
startfile.py 59 preexec_fn=setsid, startupinfo=startupinfo)
  /external/python/cpython2/Lib/
webbrowser.py 198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid)
238 stderr=inout, preexec_fn=setsid)
381 preexec_fn=setsid)
394 preexec_fn=setsid)
  /prebuilts/clang/host/darwin-x86/clang-3289846/tools/scan-view/share/
startfile.py 59 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/darwin-x86/clang-3859424/tools/scan-view/share/
startfile.py 59 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/darwin-x86/clang-4053586/tools/scan-view/share/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/darwin-x86/clang-4393122/share/scan-view/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/darwin-x86/clang-4479392/share/scan-view/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/darwin-x86/clang-4579689/share/scan-view/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/darwin-x86/clang-4630689/share/scan-view/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/darwin-x86/clang-4639204/share/scan-view/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/darwin-x86/clang-4691093/share/scan-view/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/linux-x86/clang-3289846/tools/scan-view/share/
startfile.py 59 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/linux-x86/clang-3859424/tools/scan-view/share/
startfile.py 59 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/linux-x86/clang-4053586/tools/scan-view/share/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/linux-x86/clang-4393122/share/scan-view/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/linux-x86/clang-4479392/share/scan-view/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/linux-x86/clang-4579689/share/scan-view/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/linux-x86/clang-4630689/share/scan-view/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)
  /prebuilts/clang/host/linux-x86/clang-4639204/share/scan-view/
startfile.py 62 preexec_fn=setsid, startupinfo=startupinfo)

Completed in 502 milliseconds

1 2 3