Home | History | Annotate | Download | only in MacOSX

Lines Matching defs:file_actions

1863     posix_spawn_file_actions_t file_actions;
1864 err.SetError( ::posix_spawn_file_actions_init (&file_actions), DNBError::POSIX);
1867 err.LogThreaded("::posix_spawn_file_actions_init ( &file_actions )");
1889 err.SetError( ::posix_spawn_file_actions_addopen (&file_actions,
1896 err.LogThreaded ("::posix_spawn_file_actions_addopen (&file_actions, filedes=STDIN_FILENO, path='%s')", stdin_path);
1898 err.SetError( ::posix_spawn_file_actions_addopen (&file_actions,
1905 err.LogThreaded ("::posix_spawn_file_actions_addopen (&file_actions, filedes=STDOUT_FILENO, path='%s')", stdout_path);
1907 err.SetError( ::posix_spawn_file_actions_addopen (&file_actions,
1914 err.LogThreaded ("::posix_spawn_file_actions_addopen (&file_actions, filedes=STDERR_FILENO, path='%s')", stderr_path);
1921 err.SetError( ::posix_spawnp (&pid, path, &file_actions, &attr, (char * const*)argv, (char * const*)envp), DNBError::POSIX);
1923 err.LogThreaded("::posix_spawnp ( pid => %i, path = '%s', file_actions = %p, attr = %p, argv = %p, envp = %p )", pid, path, &file_actions, &attr, argv, envp);
1934 err.LogThreaded("::posix_spawnp ( pid => %i, path = '%s', file_actions = %p, attr = %p, argv = %p, envp = %p )", pid, path, NULL, &attr, argv, envp);
1963 err2.SetError( ::posix_spawn_file_actions_destroy (&file_actions), DNBError::POSIX);
1965 err2.LogThreaded("::posix_spawn_file_actions_destroy ( &file_actions )");