Home | History | Annotate | Download | only in libiberty

Lines Matching defs:actions

578   posix_spawn_file_actions_t actions;
603 ret = posix_spawn_file_actions_init (&actions);
614 ret = posix_spawn_file_actions_adddup2 (&actions, in, STDIN_FILE_NO);
622 ret = posix_spawn_file_actions_addclose (&actions, in);
633 ret = posix_spawn_file_actions_adddup2 (&actions, out, STDOUT_FILE_NO);
641 ret = posix_spawn_file_actions_addclose (&actions, out);
652 actions, errdes, STDERR_FILE_NO);
660 ret = posix_spawn_file_actions_addclose (&actions, errdes);
671 ret = posix_spawn_file_actions_addclose (&actions, toclose);
682 ret = posix_spawn_file_actions_adddup2 (&actions, STDOUT_FILE_NO, STDERR_FILE_NO);
693 ret = posix_spawnp (&pid, executable, &actions, &attr, argv, env ? env : environ);
704 ret = posix_spawn (&pid, executable, &actions, &attr, argv, env ? env : environ);
716 posix_spawn_file_actions_destroy (&actions);