Home
last modified time | relevance | path

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

1234567891011

/freebsd-13-stable/contrib/netbsd-tests/lib/libc/stdio/
HDt_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()
HDt_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-13-stable/usr.bin/cmp/
HDspecial.c119 if (feof(fp1)) { in c_special()
120 if (!feof(fp2)) { in c_special()
125 if (feof(fp2)) { in c_special()
/freebsd-13-stable/lib/libc/stdio/
HDfeof.c44 #undef feof
48 feof(FILE *fp) in feof() function
/freebsd-13-stable/contrib/diff/lib/
HDunlocked-io.h50 # undef feof
51 # define feof(x) feof_unlocked (x) macro
53 # define feof_unlocked(x) feof (x)
/freebsd-13-stable/tools/tools/ath/ath_ee_v4k_print/
HDeeprom.c48 while (!feof(fp)) { in load_eeprom_dump()
51 if (feof(fp)) in load_eeprom_dump()
/freebsd-13-stable/tools/tools/ath/ath_ee_9287_print/
HDeeprom.c48 while (!feof(fp)) { in load_eeprom_dump()
51 if (feof(fp)) in load_eeprom_dump()
/freebsd-13-stable/lib/libc/tests/stdio/
HDgetdelim_test.c103 ATF_REQUIRE(feof(fp)); in ATF_TC_BODY()
155 while (!feof(fp)) /* advance to EOF; can't fseek this stream */ in ATF_TC_BODY()
165 ATF_REQUIRE(feof(fp)); in ATF_TC_BODY()
/freebsd-13-stable/contrib/xz/src/xzdec/
HDxzdec.c219 if (feof(file)) in uncompress()
253 || !feof(file)) in uncompress()
262 assert(feof(file)); in uncompress()
/freebsd-13-stable/sbin/pfctl/
HDpfctl_radix.c559 while (isspace(next_ch) && !feof(fp)) in pfr_next_token()
563 while (!feof(fp)) { in pfr_next_token()
571 if (feof(fp)) { in pfr_next_token()
579 } while (!feof(fp) && !isspace(next_ch)); in pfr_next_token()
/freebsd-13-stable/contrib/libder/tests/
HDfuzz_stream.c140 while (!feof(fp)) { in fuzz_file()
147 assert(readsz != 0 || feof(fp)); in fuzz_file()
/freebsd-13-stable/usr.bin/tail/
HDreverse.c204 while (!feof(fp)) { in r_buf()
224 while ((!feof(fp)) && len < BSZ) { in r_buf()
/freebsd-13-stable/contrib/dma/
HDconf.c108 while (!feof(a)) { in parse_authfile()
166 while (!feof(conf)) { in parse_conf()
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
HDstdio.h116 # undef feof
/freebsd-13-stable/contrib/dialog/
HDtailbox.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-13-stable/include/
HDstdio.h252 int feof(FILE *);
496 #define feof(p) (!__isthreaded ? __sfeof(p) : (feof)(p)) macro
/freebsd-13-stable/contrib/ntp/sntp/
HDkod_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()
HDcrypto.c227 if (feof(keyf)) { in auth_init()
234 while (!feof(keyf)) { in auth_init()
/freebsd-13-stable/bin/setfacl/
HDfile.c66 } else if (feof(file) == 0) { in get_acl_from_file()
/freebsd-13-stable/contrib/mandoc/
HDcompat_getline.c52 return pos > 0 && feof(fp) ? (ssize_t)pos : -1; in getline()
/freebsd-13-stable/contrib/byacc/test/
HDcalc.y71 while(!feof(stdin)) {
HDcalc_code_default.y74 while(!feof(stdin)) {
HDcode_calc.y79 while(!feof(stdin)) { in main()
HDcalc_code_imports.y74 while(!feof(stdin)) {
/freebsd-13-stable/contrib/libarchive/unzip/
HDla_getline.c44 if (feof(fp)) { in la_getdelim()

1234567891011