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);
125 FILE *pipe;
131 pipe = popen(cmd, "r");
132 while (fgets(s, MAXLINE, pipe) != NULL) {
144 pclose(pipe);
157 FILE *pipe;
159 pipe = popen("dumplfs -S -s 2 -s 1 -s 0 " IMGNAME, "r");
160 while (fgets(s, MAXLINE, pipe) != NULL)
162 pclose(pipe);