Home
last modified time | relevance | path

Searched refs:feof (Results 1 - 25 of 175) sorted by relevance

1234567

/third_party/musl/porting/uniproton/kernel/src/stdio/
H A Dfeof.c3 #undef feof macro
5 int feof(FILE *f) in feof() function
13 weak_alias(feof, feof_unlocked);
14 weak_alias(feof, _IO_feof_unlocked);
/third_party/musl/porting/liteos_a/kernel/src/stdio/
H A Dfeof.c3 #undef feof macro
5 int feof(FILE *f) in feof() function
13 weak_alias(feof, feof_unlocked);
14 weak_alias(feof, _IO_feof_unlocked);
/third_party/musl/porting/liteos_m/kernel/src/stdio/
H A Dfeof.c3 #undef feof macro
5 int feof(FILE *f) in feof() function
13 weak_alias(feof, feof_unlocked);
14 weak_alias(feof, _IO_feof_unlocked);
/third_party/musl/src/stdio/
H A Dfeof.c6 #undef feof macro
8 int feof(FILE *f) in feof() function
19 weak_alias(feof, feof_unlocked);
20 weak_alias(feof, _IO_feof_unlocked);
H A Dgets.c12 if (c != '\n' && (!feof(stdin) || !i)) s = 0; in gets()
/third_party/musl/libc-test/src/functional/
H A Dfwscanf.c49 TEST(i, !!feof(f), 1, "%d != %d"); in main()
62 TEST(i, feof(f), 0, "%d != %d"); in main()
77 TEST(i, feof(f), 0, "%d != %d"); in main()
88 TEST(i, !!feof(f), 1, "%d != %d"); in main()
102 TEST(i, !!feof(f), 1, "%d != %d"); in main()
113 TEST(i, feof(f), 0, "%d != %d"); in main()
H A Dfscanf.c110 TEST(i, !!feof(f), 1, "%d != %d"); in main()
123 TEST(i, feof(f), 0, "%d != %d"); in main()
138 TEST(i, feof(f), 0, "%d != %d"); in main()
149 TEST(i, !!feof(f), 1, "%d != %d"); in main()
163 TEST(i, !!feof(f), 1, "%d != %d"); in main()
174 TEST(i, feof(f), 0, "%d != %d"); in main()
/third_party/ltp/testcases/kernel/fs/stream/
H A Dstream05.c24 >KEYS: < ferror() feof() clearerr() fileno()
27 < 3) check that feof returns zero (nonzero) appropriately
32 < 3) open stream and ensure feof returns zero, read to end of
33 < file and ensure feof returns non-zero.
34 < 4) after 3) above use clearerr and then use feof to ensure
132 /* read to EOF and ensure feof returns non-zero */ in main()
140 if (feof(stream) != 0) { in main()
142 "feof returned non-zero when it should not: %s", in main()
147 if (feof(stream) == 0) { in main()
149 "feof returne in main()
[all...]
/third_party/pulseaudio/speex/libspeexdsp/
H A Dtestecho.c39 while (!feof(ref_fd) && !feof(echo_fd)) in main()
H A Dtestdenoise.c35 if (feof(stdin)) in main()
/third_party/bounds_checking_function/src/
H A Dsecinput.h122 #ifdef feof
123 #undef feof macro
125 extern int feof(FILE *stream);
/third_party/icu/icu4c/source/samples/ucnv/
H A Dconvsamp.cpp331 while((!feof(f)) && in convsample_05()
345 feof(f)?true:false, /* pass 'flush' when eof */ in convsample_05()
446 while((!feof(f)) && in convsample_06()
917 while((!feof(f)) && in convsample_40()
933 feof(f)?true:false, /* pass 'flush' when eof */ in convsample_40()
1022 while((!feof(f)) && in convsample_46()
1038 feof(f)?true:false, /* pass 'flush' when eof */ in convsample_46()
/third_party/skia/third_party/externals/icu/source/samples/ucnv/
H A Dconvsamp.cpp331 while((!feof(f)) && in convsample_05()
345 feof(f)?true:false, /* pass 'flush' when eof */ in convsample_05()
446 while((!feof(f)) && in convsample_06()
917 while((!feof(f)) && in convsample_40()
933 feof(f)?true:false, /* pass 'flush' when eof */ in convsample_40()
1022 while((!feof(f)) && in convsample_46()
1038 feof(f)?true:false, /* pass 'flush' when eof */ in convsample_46()
/third_party/musl/libc-test/src/functionalext/supplement/stdio/
H A Dfopen.c54 while (!feof(fptr)) { in fopen_0100()
186 while (!feof(fptr)) { in fopen_0500()
302 while (!feof(fptr)) { in fopen_0900()
H A Drewind.c51 EXPECT_FALSE("rewind_0100", feof(fptr)); in rewind_0100()
/third_party/musl/porting/liteos_a/user/src/misc/
H A Dwordexp.c130 if (feof(f)) { in do_wordexp()
146 if (!feof(f)) err = WRDE_NOSPACE; in do_wordexp()
/third_party/musl/src/misc/
H A Dwordexp.c130 if (feof(f)) { in do_wordexp()
146 if (!feof(f)) err = WRDE_NOSPACE; in do_wordexp()
/third_party/mesa3d/src/gallium/drivers/lima/standalone/
H A Dlima_disasm.c126 } while (!feof(in)); in extract_shader_binary()
128 if (feof(in)) { in extract_shader_binary()
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/port/
H A Dfile_input_stream.cc71 if (feof(file_)) { in Read()
95 if (feof(file_)) { in Read()
/third_party/pulseaudio/src/tests/
H A Dalsa-mixer-path-test.c36 while (!feof(f)) { in load_makefile()
38 fail_unless(feof(f)); in load_makefile()
/third_party/lzma/CPP/Common/
H A DStdInStream.h38 bool Eof() const throw() { return (feof(_stream) != 0); } in Eof()
/third_party/musl/libc-test/src/regression/
H A Drewind-clear-error.c19 t_error("fread(stdin) should have failed, got %d ferror %d feof %d\n", in main()
20 n, ferror(stdin), feof(stdin)); in main()
/third_party/curl/lib/
H A Dcurl_get_line.c59 else if(feof(input)) { in Curl_get_line()
/third_party/skia/third_party/externals/libpng/contrib/mips-msa/
H A Dlinux.c37 while(!feof(f)) in png_have_msa()
/third_party/ltp/testcases/cve/
H A Dstack_clash.c106 while (!feof(fh)) { in force_bottom_up()
146 while (!feof(fh)) { in read_stack_addr_from_proc()

Completed in 9 milliseconds

1234567