Lines Matching refs:file_stream
26 tmp_info->file_stream = NULL;
48 info->file_stream = fopen(info->filename, "r");
49 if (!info->file_stream && (errno != ENOENT)) {
54 if (info->file_stream)
55 __fsetlocking(info->file_stream, FSETLOCKING_BYCALLER);
63 if (info->file_stream)
64 fclose(info->file_stream);
65 info->file_stream = NULL;
102 while (info->file_stream &&
103 ((len = getline(&buffer, &buf_len, info->file_stream)) > 0)) {