Home
last modified time | relevance | path

Searched refs:file_actions (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/head/
H A Dspawn.h75 const posix_spawn_file_actions_t *file_actions,
83 const posix_spawn_file_actions_t *file_actions,
89 posix_spawn_file_actions_t *file_actions);
92 posix_spawn_file_actions_t *file_actions);
95 posix_spawn_file_actions_t *_RESTRICT_KYWD file_actions,
102 posix_spawn_file_actions_t *file_actions,
106 posix_spawn_file_actions_t *file_actions,
170 posix_spawn_file_actions_t *file_actions,
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dspawn.c287 file_attr_t *fap = file_actions? file_actions->__file_attrp : NULL; in posix_spawn()
381 file_attr_t *fap = file_actions? file_actions->__file_attrp : NULL; in posix_spawnp()
515 posix_spawn_file_actions_t *file_actions) in posix_spawn_file_actions_init() argument
517 file_actions->__file_attrp = NULL; in posix_spawn_file_actions_init()
523 posix_spawn_file_actions_t *file_actions) in posix_spawn_file_actions_destroy() argument
537 file_actions->__file_attrp = NULL; in posix_spawn_file_actions_destroy()
566 posix_spawn_file_actions_t *file_actions, in posix_spawn_file_actions_addopen() argument
590 add_file_attr(file_actions, fap); in posix_spawn_file_actions_addopen()
609 add_file_attr(file_actions, fap); in posix_spawn_file_actions_addclose()
630 add_file_attr(file_actions, fap); in posix_spawn_file_actions_adddup2()
[all …]
/illumos-gate/usr/src/cmd/boot/installboot/i386/
H A Dinstallboot.c273 posix_spawn_file_actions_t file_actions; in mkfs_pcfs() local
279 if (posix_spawn_file_actions_init(&file_actions)) { in mkfs_pcfs()
287 (void) posix_spawn_file_actions_destroy(&file_actions); in mkfs_pcfs()
290 if (posix_spawn_file_actions_addopen(&file_actions, 0, "/dev/null", in mkfs_pcfs()
293 (void) posix_spawn_file_actions_destroy(&file_actions); in mkfs_pcfs()
305 if (posix_spawn(&pid, cmd[0], &file_actions, &attr, cmd, NULL)) in mkfs_pcfs()
308 (void) posix_spawn_file_actions_destroy(&file_actions); in mkfs_pcfs()