/third_party/musl/libc-test/src/functionalext/supplement/process/ |
D | posix_spawn.c | 33 int ret = posix_spawn(&pid, "/bin/sh", NULL, NULL, argv, NULL); in posix_spawn_0100() 66 ret = posix_spawn(&pid, "/bin/sh", NULL, &attr, argv, NULL); in posix_spawn_0200() 93 ret = posix_spawn(&pid, "/bin/sh", NULL, &attr, argv, NULL); in posix_spawn_0300() 114 int ret = posix_spawn(&pid, "unexitfile", NULL, NULL, NULL, NULL); in posix_spawn_0400()
|
D | test_src_functionalext_supplement_process.gni | 28 "posix_spawn",
|
/third_party/python/Mac/Tools/ |
D | pythonw.c | 17 #pragma weak_import posix_spawn 227 if (&posix_spawn != NULL) { in main() 231 posix_spawn(NULL, exec_path, NULL, in main()
|
/third_party/musl/src/process/ |
D | posix_spawnp.c | 12 return posix_spawn(res, file, fa, &spawnp_attr, argv, envp); in posix_spawnp()
|
D | system.c | 35 ret = posix_spawn(&pid, "/bin/sh", 0, &attr, in system()
|
D | posix_spawn.c | 163 int posix_spawn(pid_t *restrict res, const char *restrict path, in posix_spawn() function
|
/third_party/musl/porting/liteos_a/user/src/process/ |
D | posix_spawnp.c | 14 return posix_spawn(res, file, fa, &spawnp_attr, argv, envp); in posix_spawnp()
|
D | system.c | 38 ret = posix_spawn(&pid, "/bin/sh", 0, &attr, in system()
|
D | posix_spawn.c | 164 int posix_spawn(pid_t *restrict res, const char *restrict path, in posix_spawn() function
|
/third_party/skia/third_party/externals/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);
|
/third_party/musl/src/stdio/ |
D | popen.c | 54 if (!(e = posix_spawn(&pid, "/bin/sh", &fa, 0, in popen()
|
/third_party/musl/porting/liteos_a/user/src/stdio/ |
D | popen.c | 56 if (!(e = posix_spawn(&pid, "/bin/sh", &fa, 0, in popen()
|
/third_party/musl/ndk_musl_include/ |
D | spawn.h | 42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
|
/third_party/musl/libc-test/src/api/ |
D | spawn.c | 21 …ions_t*,const posix_spawnattr_t*restrict,char*const[restrict],char*const[restrict]) = posix_spawn;} in f()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/ |
D | Program.inc | 199 // If this OS has posix_spawn and there is no memory limit being implied, use 200 // posix_spawn. It is more efficient than fork/exec. 207 // c strings we pass to it stay alive until the call to posix_spawn, 254 Err = posix_spawn(&PID, Program.str().c_str(), FileActions, 263 return !MakeErrMsg(ErrMsg, "posix_spawn failed", Err);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | spawn.h | 42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | spawn.h | 42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
|
/third_party/musl/include/ |
D | spawn.h | 42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | spawn.h | 42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
|
/third_party/json/test/thirdparty/Fuzzer/ |
D | FuzzerUtilDarwin.cpp | 103 ErrorCode = posix_spawn(&Pid, "/bin/sh", NULL, &SpawnAttributes, in ExecuteCommand()
|
/third_party/grpc/test/cpp/common/ |
D | time_jump_test.cc | 49 status = posix_spawn(&pid, const_cast<const char*>("/bin/sh"), nullptr, in run_cmd()
|
/third_party/ninja/src/ |
D | subprocess-posix.cc | 119 err = posix_spawn(&pid_, "/bin/sh", &action, &attr, in Start()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.7.0b4.rst | 238 :func:`os.posix_spawn()`.
|
/third_party/musl/ |
D | WHATSNEW | 774 - posix_spawn/system/popen no longer momentarily double commit charge 782 - vfork race in posix_spawn 881 - robust posix_spawn based on CLONE_VM instead of vfork 882 - new system() and popen() based on posix_spawn 1020 - eliminated major spurious syscalls from posix_spawn 1036 - posix_spawn not correctly reporting errno from exec failure 1169 - posix_spawn did not accept null pid pointer (crashed) 1786 - new posix_spawn flag POSIX_SPAWN_SETSID 2126 - posix_spawn file actions for [f]chdir (extension, pending future standard)
|
/third_party/libuv/src/unix/ |
D | process.c | 726 err = posix_spawn(pid, b, actions, attrs, options->args, env); in uv__spawn_resolve_and_spawn()
|