Searched refs:feof (Results 51 - 75 of 221) sorted by relevance

123456789

/freebsd-12-stable/usr.bin/tail/
H A Dreverse.c203 while (!feof(fp)) {
223 while ((!feof(fp)) && len < BSZ) {
/freebsd-12-stable/include/
H A Dstdio.h253 int feof(FILE *);
498 #define feof(p) (!__isthreaded ? __sfeof(p) : (feof)(p)) macro
/freebsd-12-stable/contrib/libucl/utils/
H A Dobjdump.c132 while (!feof (in) && !ferror (in)) {
H A Ducl-tool.c107 while (!feof(in) && !ferror(in)) {
/freebsd-12-stable/contrib/xz/src/xz/
H A Dmain.c94 if (feof(args->files_file)) {
/freebsd-12-stable/contrib/nvi/ex/
H A Dex_util.c70 if ((ch = getc(fp)) == EOF && !feof(fp)) {
/freebsd-12-stable/contrib/opie/
H A Dpermsfile.c157 if (feof(fh))
/freebsd-12-stable/contrib/pf/authpf/
H A Dauthpf.c389 if (buf[len - 1] != '\n' && !feof(f)) {
424 } while (!feof(f) && !ferror(f));
455 } while (fputs(buf, stdout) != EOF && !feof(f));
628 while (fputs(tmp, stdout) != EOF && !feof(f)) {
/freebsd-12-stable/contrib/tcp_wrappers/
H A Drfc931.c206 && ferror(fp) == 0 && feof(fp) == 0
/freebsd-12-stable/contrib/libarchive/libarchive_fe/
H A Dline_reader.c154 if (feof(lr->f)) {
/freebsd-12-stable/contrib/byacc/test/
H A Dbtyacc_calc1.y179 while(!feof(stdin)) {
/freebsd-12-stable/contrib/dma/
H A Dlocal.c208 while (!feof(it->mailf)) {
/freebsd-12-stable/contrib/amd/amd/
H A Dinfo_file.c84 } while (size > 0 && !feof(fp) && !ferror(fp));
/freebsd-12-stable/sys/contrib/octeon-sdk/
H A Dcvmx-sysinfo.c204 while (!feof(infile))
/freebsd-12-stable/sys/contrib/zstd/contrib/seekable_format/examples/
H A Dparallel_processing.c16 #include <stdio.h> // fprintf, perror, feof
67 if (feof(file)) return readSize; /* good, reached end of file */
H A Dseekable_compression.c11 #include <stdio.h> // fprintf, perror, feof, fopen, etc.
40 if (feof(file)) return readSize; /* good, reached end of file */
/freebsd-12-stable/sys/contrib/zstd/zlibWrapper/examples/
H A Dfitblk_original.c84 if (feof(in))
/freebsd-12-stable/lib/libc/stdio/
H A DMakefile.inc9 feof.c ferror.c fflush.c fgetc.c fgetln.c fgetpos.c fgets.c fgetwc.c \
49 ferror.3 feof.3 ferror.3 feof_unlocked.3 \
/freebsd-12-stable/sys/contrib/dev/acpica/compiler/
H A Daslfileio.c283 if (feof (AslGbl_Files[FileId].Handle))
/freebsd-12-stable/libexec/tftpd/
H A Dtftp-file.c135 if (feof(file)) break;
/freebsd-12-stable/stand/liblua/
H A Dlstd.c156 feof(FILE *stream) function
/freebsd-12-stable/crypto/openssh/regress/unittests/sshbuf/
H A Dtest_sshbuf_misc.c44 ASSERT_INT_NE(feof(out), 0);
/freebsd-12-stable/sbin/pfctl/
H A Dpfctl_radix.c547 while (isspace(next_ch) && !feof(fp))
551 while (!feof(fp)) {
559 if (feof(fp)) {
567 } while (!feof(fp) && !isspace(next_ch));
/freebsd-12-stable/usr.bin/iconv/
H A Diconv.c108 if (feof(fp))
/freebsd-12-stable/usr.bin/sdiff/
H A Dedit.c183 (ferror(file) || !feof(file))) {

Completed in 245 milliseconds

123456789