HomeSort by: relevance | last modified time | path
    Searched refs:child_stdin (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/libarchive/dist/libarchive/
filter_fork.h 34 __archive_create_child(const char *cmd, int *child_stdin, int *child_stdout,
archive_write_add_filter_program.c 66 int child_stdin, child_stdout; member in struct:archive_write_program_data
184 data->child_stdin = -1;
223 ret = __archive_create_child(cmd, &data->child_stdin,
239 if (data->child_stdin == -1)
247 ret = write(data->child_stdin, buf, buf_len);
253 close(data->child_stdin);
254 data->child_stdin = -1;
262 fcntl(data->child_stdin, F_SETFL, 0);
263 __archive_check_child(data->child_stdin,
277 fcntl(data->child_stdin, F_SETFL, 0)
    [all...]
archive_read_support_filter_program.c 114 int child_stdin, child_stdout; member in struct:program_filter
232 if (state->child_stdin != -1) {
233 close(state->child_stdin);
234 state->child_stdin = -1;
340 if (state->child_stdin == -1) {
342 __archive_check_child(state->child_stdin,
350 close(state->child_stdin);
351 state->child_stdin = -1;
359 ret = write(state->child_stdin, p, avail);
367 __archive_check_child(state->child_stdin,
    [all...]
filter_fork_windows.c 73 __archive_create_child(const char *cmd, int *child_stdin, int *child_stdout,
195 *child_stdin = _open_osfhandle((intptr_t)childStdin[1], _O_WRONLY);
230 __archive_create_child(const char *cmd, int *child_stdin, int *child_stdout, HANDLE *out_child)
232 (void)cmd; (void)child_stdin; (void) child_stdout; (void) out_child;
filter_fork_posix.c 74 __archive_create_child(const char *cmd, int *child_stdin, int *child_stdout,
202 *child_stdin = stdin_pipe[1];
203 fcntl(*child_stdin, F_SETFL, O_NONBLOCK);

Completed in 14 milliseconds