Lines Matching defs:stream
48 FILE *stream;
68 stream = popen(cmd, "r");
69 if (NULL == stream)
79 sz = fread(buf + bsz, 1, 1024, stream);
83 if ( ! ferror(stream) && feof(stream) &&
90 pclose(stream);
214 FILE *stream;
219 if ((stream = fopen(file, "r")) == NULL)
225 while ((linelen = getline(&line, &linesz, stream)) != -1) {
267 fclose(stream);