Home
last modified time | relevance | path

Searched refs:pipedes (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl2/gmake/dist/
H A Dfunction.c1432 windows32_openpipe (int *pipedes, int *pid_p, char **command_argv, char **envp) in windows32_openpipe() argument
1487 pipedes[0] = _open_osfhandle((long) hChildOutRd, O_RDONLY); in windows32_openpipe()
1490 pipedes[1] = _open_osfhandle((long) hChildOutWr, O_APPEND); in windows32_openpipe()
1504 pipedes[0] = pipedes[1] = -1; in windows32_openpipe()
1513 msdos_openpipe (int* pipedes, int *pidp, char *text) in msdos_openpipe() argument
1547 pipedes[0] = -1; in msdos_openpipe()
1557 pipedes[0] = fileno (fpipe); in msdos_openpipe()
1588 int pipedes[2]; in func_shell() local
1624 windows32_openpipe (pipedes, &pid, command_argv, envp); in func_shell()
1626 if (pipedes[0] < 0) { in func_shell()
[all …]
/netbsd-src/external/gpl2/groff/dist/src/preproc/html/
H A Dpre-html.cpp1283 int pipedes[2]; in run_output_filter() local
1287 if (pipe(pipedes) < 0) in run_output_filter()
1302 set_redirection(STDIN_FILENO, pipedes[0]); in run_output_filter()
1307 if (close(pipedes[1]) < 0) in run_output_filter()
1336 if (close(pipedes[0]) < 0) in run_output_filter()
1342 pipedes[1] = save_and_redirect(STDOUT_FILENO, pipedes[1]); in run_output_filter()
1348 set_redirection(STDOUT_FILENO, pipedes[1]); in run_output_filter()
1367 pipedes[0] = save_and_redirect(STDIN_FILENO, pipedes[0]); in run_output_filter()
1398 set_redirection(STDIN_FILENO, pipedes[0]); in run_output_filter()
1409 set_redirection(STDOUT_FILENO, pipedes[1]); in run_output_filter()