Searched refs:child_stdout (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Dfilter_fork.h36 __archive_create_child(const char *cmd, int *child_stdin, int *child_stdout);
H A Darchive_write_add_filter_program.c67 int child_stdin, child_stdout; member in struct:archive_write_program_data
185 data->child_stdout = -1;
231 &data->child_stdout);
242 close(data->child_stdout);
243 data->child_stdout = -1;
276 fcntl(data->child_stdout, F_SETFL, 0);
282 if (data->child_stdout == -1) {
285 data->child_stdout);
290 ret = read(data->child_stdout,
296 close(data->child_stdout);
[all...]
H A Darchive_read_support_filter_program.c115 int child_stdin, child_stdout; member in struct:program_filter
246 if (state->child_stdout != -1) {
247 close(state->child_stdout);
248 state->child_stdout = -1;
277 * before close(child_stdout) above to read from the
313 HANDLE handle = (HANDLE)_get_osfhandle(state->child_stdout);
341 ret = read(state->child_stdout, buf, requested);
356 state->child_stdout);
365 fcntl(state->child_stdout, F_SETFL, 0);
381 state->child_stdout);
[all...]
H A Dfilter_fork_posix.c76 __archive_create_child(const char *cmd, int *child_stdin, int *child_stdout) argument
176 *child_stdout = stdout_pipe[0];
177 fcntl(*child_stdout, F_SETFL, O_NONBLOCK);

Completed in 68 milliseconds