Lines Matching refs:envpipe
1899 int envpipe[2]; local
1901 envpipe[0] = envpipe[1] = -1;
1902 if (!dont_wait && device_pipe_hook != NULL && pipe(envpipe) == -1) {
1919 if (envpipe[0] >= 0) {
1920 if (envpipe[1] <= 2)
1921 envpipe[1] = dup(envpipe[1]);
1922 (void) close(envpipe[0]);
1957 if (envpipe[0] >= 0 && dup2(envpipe[1], 3) < 0)
1992 if (envpipe[0] >= 0) {
1993 (void) close(envpipe[1]);
1994 (*device_pipe_hook)(envpipe[0]);
2001 if (envpipe[0] >= 0)
2002 (void) close(envpipe[0]);