Home
last modified time | relevance | path

Searched refs:posix_spawn (Results 1 – 25 of 48) sorted by relevance

12

/third_party/musl/libc-test/src/functionalext/supplement/process/
Dposix_spawn.c33 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()
Dtest_src_functionalext_supplement_process.gni28 "posix_spawn",
/third_party/python/Mac/Tools/
Dpythonw.c17 #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/
Dposix_spawnp.c12 return posix_spawn(res, file, fa, &spawnp_attr, argv, envp); in posix_spawnp()
Dsystem.c35 ret = posix_spawn(&pid, "/bin/sh", 0, &attr, in system()
Dposix_spawn.c163 int posix_spawn(pid_t *restrict res, const char *restrict path, in posix_spawn() function
/third_party/musl/porting/liteos_a/user/src/process/
Dposix_spawnp.c14 return posix_spawn(res, file, fa, &spawnp_attr, argv, envp); in posix_spawnp()
Dsystem.c38 ret = posix_spawn(&pid, "/bin/sh", 0, &attr, in system()
Dposix_spawn.c164 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/
DProgram.inc191 // 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/
Dpopen.c54 if (!(e = posix_spawn(&pid, "/bin/sh", &fa, 0, in popen()
/third_party/musl/porting/liteos_a/user/src/stdio/
Dpopen.c56 if (!(e = posix_spawn(&pid, "/bin/sh", &fa, 0, in popen()
/third_party/musl/ndk_musl_include/
Dspawn.h42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
/third_party/musl/libc-test/src/api/
Dspawn.c21 …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/
DProgram.inc199 // 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/
Dspawn.h42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
/third_party/musl/porting/uniproton/kernel/include/
Dspawn.h42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
/third_party/musl/include/
Dspawn.h42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
/third_party/musl/porting/liteos_m/kernel/include/
Dspawn.h42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
/third_party/json/test/thirdparty/Fuzzer/
DFuzzerUtilDarwin.cpp103 ErrorCode = posix_spawn(&Pid, "/bin/sh", NULL, &SpawnAttributes, in ExecuteCommand()
/third_party/grpc/test/cpp/common/
Dtime_jump_test.cc49 status = posix_spawn(&pid, const_cast<const char*>("/bin/sh"), nullptr, in run_cmd()
/third_party/ninja/src/
Dsubprocess-posix.cc119 err = posix_spawn(&pid_, "/bin/sh", &action, &attr, in Start()
/third_party/python/Misc/NEWS.d/
D3.7.0b4.rst238 :func:`os.posix_spawn()`.
/third_party/musl/
DWHATSNEW774 - 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/
Dprocess.c726 err = posix_spawn(pid, b, actions, attrs, options->args, env); in uv__spawn_resolve_and_spawn()

12