Lines Matching defs:pipe
19 FILE *pipe;
35 pipe = fopen(LOGFILE, "r");
36 if (pipe == NULL)
38 while (fgets(buf, MAXLINE, pipe) != NULL) {
42 while (fgets(buf, MAXLINE, pipe) != NULL)
44 fclose(pipe);
142 FILE *pipe;
148 pipe = popen(cmd, "r");
149 while (fgets(s, MAXLINE, pipe) != NULL) {
161 pclose(pipe);
174 FILE *pipe;
176 pipe = popen("dumplfs -S -s 2 -s 1 -s 0 " IMGNAME, "r");
177 while (fgets(s, MAXLINE, pipe) != NULL)
179 pclose(pipe);