Home
last modified time | relevance | path

Searched refs:feof (Results 1 – 25 of 254) sorted by relevance

1234567891011

/freebsd/contrib/netbsd-tests/lib/libc/stdio/
H A Dt_clearerr.c52 while (feof(fp) == 0) in ATF_TC_BODY()
55 ATF_REQUIRE(feof(fp) != 0); in ATF_TC_BODY()
61 ATF_REQUIRE(feof(fp) == 0); in ATF_TC_BODY()
H A Dt_fmemopen.c778 ATF_CHECK(feof(fp) == 0); in ATF_TC_BODY()
782 ATF_CHECK(feof(fp) != 0); in ATF_TC_BODY()
813 ATF_CHECK(feof(fp) != 0); in ATF_TC_BODY()
854 ATF_CHECK(feof(fp) == 0); in ATF_TC_BODY()
858 ATF_CHECK(feof(fp) != 0); in ATF_TC_BODY()
864 ATF_CHECK(feof(fp) == 0); in ATF_TC_BODY()
868 ATF_CHECK(feof(fp) != 0); in ATF_TC_BODY()
908 ATF_CHECK(feof(fp) != 0); in ATF_TC_BODY()
916 ATF_CHECK(feof(fp) != 0); in ATF_TC_BODY()
978 ATF_CHECK(feof(fp) == 0); in ATF_TC_BODY()
[all …]
/freebsd/lib/libc/tests/stdio/
H A Dgetdelim_test.c109 ATF_REQUIRE(feof(fp)); in ATF_TC_BODY()
161 while (!feof(fp)) /* advance to EOF; can't fseek this stream */ in ATF_TC_BODY()
171 ATF_REQUIRE(feof(fp)); in ATF_TC_BODY()
353 ATF_REQUIRE(!feof(fp)); in _nonblock_eagain()
371 ATF_REQUIRE(!feof(fp)); in _nonblock_eagain()
379 ATF_REQUIRE(!feof(fp)); in _nonblock_eagain()
387 ATF_REQUIRE(!feof(fp)); in _nonblock_eagain()
394 ATF_REQUIRE(!feof(fp)); in _nonblock_eagain()
/freebsd/usr.bin/cmp/
H A Dspecial.c112 if (feof(fp1)) { in c_special()
113 if (!feof(fp2)) { in c_special()
118 if (feof(fp2)) { in c_special()
/freebsd/lib/libc/stdio/
H A Dfeof.c40 #undef feof
44 feof(FILE *fp) in feof() function
/freebsd/contrib/diff/lib/
H A Dunlocked-io.h50 # undef feof
51 # define feof(x) feof_unlocked (x) macro
53 # define feof_unlocked(x) feof (x)
/freebsd/tools/tools/ath/ath_ee_9287_print/
H A Deeprom.c48 while (!feof(fp)) { in load_eeprom_dump()
51 if (feof(fp)) in load_eeprom_dump()
/freebsd/tools/tools/ath/ath_ee_v4k_print/
H A Deeprom.c48 while (!feof(fp)) { in load_eeprom_dump()
51 if (feof(fp)) in load_eeprom_dump()
/freebsd/sbin/pfctl/
H A Dpfctl_radix.c473 while (isspace(next_ch) && !feof(fp)) in pfr_next_token()
477 while (!feof(fp)) { in pfr_next_token()
485 if (feof(fp)) { in pfr_next_token()
493 } while (!feof(fp) && !isspace(next_ch)); in pfr_next_token()
/freebsd/contrib/dialog/
H A Dtailbox.c52 if (((ch = getc(fp)) == EOF) && !feof(fp)) in get_line()
54 else if (!feof(fp) && (ch != '\n')) { in get_line()
71 } while (!feof(fp) && (ch != '\n')); in get_line()
/freebsd/include/
H A Dstdio.h268 int feof(FILE *);
505 #define feof(p) (!__isthreaded ? __sfeof(p) : (feof)(p)) macro
/freebsd/usr.bin/tail/
H A Dreverse.c197 while (!feof(fp)) { in r_buf()
217 while ((!feof(fp)) && len < BSZ) { in r_buf()
/freebsd/contrib/dma/
H A Dconf.c108 while (!feof(a)) { in parse_authfile()
166 while (!feof(conf)) { in parse_conf()
/freebsd/contrib/libder/tests/
H A Dfuzz_stream.c140 while (!feof(fp)) { in fuzz_file()
147 assert(readsz != 0 || feof(fp)); in fuzz_file()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dstdio.h96 int feof(FILE* stream);
116 # undef feof
/freebsd/contrib/ntp/sntp/
H A Dkod_management.c212 while (!feof(db_s) && NULL != fgets(fbuf, sizeof(fbuf), db_s)) { in kod_init_kod_db()
254 !feof(db_s) && !ferror(db_s) && b < kod_db_cnt; in kod_init_kod_db()
H A Dcrypto.c227 if (feof(keyf)) { in auth_init()
234 while (!feof(keyf)) { in auth_init()
/freebsd/bin/setfacl/
H A Dfile.c65 } else if (feof(file) == 0) { in get_acl_from_file()
/freebsd/contrib/mandoc/
H A Dcompat_getline.c52 return pos > 0 && feof(fp) ? (ssize_t)pos : -1; in getline()
/freebsd/usr.bin/locate/bigram/
H A Dlocate.bigram.c86 if (!feof(stdin) || ferror(stdin)) in main()
/freebsd/contrib/byacc/test/
H A Dcalc.y71 while(!feof(stdin)) {
H A Dcalc_code_default.y74 while(!feof(stdin)) {
H A Dcalc_code_imports.y74 while(!feof(stdin)) {
H A Dcalc_code_provides.y74 while(!feof(stdin)) {
H A Dcalc_code_requires.y74 while(!feof(stdin)) {

1234567891011