Searched defs:fact (Results 1 - 3 of 3) sorted by relevance
| /illumos-gate/usr/src/lib/libc/port/stdio/ |
| H A D | popen.c | 97 posix_spawn_file_actions_t fact; local 108 if ((error = posix_spawn_file_actions_init(&fact)) != 0) { 130 (void) posix_spawn_file_actions_destroy(&fact); 139 (void) posix_spawn_file_actions_destroy(&fact); 157 error = posix_spawn_file_actions_addclose(&fact, 175 (void) posix_spawn_file_actions_destroy(&fact); 180 error = posix_spawn_pipe_np(&pid, &fd, cmd, *mode != 'r', &fact, &attr); 182 (void) posix_spawn_file_actions_destroy(&fact);
|
| /illumos-gate/usr/src/lib/libc/port/regex/ |
| H A D | wordexp.c | 118 posix_spawn_file_actions_t fact; local 257 if ((error = posix_spawn_file_actions_init(&fact)) != 0) { 269 (void) posix_spawn_file_actions_destroy(&fact); 280 error = posix_spawn_file_actions_adddup2(&fact, pv[1], 1); 282 error = posix_spawn_file_actions_addclose(&fact, pv[0]); 284 error = posix_spawn_file_actions_addclose(&fact, pv[1]); 286 error = posix_spawn_file_actions_addopen(&fact, 2, 290 error = posix_spawn(&pid, path, &fact, &attr, 293 (void) posix_spawn_file_actions_destroy(&fact);
|
| /illumos-gate/usr/src/lib/libc/port/threads/ |
| H A D | spawn.c | 898 posix_spawn_file_actions_t *fact, posix_spawnattr_t *attr) 927 error = posix_spawn_file_actions_addclose(fact, myside); 930 error = posix_spawn_file_actions_adddup2(fact, 934 error = posix_spawn_file_actions_addclose(fact, 941 error = posix_spawn(pidp, shpath, fact, attr, 896 posix_spawn_pipe_np(pid_t *pidp, int *fdp, const char *cmd, boolean_t write, posix_spawn_file_actions_t *fact, posix_spawnattr_t *attr) argument
|
Completed in 96 milliseconds