Home
last modified time | relevance | path

Searched refs:fa (Results 1 – 4 of 4) sorted by relevance

/support/
A Dxposix_spawn_file_actions_addclose.c23 xposix_spawn_file_actions_addclose (posix_spawn_file_actions_t *fa, int fd) in xposix_spawn_file_actions_addclose() argument
25 int status = posix_spawn_file_actions_addclose (fa, fd); in xposix_spawn_file_actions_addclose()
A Dxposix_spawn_file_actions_adddup2.c23 xposix_spawn_file_actions_adddup2 (posix_spawn_file_actions_t *fa, int fd, in xposix_spawn_file_actions_adddup2() argument
26 int status = posix_spawn_file_actions_adddup2 (fa, fd, newfd); in xposix_spawn_file_actions_adddup2()
A Dsupport_subprocess.c76 posix_spawn_file_actions_t fa; in support_subprogram() local
78 posix_spawn_file_actions_init (&fa); in support_subprogram()
80 xposix_spawn_file_actions_addclose (&fa, result.stdout_pipe[0]); in support_subprogram()
81 xposix_spawn_file_actions_addclose (&fa, result.stderr_pipe[0]); in support_subprogram()
82 xposix_spawn_file_actions_adddup2 (&fa, result.stdout_pipe[1], STDOUT_FILENO); in support_subprogram()
84 xposix_spawn_file_actions_addclose (&fa, result.stdout_pipe[1]); in support_subprogram()
85 xposix_spawn_file_actions_addclose (&fa, result.stderr_pipe[1]); in support_subprogram()
87 result.pid = xposix_spawn (file, &fa, NULL, argv, environ); in support_subprogram()
98 posix_spawn_file_actions_t fa; in support_subprogram_wait() local
100 posix_spawn_file_actions_init (&fa); in support_subprogram_wait()
[all …]
A Dxposix_spawn.c23 xposix_spawn (const char *file, const posix_spawn_file_actions_t *fa, in xposix_spawn() argument
28 int status = posix_spawn (&pid, file, fa, attr, args, envp); in xposix_spawn()

Completed in 7 milliseconds