Lines Matching defs:pipe
92 FILE *pipe;
114 pipe = fopen(LOGFILE, "r");
115 if (pipe == NULL)
117 while (fgets(buf, MAXLINE, pipe) != NULL) {
121 while (fgets(buf, MAXLINE, pipe) != NULL)
123 fclose(pipe);
341 FILE *pipe;
347 pipe = popen(cmd, "r");
348 while (fgets(s, MAXLINE, pipe) != NULL) {
360 pclose(pipe);
374 FILE *pipe;
376 pipe = popen("dumplfs -S -s 2 -s 1 -s 0 " IMGNAME, "r");
377 while (fgets(s, MAXLINE, pipe) != NULL)
379 pclose(pipe);