Lines Matching defs:pipe
308 int pipe;
2811 close ( scanner->pipe );
2873 if (scanner->pipe >= 0)
2875 close (scanner->pipe);
2876 scanner->pipe = -1;
3098 scanner->pipe = -1;
3686 if (pipe (fds) < 0) /* create a pipe, fds[0]=read-fd, fds[1]=write-fd */
3688 DBG (DBG_error, "ERROR: could not create pipe\n");
3697 scanner->pipe = fds[0];
3730 nread = read (scanner->pipe, buf, max_len);
3758 return close_pipe (scanner); /* close pipe */
3797 if (fcntl (scanner->pipe, F_SETFL, non_blocking ? O_NONBLOCK : 0) < 0)
3820 *fd = scanner->pipe;