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

1 2

  /external/dhcpcd-6.8.2/compat/
posix_spawn.h 45 int posix_spawn(pid_t *, const char *,
posix_spawn.c 28 /* This implementation of posix_spawn is only suitable for the needs of dhcpcd
41 #include "posix_spawn.h"
84 posix_spawn(pid_t *pid, const char *path, function
  /external/valgrind/memcheck/tests/solaris/
spawn.c 1 /* Functional tests for spawn() syscall invoked indirectly via posix_spawn()
31 /* posix_spawn(), no file actions, no attrs */
34 ret = posix_spawn(&child, EXE_NAME, NULL, NULL, argv_exe, envp);
36 perror("posix_spawn");
39 /* posix_spawn(), file actions, no attrs */
47 ret = posix_spawn(&child, EXE_NAME, &fa, NULL, argv_exe, envp);
49 perror("posix_spawn");
55 /* posix_spawn(), no file actions, attrs */
63 ret = posix_spawn(&child, EXE_NAME, NULL, &spa, argv_exe, envp);
65 perror("posix_spawn");
    [all...]
  /external/python/cpython2/Mac/Tools/
pythonw.c 7 * This program uses posix_spawn rather than plain execv because we need
16 #pragma weak_import posix_spawn
138 * Set flag that causes posix_spawn to behave like execv
165 if (posix_spawn != NULL) {
170 posix_spawn(NULL, exec_path, NULL,
172 err(1, "posix_spawn: %s", exec_path);
  /external/python/cpython3/Mac/Tools/
pythonw.c 7 * This program uses posix_spawn rather than plain execv because we need
17 #pragma weak_import posix_spawn
141 * Set flag that causes posix_spawn to behave like execv
214 if (posix_spawn != NULL) {
218 posix_spawn(NULL, exec_path, NULL,
220 err(1, "posix_spawn: %s", exec_path);
  /external/valgrind/none/tests/solaris/
posix_spawn.c 1 /* Test that an error from posix_spawn() is correctly propagated to the
32 /* The following call to posix_spawn() should fail because the requested
34 err = posix_spawn(NULL, "/bin/true", &file_actions, NULL, argv_exe,
38 perror("posix_spawn");
  /bionic/tests/headers/posix/
spawn_h.c 51 FUNCTION(posix_spawn, int (*f)(pid_t*, const char*, const posix_spawn_file_actions_t*, const posix_spawnattr_t*, char* const[], char* const[]));
  /bionic/libc/bionic/
spawn.cpp 134 static int posix_spawn(pid_t* pid_ptr, function
141 // See http://man7.org/linux/man-pages/man3/posix_spawn.3.html
142 // and http://pubs.opengroup.org/onlinepubs/9699919799/functions/posix_spawn.html
166 int posix_spawn(pid_t* pid, const char* path, const posix_spawn_file_actions_t* actions, function
168 return posix_spawn(pid, path, actions, attr, argv, env, execve);
173 return posix_spawn(pid, file, actions, attr, argv, env, execvpe);
  /bionic/libc/include/
spawn.h 53 int posix_spawn(pid_t* __pid, const char* __path, const posix_spawn_file_actions_t* __actions, const posix_spawnattr_t* __attr, char* const __argv[], char* const __env[]) __INTRODUCED_IN(28);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
spawn.h 72 extern int posix_spawn (pid_t *__restrict __pid,
80 /* Similar to `posix_spawn' but search for FILE in the PATH.
  /bionic/tests/
spawn_test.cpp 189 TEST(spawn, posix_spawn) {
193 ASSERT_EQ(0, posix_spawn(&pid, eth.GetArg0(), nullptr, nullptr, eth.GetArgs(), nullptr));
201 ASSERT_EQ(0, posix_spawn(&pid, eth.GetArg0(), nullptr, nullptr, eth.GetArgs(), nullptr));
431 // Ensure that posix_spawn doesn't restore the caller's signal mask in the
473 ASSERT_EQ(0, posix_spawn(&spawned_pid, "true", nullptr, attrs[i % 3], eth.GetArgs(), nullptr));
  /external/valgrind/coregrind/
vg_preloaded.c 247 by posix_spawn() (when it is implemented using vfork()). A child calls
264 posix_spawn() to the parent. If there is any error Valgrind returns it as
268 posix_spawn().
275 Newer Solaris versions introduce the spawn syscall and posix_spawn() is
297 in posix_spawn(). The forksys pre-wrapper saves a descriptor of the
320 posix_spawn() on the system for which the library is being compiled.
324 replaced here with an implementation that uses posix_spawn(). This
326 illumos is changed to use the posix_spawn() implementation.
362 err = posix_spawn(&pid, command, NULL, &attr, argv, envp ? envp : environ);
  /external/dhcpcd-6.8.2/
Android.mk 44 compat/posix_spawn.c
configure 72 --without-posix_spawn) POSIX_SPAWN=no;;
781 if [ -z "$POSIX_SPAWN" ]; then
782 printf "Testing for posix_spawn ... "
790 # error posix_spawn was fixed in OpenBSD-5.7
795 posix_spawn(NULL, NULL, NULL, NULL, NULL, NULL);
800 POSIX_SPAWN=yes
802 POSIX_SPAWN=no
804 echo "$POSIX_SPAWN"
807 if [ "$POSIX_SPAWN" = no ]; the
    [all...]
script.c 56 #include "compat/posix_spawn.h"
102 /* posix_spawn is a safe way of executing another image
116 i = posix_spawn(&pid, argv[0], NULL, &attr, argv, env);
  /external/clang/tools/scan-build-py/tests/functional/exec/
main.c 233 char *const file = "posix_spawn.c";
241 if (0 != posix_spawn(&child, "/usr/bin/cc", 0, 0, argv, get_environ())) {
242 perror("posix_spawn");
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pthread.h 609 #define posix_spawn(...) (pthread_testcancel(), posix_spawn(__VA_ARGS__)) macro
    [all...]
  /external/clang/tools/scan-build-py/libear/
ear.c 265 int posix_spawn(pid_t *restrict pid, const char *restrict path, function
375 DLSYM(func, fp, "posix_spawn");
  /external/valgrind/coregrind/m_syswrap/
priv_syswrap-darwin.h 309 DECL_TEMPLATE(darwin, posix_spawn); // 244
  /external/libcups/cups/
tls-darwin.c 329 if (posix_spawn(&pid, command, &actions, NULL, argv, envp))
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
zsysnum_netbsd_386.go 270 SYS_POSIX_SPAWN = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *file_actions, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }
zsysnum_netbsd_amd64.go 270 SYS_POSIX_SPAWN = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *file_actions, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }
zsysnum_netbsd_arm.go 270 SYS_POSIX_SPAWN = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *file_actions, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }
  /prebuilts/go/linux-x86/src/syscall/
zsysnum_netbsd_386.go 270 SYS_POSIX_SPAWN = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *file_actions, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }
zsysnum_netbsd_amd64.go 270 SYS_POSIX_SPAWN = 474 // { int|sys||posix_spawn(pid_t *pid, const char *path, const struct posix_spawn_file_actions *file_actions, const struct posix_spawnattr *attrp, char *const *argv, char *const *envp); }

Completed in 998 milliseconds

1 2