Lines Matching refs:fa
76 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()
83 xposix_spawn_file_actions_adddup2 (&fa, result.stderr_pipe[1], STDERR_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()
103 res.pid = xposix_spawn (file, &fa, NULL, argv, environ); in support_subprogram_wait()