Searched defs:fact (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/lib/libc/port/stdio/
H A Dpopen.c106 posix_spawn_file_actions_t fact; local
129 if ((error = posix_spawn_file_actions_init(&fact)) != 0) {
150 (void) posix_spawn_file_actions_destroy(&fact);
170 error = posix_spawn_file_actions_addclose(&fact, fd);
173 error = posix_spawn_file_actions_addclose(&fact, myside);
176 error = posix_spawn_file_actions_adddup2(&fact,
179 error = posix_spawn_file_actions_addclose(&fact,
198 (void) posix_spawn_file_actions_destroy(&fact);
206 error = posix_spawn(&pid, shpath, &fact, &attr,
209 (void) posix_spawn_file_actions_destroy(&fact);
[all...]
/osnet-11/usr/src/lib/libc/port/regex/
H A Dwordexp.c99 posix_spawn_file_actions_t fact; local
263 if ((error = posix_spawn_file_actions_init(&fact)) != 0) {
275 (void) posix_spawn_file_actions_destroy(&fact);
286 error = posix_spawn_file_actions_adddup2(&fact, pv[1], 1);
288 error = posix_spawn_file_actions_addclose(&fact, pv[0]);
290 error = posix_spawn_file_actions_addclose(&fact, pv[1]);
292 error = posix_spawn_file_actions_addopen(&fact, 2,
296 error = posix_spawn(&pid, path, &fact, &attr,
299 (void) posix_spawn_file_actions_destroy(&fact);

Completed in 16 milliseconds