Lines Matching refs:f
79 FILE *f = fopen (file_to_read, "r"); in read_thread_function() local
80 if (f == NULL) in read_thread_function()
88 rewind (f); in read_thread_function()
91 ssize_t ret = getline (&line, &line_allocated, f); in read_thread_function()
99 fclose (f); in read_thread_function()
142 FILE *f = fdopen (fd, "w+"); in create_file_with_large_line() local
143 if (f == NULL) in create_file_with_large_line()
149 fputc ('x', f); in create_file_with_large_line()
150 fputc ('\n', f); in create_file_with_large_line()
151 if (ferror (f)) in create_file_with_large_line()
156 if (fclose (f) != 0) in create_file_with_large_line()