/external/python/cpython2/Mac/Tools/ |
D | pythonw.c | 16 #pragma weak_import posix_spawn 165 if (posix_spawn != NULL) { in main() 170 posix_spawn(NULL, exec_path, NULL, in main()
|
/external/python/cpython3/Mac/Tools/ |
D | pythonw.c | 17 #pragma weak_import posix_spawn 214 if (posix_spawn != NULL) { in main() 218 posix_spawn(NULL, exec_path, NULL, in main()
|
/external/clang/tools/scan-build-py/tests/functional/exec/ |
D | CMakeLists.txt | 26 check_function_exists(posix_spawn HAVE_POSIX_SPAWN)
|
D | main.c | 241 if (0 != posix_spawn(&child, "/usr/bin/cc", 0, 0, argv, get_environ())) { in call_posix_spawn()
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
D | Program.inc | 191 // If this OS has posix_spawn and there is no memory limit being implied, use 192 // posix_spawn. It is more efficient than fork/exec. 199 // c strings we pass to it stay alive until the call to posix_spawn, 243 int Err = posix_spawn(&PID, Program.str().c_str(), FileActions, 251 return !MakeErrMsg(ErrMsg, "posix_spawn failed", Err);
|
/external/llvm/lib/Support/Unix/ |
D | Program.inc | 191 // If this OS has posix_spawn and there is no memory limit being implied, use 192 // posix_spawn. It is more efficient than fork/exec. 199 // c strings we pass to it stay alive until the call to posix_spawn, 243 int Err = posix_spawn(&PID, Program.str().c_str(), FileActions, 251 return !MakeErrMsg(ErrMsg, "posix_spawn failed", Err);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Unix/ |
D | Program.inc | 200 // If this OS has posix_spawn and there is no memory limit being implied, use 201 // posix_spawn. It is more efficient than fork/exec. 208 // c strings we pass to it stay alive until the call to posix_spawn, 252 int Err = posix_spawn(&PID, Program.str().c_str(), FileActions, 260 return !MakeErrMsg(ErrMsg, "posix_spawn failed", Err);
|
/external/boringssl/src/ssl/test/ |
D | handshake_util.cc | 359 int ret = posix_spawn(&handshaker_pid, args[0], &actions, nullptr, in RunHandshaker()
|
/external/clang/tools/scan-build-py/libear/ |
D | ear.c | 265 int posix_spawn(pid_t *restrict pid, const char *restrict path, in posix_spawn() function
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0b4.rst | 238 :func:`os.posix_spawn()`.
|
D | 3.7.0b5.rst | 29 The new `os.posix_spawn` added in 3.7.0b1 was removed as we are still
|
D | 3.7.0b1.rst | 143 Expose posix_spawn as a low level API in the os module.
|
D | 3.8.0a1.rst | 1275 `scheduler` parameters of `posix_spawn`. Patch by Pablo Galindo. 1838 :func:`os.posix_spawn` and :func:`os.posix_spawnp` now have a *setsid* 2068 The :mod:`subprocess` module can now use the :func:`os.posix_spawn` function 5272 :func:`os.posix_spawn()`.
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Config/ |
D | config.h.cmake | 139 /* Define to 1 if you have the `posix_spawn' function. */
|
/external/llvm/cmake/ |
D | config-ix.cmake | 190 check_symbol_exists(posix_spawn spawn.h HAVE_POSIX_SPAWN)
|
/external/swiftshader/third_party/llvm-7.0/llvm/cmake/ |
D | config-ix.cmake | 208 check_symbol_exists(posix_spawn spawn.h HAVE_POSIX_SPAWN)
|
/external/llvm/include/llvm/Config/ |
D | config.h.cmake | 203 /* Define to 1 if you have the `posix_spawn' function. */
|
/external/libcups/cups/ |
D | tls-darwin.c | 331 if (posix_spawn(&pid, command, &actions, NULL, argv, envp)) in cupsMakeServerCredentials()
|
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/ |
D | mod.rs | 1321 pub fn posix_spawn( in posix_spawn() function
|
/external/python/cpython3/Lib/ |
D | subprocess.py | 1543 self.pid = os.posix_spawn(executable, args, env, **kwargs)
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 3579 .. function:: posix_spawn(path, argv, env, *, file_actions=None, \ 3583 Wraps the :c:func:`posix_spawn` C library API for use from Python. 3585 Most users should use :func:`subprocess.run` instead of :func:`posix_spawn`. 3622 for the :c:func:`posix_spawn` call itself. 3639 for `posix_spawn`. *setsid* requires :c:data:`POSIX_SPAWN_SETSID` 3669 Similar to :func:`posix_spawn` except that the system searches 3675 .. availability:: See :func:`posix_spawn` documentation.
|
D | subprocess.rst | 610 Popen can use :func:`os.posix_spawn` in some cases for better 612 Popen constructor using :func:`os.posix_spawn` no longer raise an
|
/external/iptables/libxtables/ |
D | xtables.c | 387 if (posix_spawn(&pid, argv[0], NULL, NULL, argv, NULL)) { in xtables_insmod()
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.8.rst | 1446 * The :mod:`subprocess` module can now use the :func:`os.posix_spawn` function 1851 * :class:`subprocess.Popen` can now use :func:`os.posix_spawn` in some cases 1853 Emulation, the :class:`Popen` constructor using :func:`os.posix_spawn` no longer raises an
|
/external/rust/crates/libc/src/unix/linux_like/linux/ |
D | mod.rs | 3070 pub fn posix_spawn( in posix_spawn() function
|