Lines Matching refs:fwrite
91 int Ret = fwrite(Buf, 1, 10, F); in error_fwrite()
97 fwrite(0, 1, 10, F); // expected-warning {{might be 'indeterminate'}} in error_fwrite()
100 Ret = fwrite(0, 1, 10, F); // expected-warning {{Stream might be already closed}} in error_fwrite()
104 fwrite(0, 1, 0, F); in freadwrite_zerosize()
105 fwrite(0, 0, 1, F); in freadwrite_zerosize()
111 fwrite(0, 1, 0, F); in freadwrite_zerosize_eofstate()
112 fwrite(0, 0, 1, F); in freadwrite_zerosize_eofstate()
178 fwrite(Buf, 1, 10, F); // no warning in error_indeterminate()
180 fwrite(Buf, 1, 10, F); // expected-warning {{might be 'indeterminate'}} in error_indeterminate()
182 fwrite(Buf, 1, 10, F); // expected-warning {{might be 'indeterminate'}} in error_indeterminate()
197 fwrite(Buf, 1, 10, F); // no warning in error_indeterminate_clearerr()
200 fwrite(Buf, 1, 10, F); // expected-warning {{might be 'indeterminate'}} in error_indeterminate_clearerr()
203 fwrite(Buf, 1, 10, F); // expected-warning {{might be 'indeterminate'}} in error_indeterminate_clearerr()
217 fwrite("1", 1, 1, F); // no warning in error_indeterminate_feof1()
231 fwrite("1", 1, 1, F); // no warning in error_indeterminate_feof2()