Symbol: EOF
bin/cat/cat.c
152
for (prev = '\n'; (ch = getc(fp)) != EOF; prev = ch) {
bin/cat/cat.c
175
if (eflag && putchar('$') == EOF)
bin/cat/cat.c
179
if (putchar('^') == EOF || putchar('I') == EOF)
bin/cat/cat.c
185
if (putchar('M') == EOF || putchar('-') == EOF)
bin/cat/cat.c
190
if (putchar('^') == EOF ||
bin/cat/cat.c
192
ch | 0100) == EOF)
bin/cat/cat.c
197
if (putchar(ch) == EOF)
bin/chio/parse.y
207
if ((c = getc(file->stream)) == EOF) {
bin/chio/parse.y
210
if (file == topfile || popfile() == EOF)
bin/chio/parse.y
211
return (EOF);
bin/chio/parse.y
227
while (c == EOF) {
bin/chio/parse.y
228
if (file == topfile || popfile() == EOF)
bin/chio/parse.y
229
return (EOF);
bin/chio/parse.y
238
if (c == EOF)
bin/chio/parse.y
239
return (EOF);
bin/chio/parse.y
246
return (EOF);
bin/chio/parse.y
266
if (c == EOF)
bin/chio/parse.y
286
while ((c = lgetc(0)) != '\n' && c != EOF)
bin/chio/parse.y
294
if ((c = lgetc(quotec)) == EOF)
bin/chio/parse.y
300
if ((next = lgetc(quotec)) == EOF)
bin/chio/parse.y
337
} while ((c = lgetc(0)) != EOF && isdigit(c));
bin/chio/parse.y
341
if (c == EOF || allowed_to_end_number(c)) {
bin/chio/parse.y
376
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
bin/chio/parse.y
388
if (c == EOF)
bin/chio/parse.y
427
return (file ? 0 : EOF);
bin/cp/utils.c
266
while (ch != '\n' && ch != EOF)
bin/ed/buf.c
224
if (fclose(sfp) == EOF) {
bin/ed/io.c
125
while (((c = getc(fp)) != EOF || (!feof(fp) &&
bin/ed/io.c
161
else if ((*fn == '!') ? pclose(fp) == -1 : fclose(fp) == EOF) {
bin/ed/io.c
200
if (fputc(*s, fp) == EOF) {
bin/ed/io.c
276
case EOF:
bin/ed/io.c
59
else if ((*fn == '!') ? pclose(fp) == -1 : fclose(fp) == EOF) {
bin/ed/main.c
1036
return l ? EOF : 0;
bin/ed/main.c
247
case EOF:
bin/ed/main.c
395
return EOF;
bin/ed/main.c
671
gflag = (modified && !scripted && c == 'q') ? EMOD : EOF;
bin/ed/main.c
801
gflag = EOF;
bin/ksh/c_sh.c
329
if (c == '\n' || c == EOF)
bin/ksh/c_sh.c
335
if (c == EOF && shf_error(shf) &&
bin/ksh/c_sh.c
367
} else if (c != EOF)
bin/ksh/c_sh.c
375
if (c == '\n' || c == EOF)
bin/ksh/c_sh.c
417
if (c == EOF && !ecode)
bin/ksh/c_sh.c
420
return ecode ? ecode : c == EOF;
bin/ksh/eval.c
550
c = EOF;
bin/ksh/eval.c
558
if (newlines && c != EOF) {
bin/ksh/eval.c
564
if (c == EOF) {
bin/ksh/exec.c
1234
if (shf_close(shf) == EOF) {
bin/ksh/exec.c
471
if (optc != EOF)
bin/ksh/history.c
225
if (shf_close(shf) == EOF) {
bin/ksh/history.c
820
if (oldmagic1 == EOF || oldmagic2 == EOF) {
bin/ksh/shf.c
1005
return shf_error(shf) ? EOF : nwritten;
bin/ksh/shf.c
227
ret = EOF;
bin/ksh/shf.c
246
ret = EOF;
bin/ksh/shf.c
282
return (shf->flags & SHF_WR) ? EOF : 0;
bin/ksh/shf.c
289
return EOF;
bin/ksh/shf.c
319
return EOF;
bin/ksh/shf.c
336
return EOF;
bin/ksh/shf.c
367
return EOF;
bin/ksh/shf.c
400
return EOF;
bin/ksh/shf.c
403
if ((shf->flags & SHF_WRITING) && shf_emptybuf(shf, EB_READSW) == EOF)
bin/ksh/shf.c
404
return EOF;
bin/ksh/shf.c
423
return EOF;
bin/ksh/shf.c
448
(shf_fillbuf(shf) == EOF || shf->rnleft == 0))
bin/ksh/shf.c
455
return EOF;
bin/ksh/shf.c
464
return orig_bsize == bsize ? (shf_error(shf) ? EOF : 0) :
bin/ksh/shf.c
488
if (shf_fillbuf(shf) == EOF)
bin/ksh/shf.c
521
if (shf->rnleft == 0 && (shf_fillbuf(shf) == EOF || shf->rnleft == 0))
bin/ksh/shf.c
522
return EOF;
bin/ksh/shf.c
536
if ((shf->flags & SHF_ERROR) || c == EOF ||
bin/ksh/shf.c
538
return EOF;
bin/ksh/shf.c
540
if ((shf->flags & SHF_WRITING) && shf_emptybuf(shf, EB_READSW) == EOF)
bin/ksh/shf.c
541
return EOF;
bin/ksh/shf.c
550
return EOF;
bin/ksh/shf.c
571
if (c == EOF)
bin/ksh/shf.c
572
return EOF;
bin/ksh/shf.c
582
return EOF;
bin/ksh/shf.c
591
return EOF;
bin/ksh/shf.c
595
if (shf->wnleft == 0 && shf_emptybuf(shf, EB_GROW) == EOF)
bin/ksh/shf.c
596
return EOF;
bin/ksh/shf.c
611
return EOF;
bin/ksh/shf.c
643
if (shf_emptybuf(shf, EB_GROW) == EOF)
bin/ksh/shf.c
644
return EOF;
bin/ksh/shf.c
661
return EOF;
bin/mv/cp.c
440
while (ch != '\n' && ch != EOF)
bin/mv/mv.c
194
while (ch != '\n' && ch != EOF)
bin/pax/ftree.c
537
if ((ch = getchar()) == EOF) {
bin/pax/ftree.c
560
while ((ch = getchar()) != term && ch != EOF)
bin/rm/rm.c
386
while (ch != '\n' && ch != EOF)
distrib/special/more/more.c
1267
if (ch == EOF)
distrib/special/more/more.c
1725
while ((ch = Getc(f)) != '\n' && ch != EOF) {
distrib/special/more/more.c
293
if (noscroll && ch != EOF) {
distrib/special/more/more.c
522
if ((nchars = get_line(f, &length)) == EOF) {
distrib/special/more/more.c
565
if ((ch = Getc(f)) == EOF) {
distrib/special/more/more.c
621
while ((ch = getc(f)) != EOF)
distrib/special/more/more.c
686
if (ch == EOF) {
distrib/special/more/more.c
693
return (EOF);
distrib/special/more/more.c
728
} else if (ch == EOF) {
distrib/special/more/more.c
981
if (ch == EOF) {
games/adventure/hdr.h
66
#define FLUSHLINE do { int c; while ((c = getchar()) != EOF && c != '\n'); } while (0)
games/adventure/io.c
104
else if (ch == EOF) {
games/adventure/io.c
133
else if (ch == EOF) {
games/adventure/io.c
77
case EOF:
games/adventure/setup.c
91
while ((c = getc(infile)) != EOF) {
games/adventure/setup.c
96
while ((c = getc(infile)) == ' ' && c != EOF);
games/adventure/wizard.c
106
if ((ch = getchar()) == '\n' || ch == EOF)
games/arithmetic/arithmetic.c
134
if (problem() == EOF)
games/arithmetic/arithmetic.c
221
return(EOF);
games/atc/graphics.c
295
if (c == EOF || c == 'y') {
games/atc/graphics.c
372
while ((c = getchar()) != EOF && c != ' ')
games/atc/graphics.c
68
if ((c = getchar()) == EOF && feof(stdin))
games/battlestar/fly.c
167
case EOF:
games/battlestar/getcom.c
60
while ((i = getchar()) != '\n' && i != EOF)
games/boggle/boggle/help.c
56
if (ungetc(getc(fp), fp) == EOF) {
games/boggle/boggle/help.c
71
if (eof || ungetc(getc(fp), fp) == EOF) {
games/boggle/boggle/mach.c
250
ch = EOF;
games/boggle/boggle/mach.c
277
if (ch == EOF)
games/boggle/boggle/word.c
76
if ((pcount = getc(fp)) == EOF)
games/boggle/boggle/word.c
79
} else if ((pcount = lastch) == EOF)
games/boggle/boggle/word.c
84
while ((ch = getc(fp)) != EOF && ch >= 'a')
games/boggle/mkdict/mkdict.c
79
while ((ch = getc(stdin)) != EOF && ch != '\n')
games/boggle/mkdict/mkdict.c
81
if (ch == EOF)
games/boggle/mkindex/mkindex.c
86
if ((pcount = getc(fp)) == EOF)
games/boggle/mkindex/mkindex.c
90
else if ((pcount = lastch) == EOF)
games/boggle/mkindex/mkindex.c
95
while ((ch = getc(fp)) != EOF && ch >= 'a')
games/caesar/caesar.c
101
while ((nread < LINELENGTH) && ((ch = getchar()) != EOF)) {
games/caesar/caesar.c
140
while ((ch = getchar()) != EOF)
games/fish/fish.c
485
while ((input = getchar()) != EOF && input != '\n');
games/gomoku/bdisp.c
251
int c = EOF;
games/gomoku/bdisp.c
256
while (cp < end && (c = getchar()) != EOF && c != '\n' && c != '\r') {
games/gomoku/bdisp.c
289
return(c != EOF);
games/gomoku/main.c
331
while ((c = getc(fp)) != EOF && c != '\n')
games/hack/hack.main.c
476
if(c == EOF) error("End of input\n");
games/hack/hack.tty.c
211
if((c = getchar()) == EOF) {
games/hack/hack.tty.c
326
if((sym = getchar()) == EOF)
games/hunt/hunt/hunt.c
663
else if (i == '\n' || i == EOF || i == ' ')
games/hunt/hunt/hunt.c
666
while (i != '\n' && i != EOF)
games/hunt/hunt/playit.c
115
ch = EOF;
games/hunt/hunt/playit.c
90
while ((ch = GETCHR()) != EOF) {
games/monop/execute.c
64
(tmpin != EOF)) {
games/monop/execute.c
68
if (tmpin == EOF) {
games/monop/initdeck.c
159
while ((c=getc(inf)) != EOF)
games/monop/initdeck.c
192
while ((c=getc(inf)) != EOF)
games/monop/initdeck.c
201
if ((c=getc(inf)) == EOF)
games/monop/initdeck.c
205
for (num = 0; (c=getc(inf)) != EOF && c != '\n'; )
games/monop/misc.c
96
if (c == EOF) {
games/morse/morse.c
165
while ((ch = getchar()) != EOF) {
games/morse/morse.c
173
while ((ch = getchar()) != EOF &&
games/morse/morse.c
201
else while ((ch = getchar()) != EOF)
games/pig/pig.c
62
for (len = 0; (ch = getchar()) != EOF;) {
games/ppt/ppt.c
121
else while ((c = getchar()) != EOF)
games/random/random.c
230
while ((ch = getchar()) != EOF) {
games/random/random.c
236
if (retch == EOF && errno)
games/robots/move.c
200
case EOF:
games/sail/pl_7.c
228
while ((c = wgetch(scroll_w)) == EOF)
games/sail/pl_7.c
249
while ((c = wgetch(scroll_w)) == EOF)
games/sail/sync.c
238
case EOF:
games/sail/sync.c
255
case EOF:
games/tetris/scores.c
189
fflush(sf) == EOF)
games/tetris/scores.c
371
if (c == EOF)
games/tetris/tetris.c
361
if (i == EOF)
games/trek/getpar.c
228
(c >= 'a' && c <= 'z') || c == '-' || c == EOF)
lib/libc/db/recno/rec_get.c
134
if ((ch = getc(t->bt_rfp)) == EOF || !--len) {
lib/libc/db/recno/rec_get.c
135
if (ch != EOF)
lib/libc/db/recno/rec_get.c
145
if (ch == EOF)
lib/libc/db/recno/rec_get.c
180
if ((ch = getc(t->bt_rfp)) == EOF || ch == bval) {
lib/libc/db/recno/rec_get.c
183
if (ch == EOF && data.size == 0)
lib/libc/db/recno/rec_get.c
200
if (ch == EOF)
lib/libc/gen/getgrent.c
346
ch != EOF)
lib/libc/gen/getgrouplist.c
133
while ((ch = getc_unlocked(fp)) != '\n' && ch != EOF)
lib/libc/gen/getttyent.c
197
rval = !(fclose(tf) == EOF);
lib/libc/gen/getttyent.c
71
while ((c = getc_unlocked(tf)) != '\n' && c != EOF)
lib/libc/gen/isctype.c
103
return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] &
lib/libc/gen/isctype.c
112
return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _CTYPE_P));
lib/libc/gen/isctype.c
120
return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _CTYPE_S));
lib/libc/gen/isctype.c
128
return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _CTYPE_U));
lib/libc/gen/isctype.c
136
return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] &
lib/libc/gen/isctype.c
44
return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] &
lib/libc/gen/isctype.c
53
return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] &
lib/libc/gen/isctype.c
70
return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _CTYPE_C));
lib/libc/gen/isctype.c
78
return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _CTYPE_N));
lib/libc/gen/isctype.c
86
return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] &
lib/libc/gen/isctype.c
95
return (c == EOF ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _CTYPE_L));
lib/libc/gen/tolower_.c
13
EOF,
lib/libc/gen/toupper_.c
14
EOF,
lib/libc/locale/btowc.c
40
if (c == EOF)
lib/libc/locale/wctob.c
41
return (EOF);
lib/libc/stdio/fclose.c
47
r = EOF;
lib/libc/stdio/fclose.c
71
return (EOF);
lib/libc/stdio/fdclose.c
49
return EOF;
lib/libc/stdio/fdclose.c
55
r = EOF;
lib/libc/stdio/fdclose.c
58
r = EOF;
lib/libc/stdio/fdclose.c
61
if (r == EOF) {
lib/libc/stdio/fflush.c
80
return (EOF);
lib/libc/stdio/fflush.c
86
return EOF;
lib/libc/stdio/fgetwc.c
56
if (ch == EOF) {
lib/libc/stdio/fpurge.c
50
return(EOF);
lib/libc/stdio/fseek.c
113
return (EOF);
lib/libc/stdio/fseek.c
237
return (EOF);
lib/libc/stdio/fseek.c
66
return (EOF);
lib/libc/stdio/fseek.c
89
return (EOF);
lib/libc/stdio/fvwrite.c
211
return (EOF);
lib/libc/stdio/fvwrite.c
62
return (EOF);
lib/libc/stdio/getw.c
41
return (fread(&x, sizeof(x), 1, fp) == 1 ? x : EOF);
lib/libc/stdio/putc.c
46
return (EOF);
lib/libc/stdio/puts.c
61
return (ret ? EOF : '\n');
lib/libc/stdio/refill.c
125
return (EOF);
lib/libc/stdio/refill.c
63
return (EOF);
lib/libc/stdio/refill.c
70
return (EOF);
lib/libc/stdio/refill.c
75
return (EOF);
lib/libc/stdio/rget.c
50
return (EOF);
lib/libc/stdio/setvbuf.c
57
return (EOF);
lib/libc/stdio/setvbuf.c
99
ret = EOF;
lib/libc/stdio/ungetc.c
57
return (EOF);
lib/libc/stdio/ungetc.c
69
return (EOF);
lib/libc/stdio/ungetc.c
81
if (c == EOF)
lib/libc/stdio/ungetc.c
82
return (EOF);
lib/libc/stdio/ungetc.c
94
return (EOF);
lib/libc/stdio/vdprintf.c
67
return __sflush(&f) ? EOF : ret;
lib/libc/stdio/vfprintf.c
142
ret = EOF;
lib/libc/stdio/vfprintf.c
474
return (EOF);
lib/libc/stdio/vfscanf.c
298
return (EOF);
lib/libc/stdio/vfscanf.c
448
if (wctob(*wcp) != EOF &&
lib/libc/stdio/vfwprintf.c
116
ret = EOF;
lib/libc/stdio/vfwprintf.c
150
return (__sfvwrite(fp, &uio) != EOF ? (wint_t)wc : WEOF);
lib/libc/stdio/vfwprintf.c
451
return (EOF);
lib/libc/stdio/vfwscanf.c
324
return (EOF);
lib/libc/stdio/vfwscanf.c
785
return (nconversions != 0 ? nassigned : EOF);
lib/libc/stdio/vswscanf.c
68
return (EOF);
lib/libc/stdio/vswscanf.c
73
return (EOF);
lib/libc/stdio/wbuf.c
57
return (EOF);
lib/libc/stdio/wbuf.c
72
return (EOF);
lib/libc/stdio/wbuf.c
79
return (EOF);
lib/libc/stdio/wsetup.c
58
return (EOF);
lib/libc/stdio/wsetup.c
78
return (EOF);
lib/libcurses/base/lib_bkgd.c
97
win->_bkgd = (((tmp == EOF) ? ' ' : (chtype) tmp)
lib/libcurses/base/lib_scanw.c
55
if ((code = vsscanf(buf, fmt, argp)) == EOF) {
lib/libcurses/base/lib_scanw.c
70
if ((code = vsscanf(buf, fmt, argp)) == EOF) {
lib/libcurses/base/lib_screen.c
195
if (ch == EOF)
lib/libcurses/base/lib_screen.c
493
if (ch == EOF) {
lib/libcurses/base/lib_screen.c
816
#define PUTS(s) if (fputs(s, filep) == EOF || ferror(filep)) returnCode(code)
lib/libcurses/base/vsscanf.c
293
assigned = EOF;
lib/libcurses/tinfo/captoinfo.c
1022
while ((c = getopt(argc, argv, "c")) != EOF)
lib/libcurses/tinfo/comp_scan.c
1049
if (c == EOF)
lib/libcurses/tinfo/comp_scan.c
168
} else if (ch == EOF) {
lib/libcurses/tinfo/comp_scan.c
214
return (EOF);
lib/libcurses/tinfo/comp_scan.c
238
return (EOF);
lib/libcurses/tinfo/comp_scan.c
262
return (EOF);
lib/libcurses/tinfo/comp_scan.c
285
return (EOF);
lib/libcurses/tinfo/comp_scan.c
432
DEBUG(3, (T_RETURN("%d"), EOF));
lib/libcurses/tinfo/comp_scan.c
433
return (EOF);
lib/libcurses/tinfo/comp_scan.c
450
if (ch == EOF)
lib/libcurses/tinfo/comp_scan.c
451
type = EOF;
lib/libcurses/tinfo/comp_scan.c
470
if (ch == EOF) {
lib/libcurses/tinfo/comp_scan.c
471
type = EOF;
lib/libcurses/tinfo/comp_scan.c
507
if (ch == EOF) {
lib/libcurses/tinfo/comp_scan.c
671
while ((ch = next_char()) != EOF) {
lib/libcurses/tinfo/comp_scan.c
684
ch = EOF;
lib/libcurses/tinfo/comp_scan.c
743
case EOF:
lib/libcurses/tinfo/comp_scan.c
744
type = EOF;
lib/libcurses/tinfo/comp_scan.c
796
case EOF:
lib/libcurses/tinfo/comp_scan.c
848
while ((c = next_char()) != separator && c != EOF) {
lib/libcurses/tinfo/comp_scan.c
850
if (c != EOF) {
lib/libcurses/tinfo/comp_scan.c
851
while ((c = next_char()) != separator && c != EOF) {
lib/libcurses/tinfo/comp_scan.c
861
if (c == EOF)
lib/libcurses/tinfo/comp_scan.c
878
if (c == EOF)
lib/libcurses/tinfo/comp_scan.c
885
if (c == EOF)
lib/libcurses/tinfo/parse_entry.c
301
if (token_type == EOF)
lib/libcurses/tinfo/parse_entry.c
302
returnDB(EOF);
lib/libcurses/tinfo/parse_entry.c
369
token_type != EOF && token_type != NAMES;
lib/libcurses/tty/lib_mvcur.c
1211
if (fputs("> ", stdout) == EOF)
lib/libedit/eln.c
49
if (num_read == EOF) {
lib/libedit/history.c
828
if (fputs(hist_cookie, fp) == EOF)
lib/libkvm/kvm.c
530
if (fputc(0, fp) == EOF) {
lib/libpcap/etherent.c
112
if (c == EOF)
lib/libpcap/etherent.c
138
} while (!isspace(c) && c != EOF && --d > 0);
lib/libpcap/etherent.c
147
} while (c != EOF);
lib/libpcap/etherent.c
72
while (c != '\n' && c != EOF);
lib/libpcap/savefile.c
475
if (fflush((FILE *)p) == EOF)
lib/libutil/passwd.c
267
while (c != '\n' && c != EOF)
lib/libutil/passwd.c
270
case EOF:
libexec/fingerd/fingerd.c
222
while ((ch = getc(fp)) != EOF) {
libexec/ftpd/ftpcmd.y
1114
while ((c = getc(stdin)) != EOF) {
libexec/ftpd/ftpcmd.y
1117
if ((c = getc(stdin)) != EOF) {
libexec/ftpd/ftpcmd.y
1147
while (c != '\n' && (c = getc(stdin)) != EOF)
libexec/ftpd/ftpcmd.y
1154
if (c == EOF && cs == s)
libexec/ftpd/ftpcmd.y
1536
while((c = getc(fin)) != EOF) {
libexec/ftpd/ftpd.c
1149
if ((c = getc(fin)) == EOF) {
libexec/ftpd/ftpd.c
1225
if ((c = getc(fout)) == EOF) {
libexec/ftpd/ftpd.c
1509
while ((c = getc(instr)) != EOF) {
libexec/ftpd/ftpd.c
1667
while ((c = getc(instr)) != EOF) {
libexec/ftpd/ftpd.c
1678
if (c == '\0' || c == EOF)
libexec/ftpd/ftpd.c
1735
while ((c = getc(fin)) != EOF) {
libexec/spamd/grey.c
146
if (fflush(sdc) == EOF)
regress/lib/libc/arch/alpha/divremtest/divremtest.c
98
&op2.input, &divwant.input, &modwant.input) != EOF) {
regress/lib/libc/fmemopen/fmemopentest.c
47
while ((c = fgetc(s1)) != EOF)
regress/lib/libc/fnmatch/fnm_test.c
40
if (got == EOF) {
regress/lib/libc/open_memstream/open_memstreamtest.c
130
if (fflush(fp) == EOF) {
regress/lib/libc/open_memstream/open_memstreamtest.c
172
if (fclose(fp) == EOF) {
regress/lib/libc/open_memstream/open_memstreamtest.c
70
if (fprintf(fp, hello) == EOF) {
regress/lib/libc/open_memstream/open_memstreamtest.c
75
if (fflush(fp) == EOF) {
regress/lib/libc/open_memstream/open_memstreamtest.c
91
if (fprintf(fp, start) == EOF) {
regress/lib/libc/open_memstream/open_memstreamtest.c
96
if (fflush(fp) == EOF) {
regress/lib/libc/popen/popen.c
77
while ((in = fgetc(pipe)) != EOF)
regress/lib/libcrypto/test/test.c
184
if (fputc('\n', t->out) == EOF)
regress/lib/libpthread/stdio/stdio.c
60
while ((i = getc(fp)) != EOF)
regress/sys/net/pf_print/pf_print_test.c
119
if (fclose(fpipe) == EOF)
regress/usr.bin/mandoc/db/binedit/binedit.c
131
if ((ch = getchar()) == EOF) {
regress/usr.bin/mandoc/db/binedit/binedit.c
134
} else if (putchar(ch) == EOF)
regress/usr.bin/mandoc/db/binedit/binedit.c
45
if (copybyte('a') == EOF)
regress/usr.bin/mandoc/db/binedit/binedit.c
53
if (copybyte('c') == EOF)
regress/usr.bin/mandoc/db/binedit/binedit.c
62
while (copybyte('f') != EOF)
regress/usr.bin/mandoc/db/binedit/binedit.c
85
if (getchar() == EOF) {
regress/usr.sbin/httpd/patterns/patterns-tester.c
49
if (getchar() != EOF)
sbin/dhcp6leased/parse.y
294
if ((c = igetc()) == EOF) {
sbin/dhcp6leased/parse.y
297
if (file == topfile || popfile() == EOF)
sbin/dhcp6leased/parse.y
298
return (EOF);
sbin/dhcp6leased/parse.y
314
if (c == EOF) {
sbin/dhcp6leased/parse.y
324
while (c == EOF) {
sbin/dhcp6leased/parse.y
325
if (file == topfile || popfile() == EOF)
sbin/dhcp6leased/parse.y
326
return (EOF);
sbin/dhcp6leased/parse.y
336
if (c == EOF)
sbin/dhcp6leased/parse.y
361
if (c == EOF)
sbin/dhcp6leased/parse.y
382
while ((c = lgetc(0)) != '\n' && c != EOF)
sbin/dhcp6leased/parse.y
386
if ((c = lgetc(0)) == EOF)
sbin/dhcp6leased/parse.y
421
if ((c = lgetc(quotec)) == EOF)
sbin/dhcp6leased/parse.y
427
if ((next = lgetc(quotec)) == EOF)
sbin/dhcp6leased/parse.y
466
} while ((c = lgetc(0)) != EOF && isdigit(c));
sbin/dhcp6leased/parse.y
470
if (c == EOF || allowed_to_end_number(c)) {
sbin/dhcp6leased/parse.y
505
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
sbin/dhcp6leased/parse.y
517
if (c == EOF)
sbin/dhcp6leased/parse.y
596
return (file ? 0 : EOF);
sbin/dhcp6leased/parse_lease.y
168
while ((c = lgetc(0)) != '\n' && c != EOF)
sbin/dhcp6leased/parse_lease.y
175
if ((c = lgetc(quotec)) == EOF)
sbin/dhcp6leased/parse_lease.y
181
if ((next = lgetc(quotec)) == EOF)
sbin/dhcp6leased/parse_lease.y
220
} while ((c = lgetc(0)) != EOF && isdigit(c));
sbin/dhcp6leased/parse_lease.y
224
if (c == EOF || allowed_to_end_number(c)) {
sbin/dhcp6leased/parse_lease.y
259
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
sbin/dhcp6leased/parse_lease.y
271
if (c == EOF)
sbin/dhcpleased/parse.y
422
if ((c = igetc()) == EOF) {
sbin/dhcpleased/parse.y
425
if (file == topfile || popfile() == EOF)
sbin/dhcpleased/parse.y
426
return (EOF);
sbin/dhcpleased/parse.y
442
if (c == EOF) {
sbin/dhcpleased/parse.y
452
while (c == EOF) {
sbin/dhcpleased/parse.y
453
if (file == topfile || popfile() == EOF)
sbin/dhcpleased/parse.y
454
return (EOF);
sbin/dhcpleased/parse.y
464
if (c == EOF)
sbin/dhcpleased/parse.y
489
if (c == EOF)
sbin/dhcpleased/parse.y
510
while ((c = lgetc(0)) != '\n' && c != EOF)
sbin/dhcpleased/parse.y
514
if ((c = lgetc(0)) == EOF)
sbin/dhcpleased/parse.y
549
if ((c = lgetc(quotec)) == EOF)
sbin/dhcpleased/parse.y
555
if ((next = lgetc(quotec)) == EOF)
sbin/dhcpleased/parse.y
594
} while ((c = lgetc(0)) != EOF && isdigit(c));
sbin/dhcpleased/parse.y
598
if (c == EOF || allowed_to_end_number(c)) {
sbin/dhcpleased/parse.y
633
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
sbin/dhcpleased/parse.y
645
if (c == EOF)
sbin/dhcpleased/parse.y
723
return (file ? 0 : EOF);
sbin/disklabel/disklabel.c
658
while (ch != '\n' && ch != EOF)
sbin/fdisk/gpt.c
362
case EOF:
sbin/fdisk/gpt.c
375
case EOF:
sbin/fdisk/misc.c
112
while (ch != '\n' && ch != EOF)
sbin/fdisk/misc.c
115
if (ch == EOF || first == EOF)
sbin/iked/parse.y
1516
while ((c = lgetc(0)) != '\n' && c != EOF)
sbin/iked/parse.y
1693
if ((c = igetc()) == EOF) {
sbin/iked/parse.y
1696
if (file == topfile || popfile() == EOF)
sbin/iked/parse.y
1697
return (EOF);
sbin/iked/parse.y
1713
while (c == EOF) {
sbin/iked/parse.y
1723
while (c == EOF) {
sbin/iked/parse.y
1724
if (file == topfile || popfile() == EOF)
sbin/iked/parse.y
1725
return (EOF);
sbin/iked/parse.y
1735
if (c == EOF)
sbin/iked/parse.y
1760
if (c == EOF)
sbin/iked/parse.y
1781
while ((c = lgetc(0)) != '\n' && c != EOF)
sbin/iked/parse.y
1785
if ((c = lgetc(0)) == EOF)
sbin/iked/parse.y
1820
if ((c = lgetc(quotec)) == EOF)
sbin/iked/parse.y
1826
if ((next = lgetc(quotec)) == EOF)
sbin/iked/parse.y
1865
} while ((c = lgetc(0)) != EOF && isdigit(c));
sbin/iked/parse.y
1869
if (c == EOF || allowed_to_end_number(c)) {
sbin/iked/parse.y
1904
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
sbin/iked/parse.y
1916
if (c == EOF)
sbin/iked/parse.y
2004
return (file ? 0 : EOF);
sbin/ipsecctl/parse.y
1140
if ((c = getc(file->stream)) == EOF) {
sbin/ipsecctl/parse.y
1142
if (file == topfile || popfile() == EOF)
sbin/ipsecctl/parse.y
1143
return (EOF);
sbin/ipsecctl/parse.y
1159
while (c == EOF) {
sbin/ipsecctl/parse.y
1160
if (file == topfile || popfile() == EOF)
sbin/ipsecctl/parse.y
1161
return (EOF);
sbin/ipsecctl/parse.y
1170
if (c == EOF)
sbin/ipsecctl/parse.y
1171
return (EOF);
sbin/ipsecctl/parse.y
1178
return (EOF);
sbin/ipsecctl/parse.y
1200
if (c == EOF)
sbin/ipsecctl/parse.y
1221
while ((c = lgetc(0)) != '\n' && c != EOF)
sbin/ipsecctl/parse.y
1225
if ((c = lgetc(0)) == EOF)
sbin/ipsecctl/parse.y
1255
if ((c = lgetc(quotec)) == EOF)
sbin/ipsecctl/parse.y
1261
if ((next = lgetc(quotec)) == EOF)
sbin/ipsecctl/parse.y
1300
} while ((c = lgetc(0)) != EOF && isdigit(c));
sbin/ipsecctl/parse.y
1304
if (c == EOF || allowed_to_end_number(c)) {
sbin/ipsecctl/parse.y
1339
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
sbin/ipsecctl/parse.y
1351
if (c == EOF)
sbin/ipsecctl/parse.y
1429
return (file ? 0 : EOF);
sbin/pfctl/parse.y
5660
if ((c = igetc()) == EOF) {
sbin/pfctl/parse.y
5662
if (file == topfile || popfile() == EOF)
sbin/pfctl/parse.y
5663
return (EOF);
sbin/pfctl/parse.y
5679
if (c == EOF) {
sbin/pfctl/parse.y
5689
while (c == EOF) {
sbin/pfctl/parse.y
5690
if (file == topfile || popfile() == EOF)
sbin/pfctl/parse.y
5691
return (EOF);
sbin/pfctl/parse.y
5702
if (c == EOF)
sbin/pfctl/parse.y
5726
if (c == EOF)
sbin/pfctl/parse.y
5747
while ((c = lgetc(0)) != '\n' && c != EOF)
sbin/pfctl/parse.y
5751
if ((c = lgetc(0)) == EOF)
sbin/pfctl/parse.y
5786
if ((c = lgetc(quotec)) == EOF)
sbin/pfctl/parse.y
5792
if ((next = lgetc(quotec)) == EOF)
sbin/pfctl/parse.y
5855
} while ((c = lgetc(0)) != EOF && isdigit(c));
sbin/pfctl/parse.y
5859
if (c == EOF || allowed_to_end_number(c)) {
sbin/pfctl/parse.y
5894
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
sbin/pfctl/parse.y
5906
if (c == EOF)
sbin/pfctl/parse.y
5992
return (file ? 0 : EOF);
sbin/scsi/scsi.c
438
while ((c = getc(f)) != '\n' && c != EOF)
sbin/scsi/scsi.c
486
if (c == EOF)
sbin/unwind/libunbound/sldns/parse.c
199
if (c == EOF) {
sbin/unwind/libunbound/sldns/parse.c
274
return EOF;
sbin/unwind/libunbound/sldns/parse.c
315
while ((c = sldns_bgetc(b)) != EOF) {
sbin/unwind/libunbound/sldns/parse.c
473
while ((c = fgetc(fp)) != EOF) {
sbin/unwind/libunbound/sldns/parse.c
61
while ((c = getc(f)) != EOF) {
sbin/unwind/libunbound/util/configlexer.c
3903
(c = getc( yyin )) != EOF && c != '\n'; ++n ) \
sbin/unwind/libunbound/util/configlexer.c
3907
if ( c == EOF && ferror( yyin ) ) \
sbin/unwind/libunbound/util/configlexer.c
6658
return EOF;
sbin/unwind/libunbound/validator/val_anchor.c
488
while((*c = getc(in)) != EOF ) {
sbin/unwind/libunbound/validator/val_anchor.c
534
while((c = getc(in)) != EOF ) {
sbin/unwind/libunbound/validator/val_anchor.c
537
if(c == EOF) return 0;
sbin/unwind/libunbound/validator/val_anchor.c
546
if(c == EOF) return 0;
sbin/unwind/libunbound/validator/val_anchor.c
555
while(c != EOF && (c=getc(in)) != EOF ) {
sbin/unwind/libunbound/validator/val_anchor.c
563
if(c == EOF) return 0;
sbin/unwind/libunbound/validator/val_anchor.c
590
while((c = getc(in)) != EOF ) {
sbin/unwind/libunbound/validator/val_anchor.c
598
if(c == EOF) return 0;
sbin/unwind/parse.y
486
if ((c = igetc()) == EOF) {
sbin/unwind/parse.y
489
if (file == topfile || popfile() == EOF)
sbin/unwind/parse.y
490
return (EOF);
sbin/unwind/parse.y
506
if (c == EOF) {
sbin/unwind/parse.y
516
while (c == EOF) {
sbin/unwind/parse.y
517
if (file == topfile || popfile() == EOF)
sbin/unwind/parse.y
518
return (EOF);
sbin/unwind/parse.y
528
if (c == EOF)
sbin/unwind/parse.y
553
if (c == EOF)
sbin/unwind/parse.y
574
while ((c = lgetc(0)) != '\n' && c != EOF)
sbin/unwind/parse.y
578
if ((c = lgetc(0)) == EOF)
sbin/unwind/parse.y
613
if ((c = lgetc(quotec)) == EOF)
sbin/unwind/parse.y
619
if ((next = lgetc(quotec)) == EOF)
sbin/unwind/parse.y
658
} while ((c = lgetc(0)) != EOF && isdigit(c));
sbin/unwind/parse.y
662
if (c == EOF || allowed_to_end_number(c)) {
sbin/unwind/parse.y
697
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
sbin/unwind/parse.y
709
if (c == EOF)
sbin/unwind/parse.y
787
return (file ? 0 : EOF);
sys/arch/amd64/stand/rdboot/cmd.c
280
else if ((c = getchar()) != EOF) {
sys/arch/octeon/stand/rdboot/cmd.c
276
else if ((c = getchar()) != EOF) {
sys/arch/powerpc64/stand/rdboot/cmd.c
274
else if ((c = getchar()) != EOF) {
sys/ddb/db_dwarf.c
432
while ((ch = getopt(argc, argv, "e:s")) != EOF) {
sys/lib/libsa/cread.c
107
return EOF;
sys/lib/libsa/cread.c
124
if (c == EOF)
sys/lib/libsa/cread.c
146
if (c != EOF) {
sys/lib/libsa/cread.c
172
while (len-- != 0 && get_byte(s) != EOF)
sys/lib/libsa/cread.c
176
while ((c = get_byte(s)) != 0 && c != EOF)
sys/lib/libsa/cread.c
180
while ((c = get_byte(s)) != 0 && c != EOF)
sys/lib/libsa/cread.c
99
return EOF;
usr.bin/at/at.c
334
if ((ch = getchar()) == EOF)
usr.bin/at/at.c
342
} while ((ch = getchar()) != EOF);
usr.bin/at/at.c
601
while ((junk = getchar()) != EOF && junk != '\n')
usr.bin/at/at.c
719
while ((ch = getc(fp)) != EOF)
usr.bin/at/parsetime.c
202
sc_tokid = EOF;
usr.bin/at/parsetime.c
268
warnx("%s time", (tok == EOF) ? "incomplete" : "garbled");
usr.bin/at/parsetime.c
434
if ((sc_tokid == EOF || sc_tokid == PLUS || sc_tokid == NEXT) &&
usr.bin/at/parsetime.c
643
if (sc_tokid == EOF) {
usr.bin/at/parsetime.c
689
if (expect(EOF) != 0)
usr.bin/awk/b.c
907
*k++ = (c = getc(f)) != EOF ? c : 0;
usr.bin/awk/b.c
908
if (c == EOF) {
usr.bin/awk/b.c
956
if (*--k && ungetc(*k, f) == EOF)
usr.bin/awk/lex.c
636
if (c == EOF)
usr.bin/awk/lib.c
232
isrec = (c == EOF && rr == buf) ? false : true;
usr.bin/awk/lib.c
252
while ((c=getc(inf)) == '\n' && c != EOF) /* skip leading \n's */
usr.bin/awk/lib.c
254
if (c != EOF)
usr.bin/awk/lib.c
258
for (; (c=getc(inf)) != sep && c != EOF; ) {
usr.bin/awk/lib.c
265
if (*rs == sep || c == EOF)
usr.bin/awk/lib.c
267
if ((c = getc(inf)) == '\n' || c == EOF) /* 2 in a row */
usr.bin/awk/lib.c
278
isrec = (c == EOF && rr == buf) ? false : true;
usr.bin/awk/lib.c
303
while ((c = getc(inf)) != EOF) {
usr.bin/awk/lib.c
710
while ((c = input()) != EOF && c != '\0')
usr.bin/awk/lib.c
809
while ((c = input()) != '\n' && c != '\0' && c != EOF) {
usr.bin/awk/main.c
314
return EOF;
usr.bin/awk/main.c
321
if ((c = getc(yyin)) != EOF)
usr.bin/awk/run.c
2215
u = EOF;
usr.bin/awk/run.c
2469
stat = fclose(files[i].fp) == EOF;
usr.bin/awk/run.c
2506
stat = fclose(files[i].fp) == EOF;
usr.bin/calendar/io.c
86
while ((ch = getchar()) != '\n' && ch != EOF);
usr.bin/cmp/special.c
57
if (getc(fp1) == EOF)
usr.bin/cmp/special.c
60
if (getc(fp2) == EOF)
usr.bin/cmp/special.c
66
if (ch1 == EOF || ch2 == EOF)
usr.bin/col/col.c
155
while ((ch = getchar()) != EOF) {
usr.bin/col/col.c
97
if (putchar(ch) == EOF) \
usr.bin/comm/comm.c
149
if (ferror (stdout) || fclose (stdout) == EOF)
usr.bin/compress/gzopen.c
152
return EOF;
usr.bin/compress/gzopen.c
159
return EOF;
usr.bin/compress/gzopen.c
219
while (len-- != 0 && get_byte(s) != EOF)
usr.bin/compress/gzopen.c
226
while ((c = get_byte(s)) != EOF) {
usr.bin/compress/gzopen.c
238
while ((c = get_byte(s)) != EOF) {
usr.bin/compress/main.c
841
while (ch != '\n' && ch != EOF)
usr.bin/compress/zipopen.c
175
if ((c = get_byte(s)) == EOF)
usr.bin/compress/zipopen.c
209
if ((c = get_byte(s)) == EOF)
usr.bin/compress/zipopen.c
240
if (get_byte(s) == EOF)
usr.bin/compress/zipopen.c
247
if (get_byte(s) == EOF)
usr.bin/compress/zipopen.c
72
return EOF;
usr.bin/compress/zipopen.c
78
return EOF;
usr.bin/ctags/C.c
141
if (GETC(==, EOF))
usr.bin/ctags/C.c
210
while (GETC(!=, EOF) && (c == ' ' || c == '\t'))
usr.bin/ctags/C.c
212
if (c == EOF)
usr.bin/ctags/C.c
279
while (GETC(!=, EOF)) {
usr.bin/ctags/C.c
313
while (GETC(!=, EOF) && iswhite(c))
usr.bin/ctags/C.c
316
if (c == EOF)
usr.bin/ctags/C.c
375
while (GETC(!=, EOF) && (c == ' ' || c == '\t'))
usr.bin/ctags/C.c
381
if (GETC(==, EOF))
usr.bin/ctags/C.c
395
if (GETC(==, EOF))
usr.bin/ctags/C.c
406
if (GETC(==, EOF))
usr.bin/ctags/C.c
441
if (GETC(==, EOF))
usr.bin/ctags/C.c
451
if (GETC(==, EOF))
usr.bin/ctags/C.c
464
while (GETC(!=, EOF))
usr.bin/ctags/C.c
487
for (star = 0; GETC(!=, EOF);)
usr.bin/ctags/C.c
523
for (skip = NO; GETC(!=, EOF); )
usr.bin/ctags/C.c
549
for (skip = retval = NO; GETC(!=, EOF);)
usr.bin/ctags/C.c
61
while (GETC(!=, EOF)) {
usr.bin/ctags/ctags.c
199
if (GETC(==, EOF))
usr.bin/ctags/print.c
57
for (cp = lbuf; GETC(!=, EOF) && c != '\n'; *cp++ = c)
usr.bin/ctags/print.c
64
else for (cnt = 0, cp = lbuf; GETC(!=, EOF) && cnt < ENDLINE; ++cnt) {
usr.bin/ctags/yacc.c
100
if (GETC(==, EOF))
usr.bin/ctags/yacc.c
129
for (state = 0; GETC(!=, EOF);)
usr.bin/ctags/yacc.c
54
while (GETC(!=, EOF))
usr.bin/ctags/yacc.c
93
while (GETC(!=, EOF) && (intoken(c) || c == '.'))
usr.bin/cut/cut.c
239
if ((ch = getc(fp)) == EOF)
usr.bin/cut/cut.c
248
while ((ch = getc(fp)) != EOF && ch != '\n')
usr.bin/cut/cut.c
251
while ((ch = getc(fp)) != EOF && ch != '\n')
usr.bin/cvs/add.c
535
if (fputs(logmsg, fp) == EOF) {
usr.bin/cvs/diff_internals.c
1120
if ((c = getc(lb)) == EOF) {
usr.bin/cvs/diff_internals.c
1155
if (t == EOF) {
usr.bin/cvs/diff_internals.c
1164
if (t == EOF) {
usr.bin/cvs/diff_internals.c
1189
case EOF:
usr.bin/cvs/diff_internals.c
679
((c == EOF && d == '\n') ||
usr.bin/cvs/diff_internals.c
680
(c == '\n' && d == EOF))) {
usr.bin/cvs/diff_internals.c
710
if (c != '\n' && c != EOF)
usr.bin/cvs/diff_internals.c
712
if (d != '\n' && c != EOF)
usr.bin/cvs/diff_internals.c
716
if (c == '\n' || c == EOF)
usr.bin/cvs/diff_internals.c
726
if (c != '\n' && c != EOF)
usr.bin/cvs/diff_internals.c
728
if (d != '\n' && c != EOF)
usr.bin/cvs/diff_internals.c
732
if (c == '\n' || c == EOF)
usr.bin/cvs/diff_internals.c
799
for (i = 1; (c = getc(f)) != '\n' && c != EOF; i++)
usr.bin/cvs/diff_internals.c
830
if ((c = getc(f1)) == EOF)
usr.bin/cvs/logmsg.c
247
if (c == EOF || c == '\n' || c == 'a' || c == 'A') {
usr.bin/cvs/rcsparse.c
1122
if (token == EOF || (!(rfp->rf_flags & PARSED_DELTAS) &&
usr.bin/cvs/rcsparse.c
1138
else if (token == EOF)
usr.bin/cvs/rcsparse.c
851
if (c == EOF) {
usr.bin/cvs/rcsparse.c
852
return (EOF);
usr.bin/cvs/rcsparse.c
859
if (c == EOF) {
usr.bin/cvs/rcsparse.c
860
return (EOF);
usr.bin/cvs/rcsparse.c
900
c = EOF;
usr.bin/cvs/rcsparse.c
904
if (c == EOF) {
usr.bin/cvs/rcsparse.c
912
return (EOF);
usr.bin/cvs/rcsparse.c
922
if (ret == EOF && ferror(rfp->rf_file)) {
usr.bin/cvs/rcsparse.c
963
if (c == EOF) {
usr.bin/cvs/util.c
870
while (c != EOF && c != '\n')
usr.bin/dc/bcode.c
1561
case EOF:
usr.bin/dc/bcode.c
1627
if (ch == EOF) {
usr.bin/dc/bcode.c
1677
if (ch == EOF) {
usr.bin/dc/bcode.c
808
if (ch1 == EOF || ch2 == EOF) {
usr.bin/dc/inout.c
104
return EOF;
usr.bin/dc/inout.c
129
if (ch == EOF)
usr.bin/dc/inout.c
190
while ((ch = (*src->vtable->readchar)(src)) != EOF) {
usr.bin/dc/inout.c
242
while ((ch = (*src->vtable->readchar)(src)) != EOF) {
usr.bin/deroff/deroff.c
372
if (c == EOF)
usr.bin/deroff/deroff.c
376
if (c == EOF ||
usr.bin/deroff/deroff.c
377
(c == '\\' && (c = getc(infile)) == EOF))
usr.bin/deroff/deroff.c
89
#define Cget ( (c=getc(infile)) == EOF ? eof() : ((c==ldelim)&&(filesp==files) ? skeqn() : c) )
usr.bin/deroff/deroff.c
90
#define C1get ( (c=getc(infile)) == EOF ? eof() : c)
usr.bin/diff/diffreg.c
1139
if ((c = getc(lb)) == EOF) {
usr.bin/diff/diffreg.c
1187
if (t == EOF) {
usr.bin/diff/diffreg.c
1196
if (t == EOF) {
usr.bin/diff/diffreg.c
1221
case EOF:
usr.bin/diff/diffreg.c
728
if (c == EOF && d == '\n') {
usr.bin/diff/diffreg.c
731
} else if (c == '\n' && d == EOF) {
usr.bin/diff/diffreg.c
763
if (c != '\n' && c != EOF)
usr.bin/diff/diffreg.c
765
if (d != '\n' && c != EOF)
usr.bin/diff/diffreg.c
769
if (c == '\n' || c == EOF)
usr.bin/diff/diffreg.c
779
if (c != '\n' && c != EOF)
usr.bin/diff/diffreg.c
781
if (d != '\n' && c != EOF)
usr.bin/diff/diffreg.c
785
if (c == '\n' || c == EOF)
usr.bin/diff/diffreg.c
852
for (i = 1; (c = getc(f)) != '\n' && c != EOF; i++)
usr.bin/diff/diffreg.c
897
if ((c = getc(f1)) == EOF)
usr.bin/dig/lib/isc/lex.c
244
if (c == EOF) {
usr.bin/dig/lib/isc/lex.c
339
if (c == EOF) {
usr.bin/dig/lib/isc/lex.c
351
c = EOF;
usr.bin/dig/lib/isc/lex.c
359
if (c != EOF) {
usr.bin/dig/lib/isc/lex.c
375
c = EOF;
usr.bin/dig/lib/isc/lex.c
404
if (c == EOF) {
usr.bin/dig/lib/isc/lex.c
439
if (c == '\r' || c == '\n' || c == EOF ||
usr.bin/dig/lib/isc/lex.c
482
if (c == EOF) {
usr.bin/dig/lib/isc/lex.c
490
if (c == EOF) {
usr.bin/dig/lib/isc/lex.c
509
if ((c == '\n') || (c == EOF)) {
usr.bin/dig/lib/isc/lex.c
516
if (c == EOF) {
usr.bin/dig/lib/lwres/lwconfig.c
125
if (ch == EOF)
usr.bin/dig/lib/lwres/lwconfig.c
126
return (EOF);
usr.bin/dig/lib/lwres/lwconfig.c
131
if (ch == EOF || isspace((unsigned char)ch))
usr.bin/dig/lib/lwres/lwconfig.c
134
return (EOF); /* Not enough space. */
usr.bin/dig/lib/lwres/lwconfig.c
206
if (res != EOF && res != '\n')
usr.bin/dig/lib/lwres/lwconfig.c
232
if (res != EOF && res != '\n')
usr.bin/dig/lib/lwres/lwconfig.c
287
if (delim == EOF || delim == '\n')
usr.bin/dig/lib/lwres/lwconfig.c
374
if (delim == EOF || delim == '\n')
usr.bin/dig/lib/lwres/lwconfig.c
402
if (stopchar == EOF)
usr.bin/dig/lib/lwres/lwconfig.c
419
if (stopchar == EOF) {
usr.bin/dig/lib/lwres/lwconfig.c
82
while (ch != '\n' && ch != EOF)
usr.bin/dig/lib/lwres/lwconfig.c
98
while (ch != '\n' && ch != EOF && isspace((unsigned char)ch))
usr.bin/doas/parse.y
252
if (c == EOF)
usr.bin/doas/parse.y
257
case EOF:
usr.bin/doas/parse.y
288
case EOF:
usr.bin/doas/parse.y
326
if (c != EOF)
usr.bin/doas/parse.y
334
if (c == EOF)
usr.bin/expand/expand.c
84
while ((c = getchar()) != EOF) {
usr.bin/find/misc.c
105
if (ch == EOF)
usr.bin/finger/lprint.c
263
while ((ch = getc(fp)) != EOF)
usr.bin/finger/net.c
121
while ((c = getc(fp)) != EOF) {
usr.bin/fmt/fmt.c
686
while ((ch = getc(stream)) != '\n' && ch != EOF) {
usr.bin/fmt/fmt.c
703
return (len > 0 || ch != EOF) ? buf : NULL;
usr.bin/fold/fold.c
158
while (ch != EOF) { /* Loop on input characters. */
usr.bin/fold/fold.c
159
while ((ch = getchar()) != EOF) { /* Loop on input bytes. */
usr.bin/fold/fold.c
209
if (np - cp > (ch != EOF)) {
usr.bin/ftp/cmds.c
1534
if ((c = getchar()) == EOF) {
usr.bin/ftp/cmds.c
1555
while ((c = getchar()) != '\n' && c != EOF)
usr.bin/ftp/cmds.c
1557
if (c == EOF || getchar() == '\n') {
usr.bin/ftp/fetch.c
792
if (fflush(fin) == EOF) {
usr.bin/ftp/ftp.c
1118
if ((ch = fgetc(fout)) == EOF) {
usr.bin/ftp/ftp.c
1139
while ((c = fgetc(din)) != EOF) {
usr.bin/ftp/ftp.c
1159
if (c == EOF)
usr.bin/ftp/ftp.c
473
if (c == EOF) {
usr.bin/ftp/ftp.c
779
while ((c = fgetc(fin)) != EOF) {
usr.bin/ftp/main.c
760
while ((num = getchar()) != '\n' && num != EOF)
usr.bin/ftp/ruserpass.c
188
while ((c = fgetc(cfile)) != EOF)
usr.bin/ftp/ruserpass.c
191
if (c == EOF || c == '\n') {
usr.bin/ftp/ruserpass.c
202
for (i=0; i < 8 && (c = fgetc(cfile)) != EOF &&
usr.bin/ftp/ruserpass.c
206
if (c == EOF) {
usr.bin/ftp/ruserpass.c
213
while ((c = fgetc(cfile)) != EOF && c != '\n');
usr.bin/ftp/ruserpass.c
215
if (c == EOF) {
usr.bin/ftp/ruserpass.c
229
if ((c = fgetc(cfile)) == EOF) {
usr.bin/ftp/ruserpass.c
278
while ((c = fgetc(cfile)) != EOF &&
usr.bin/ftp/ruserpass.c
281
if (c == EOF)
usr.bin/ftp/ruserpass.c
285
while ((c = fgetc(cfile)) != EOF && c != '"') {
usr.bin/ftp/ruserpass.c
286
if (c == '\\' && (c = fgetc(cfile)) == EOF)
usr.bin/ftp/ruserpass.c
296
while ((c = fgetc(cfile)) != EOF
usr.bin/ftp/ruserpass.c
298
if (c == '\\' && (c = fgetc(cfile)) == EOF)
usr.bin/gprof/printgprof.c
646
while ( ( input = getc( blurbfile ) ) != EOF )
usr.bin/head/head.c
122
while ((ch = getc(fp)) != EOF) {
usr.bin/head/head.c
123
if (putchar(ch) == EOF)
usr.bin/hexdump/display.c
350
if (getchar() == EOF)
usr.bin/htpasswd/htpasswd.c
200
if (fclose(in) == EOF)
usr.bin/htpasswd/htpasswd.c
203
if (fclose(out) == EOF) {
usr.bin/indent/args.c
195
(i = getc(f)) != EOF && (*p = i) > ' ' && p + 1 - buf < BUFSIZ;
usr.bin/indent/args.c
204
else if (i == EOF)
usr.bin/indent/io.c
358
if ((i = getc(f)) == EOF) {
usr.bin/lam/lam.c
245
for (p = s; (c = fgetc(ip->fp)) != EOF && p < end; p++)
usr.bin/lam/lam.c
249
if (c == EOF) {
usr.bin/leave/leave.c
154
if (puts("\a\aYou have to leave in 5 minutes.") == EOF)
usr.bin/leave/leave.c
161
if (puts("\a\aJust one more minute!") == EOF)
usr.bin/leave/leave.c
169
if (puts("\a\aTime to leave!") == EOF)
usr.bin/less/lsystem.c
224
if (putc(c, f) == EOF)
usr.bin/less/lsystem.c
235
if (putc(c, f) == EOF)
usr.bin/lex/yylex.c
50
toktype = EOF;
usr.bin/lex/yylex.c
54
if (toktype == EOF || toktype == 0) {
usr.bin/locate/code/locate.code.c
152
if (fputs(bigrams, stdout) == EOF)
usr.bin/locate/code/locate.code.c
193
if (putchar(SWITCH) == EOF ||
usr.bin/locate/code/locate.code.c
194
putw(diffcount, stdout) == EOF)
usr.bin/locate/code/locate.code.c
197
if (putchar(diffcount) == EOF)
usr.bin/locate/code/locate.code.c
209
if (putchar((code / 2) | PARITY) == EOF)
usr.bin/locate/code/locate.code.c
220
if (putchar(UMLAUT) == EOF ||
usr.bin/locate/code/locate.code.c
221
putchar(*cp++) == EOF)
usr.bin/locate/code/locate.code.c
225
if (putchar(*cp++) == EOF)
usr.bin/locate/locate/fastfind.c
56
for (c = getc(fp), count = 0; c != EOF; size++) {
usr.bin/login/login.c
765
if (ch == EOF) {
usr.bin/look/look.c
259
if (putchar(*front) == EOF)
usr.bin/look/look.c
261
if (putchar('\n') == EOF)
usr.bin/m4/eval.c
453
while ((c = gpbc()) != '\n' && c != EOF)
usr.bin/m4/eval.c
740
while ((c = getc(pf)) != EOF)
usr.bin/m4/gnum4.c
680
while ((c = getc(f))!= EOF)
usr.bin/m4/main.c
313
if (t == EOF || (unsigned char)t != (unsigned char)*token) {
usr.bin/m4/main.c
323
#define LOOK_AHEAD(t, token) (t != EOF && \
usr.bin/m4/main.c
357
} else if (l == EOF) {
usr.bin/m4/main.c
383
if (t == EOF)
usr.bin/m4/main.c
424
} else if (t == EOF) {
usr.bin/m4/main.c
494
if (t == EOF)
usr.bin/m4/main.c
561
if (c != EOF)
usr.bin/m4/misc.c
234
while ((c = getc(outfile[n])) != EOF)
usr.bin/m4/misc.c
393
if (f->c == EOF)
usr.bin/m4/misc.c
394
return EOF;
usr.bin/m4/misc.c
428
f->c = EOF;
usr.bin/m4/misc.c
85
if (c == EOF)
usr.bin/mail/collect.c
320
while ((t = getc(fbuf)) != EOF)
usr.bin/mail/collect.c
332
while ((t = getc(collf)) != EOF)
usr.bin/mail/collect.c
411
while ((c = getc(fp)) != EOF) {
usr.bin/mail/collect.c
593
while ((c = getc(fp)) != EOF)
usr.bin/mail/edit.c
117
while ((c = getc(fp)) != EOF) {
usr.bin/mail/edit.c
123
if (putc(c, otf) == EOF)
usr.bin/mail/edit.c
169
while (--size >= 0 && (t = getc(fp)) != EOF)
usr.bin/mail/edit.c
172
while ((t = getc(fp)) != EOF)
usr.bin/mail/names.c
256
while ((c = getc(fo)) != EOF)
usr.bin/mail/names.c
314
while ((c = getc(fin)) != EOF)
usr.bin/mail/quit.c
118
while ((c = getc(fbuf)) != EOF)
usr.bin/mail/quit.c
124
if (c == EOF)
usr.bin/mail/quit.c
212
while ((c = getc(abuf)) != EOF)
usr.bin/mail/quit.c
262
while (c != EOF) {
usr.bin/mail/quit.c
305
while ((c = getc(rbuf)) != EOF)
usr.bin/mail/quit.c
349
while ((c = getc(res)) != EOF)
usr.bin/mail/quit.c
363
while ((c = getc(res)) != EOF)
usr.bin/mail/quit.c
432
while ((c = getc(ibuf)) != EOF)
usr.bin/mail/quit.c
465
while ((c = getc(ibuf)) != EOF)
usr.bin/mail/send.c
244
if ((c = getc(ibuf)) != EOF && putc(c, obuf) == EOF)
usr.bin/mail/send.c
487
while (c != EOF) {
usr.bin/make/lowparse.c
243
return EOF;
usr.bin/make/lowparse.c
254
return EOF;
usr.bin/make/lowparse.c
260
} while (c != '\n' && c != EOF);
usr.bin/make/lowparse.c
279
if (c == EOF)
usr.bin/make/lowparse.c
298
if (c == EOF)
usr.bin/make/lowparse.c
329
if (c == EOF) {
usr.bin/make/lowparse.c
384
if (c == EOF)
usr.bin/make/lowparse.c
415
if (c == EOF)
usr.bin/make/lowparse.c
446
if (c == EOF)
usr.bin/mandoc/dba_write.c
106
if (fputs(str, ofp) == EOF)
usr.bin/mandoc/dba_write.c
43
return fclose(ofp) == EOF ? -1 : 0;
usr.bin/mandoc/dba_write.c
99
if (putc(c, ofp) == EOF)
usr.bin/mandoc/main.c
1090
if (fflush(stdout) == EOF) {
usr.bin/mg/dired.c
728
while ((c = getc(fin)) != EOF &&
usr.bin/mg/fileio.c
187
while ((c = getc(ffp)) != EOF && c != *curbp->b_nlchr) {
usr.bin/mg/fileio.c
192
if (c == EOF && ferror(ffp) != FALSE) {
usr.bin/mg/fileio.c
198
return (c == EOF ? FIOEOF : FIOSUC);
usr.bin/mg/util.c
81
cbyte = EOF;
usr.bin/newsyslog/newsyslog.c
1367
while ((i = getc(src)) != EOF) {
usr.bin/newsyslog/newsyslog.c
1368
if ((putc(i, dst)) == EOF)
usr.bin/newsyslog/newsyslog.c
920
if (fclose(f) == EOF)
usr.bin/patch/pch.c
477
} while (c != EOF && c != '\n');
usr.bin/patch/pch.c
481
if (c != EOF)
usr.bin/pkgconf/libpkgconf/fileio.c
112
return !(c == EOF || ferror(stream));
usr.bin/pkgconf/libpkgconf/fileio.c
25
while ((c = getc(stream)) != EOF)
usr.bin/pkgconf/libpkgconf/fileio.c
38
} while (c != '\n' && c != EOF);
usr.bin/pkill/pkill.c
486
while (ch != '\n' && ch != EOF)
usr.bin/pr/pr.c
1156
while ((--lim >= 0) && ((ch = getc(inf)) != EOF)) {
usr.bin/pr/pr.c
1170
if ((col > lim) && (ungetc(ch, inf) == EOF)) {
usr.bin/pr/pr.c
1190
while ((--lim >= 0) && ((ch = getc(inf)) != EOF)) {
usr.bin/pr/pr.c
1197
if (ch == EOF) {
usr.bin/pr/pr.c
1226
while ((ch = getc(inf)) != EOF) {
usr.bin/pr/pr.c
1310
if (putchar(ochar) == EOF) {
usr.bin/pr/pr.c
1321
if (putchar(' ') == EOF) {
usr.bin/pr/pr.c
1331
if (putchar(*buf++) == EOF) {
usr.bin/pr/pr.c
1362
if (putchar(ochar) == EOF) {
usr.bin/pr/pr.c
1373
if (putchar(' ') == EOF) {
usr.bin/pr/pr.c
1396
if ((putchar('\n') == EOF) || (dspace && (putchar('\n') == EOF))) {
usr.bin/pr/pr.c
1568
if ((putchar('\n') == EOF) || (putchar('\n') == EOF)) {
usr.bin/pr/pr.c
1617
if (putchar('\n') == EOF) {
usr.bin/pr/pr.c
1621
if (putchar('\n') == EOF) {
usr.bin/pr/pr.c
1630
if (putchar(OUTFF) == EOF) {
usr.bin/pr/pr.c
1659
if (putchar('\n') == EOF) {
usr.bin/pr/pr.c
1663
if (putchar(OUTFF) == EOF) {
usr.bin/pr/pr.c
1675
if (putchar('\n') == EOF) {
usr.bin/rcs/diff.c
1051
if ((c = getc(lb)) == EOF) {
usr.bin/rcs/diff.c
1085
if (t == EOF) {
usr.bin/rcs/diff.c
1094
if (t == EOF) {
usr.bin/rcs/diff.c
1119
case EOF:
usr.bin/rcs/diff.c
661
((c == EOF && d == '\n') ||
usr.bin/rcs/diff.c
662
(c == '\n' && d == EOF))) {
usr.bin/rcs/diff.c
692
if (c != '\n' && c != EOF)
usr.bin/rcs/diff.c
694
if (d != '\n' && c != EOF)
usr.bin/rcs/diff.c
698
if (c == '\n' || c == EOF)
usr.bin/rcs/diff.c
708
if (c != '\n' && c != EOF)
usr.bin/rcs/diff.c
710
if (d != '\n' && c != EOF)
usr.bin/rcs/diff.c
714
if (c == '\n' || c == EOF)
usr.bin/rcs/diff.c
781
for (i = 1; (c = getc(f)) != '\n' && c != EOF; i++)
usr.bin/rcs/diff.c
812
if ((c = getc(f1)) == EOF)
usr.bin/rcs/ident.c
100
for (c = 0; c != EOF; c = getc(fp)) {
usr.bin/rcs/ident.c
124
if (c == EOF)
usr.bin/rcs/ident.c
136
if (c == EOF)
usr.bin/rcs/rcsparse.c
1120
if (token == EOF || (!(rfp->rf_flags & PARSED_DELTAS) &&
usr.bin/rcs/rcsparse.c
1136
else if (token == EOF)
usr.bin/rcs/rcsparse.c
851
if (c == EOF) {
usr.bin/rcs/rcsparse.c
852
return (EOF);
usr.bin/rcs/rcsparse.c
859
if (c == EOF) {
usr.bin/rcs/rcsparse.c
860
return (EOF);
usr.bin/rcs/rcsparse.c
900
c = EOF;
usr.bin/rcs/rcsparse.c
904
if (c == EOF) {
usr.bin/rcs/rcsparse.c
912
return (EOF);
usr.bin/rcs/rcsparse.c
921
if (ret == EOF && ferror(rfp->rf_file)) {
usr.bin/rcs/rcsparse.c
962
if (c == EOF) {
usr.bin/rcs/rcsutil.c
564
if (c == defc || c == '\n' || (c == EOF && feof(stdin)))
usr.bin/rcs/rcsutil.c
569
while (c != EOF && c != '\n')
usr.bin/rdist/gram.y
238
case EOF: /* end of file */
usr.bin/rdist/gram.y
242
while ((c = getc(fin)) != EOF && c != '\n')
usr.bin/rdist/gram.y
244
if (c == EOF)
usr.bin/rdist/gram.y
282
if (c == EOF || c == '"')
usr.bin/rdist/gram.y
285
if ((c = getc(fin)) == EOF) {
usr.bin/rdist/gram.y
316
if ((c = getc(fin)) != EOF) {
usr.bin/rdist/gram.y
326
if (c == EOF || any(c, " \"'\t()=;:\n")) {
usr.bin/rdistd/server.c
819
if (c == EOF) {
usr.bin/rev/rev.c
119
if (putchar(*u) == EOF)
usr.bin/rev/rev.c
122
if (putchar('\n') == EOF)
usr.bin/rs/rs.c
131
if (get_line() == EOF)
usr.bin/rs/rs.c
136
if (get_line() == EOF)
usr.bin/rs/rs.c
184
} while (get_line() != EOF);
usr.bin/rs/rs.c
319
if ((curlen = getline(&curline, &cursz, stdin)) == EOF) {
usr.bin/rs/rs.c
322
return EOF;
usr.bin/sdiff/sdiff.c
347
while (parsecmd(diffpipe, file1, file2) != EOF)
usr.bin/sdiff/sdiff.c
622
return (EOF);
usr.bin/sed/main.c
364
if (infile != NULL && (c = getc(infile)) != EOF) {
usr.bin/sed/main.c
498
if ((ch = getc(file_fd)) != EOF) {
usr.bin/sed/main.c
522
if ((ch = getc(infile)) == EOF) {
usr.bin/sendbug/sendbug.c
154
if (fflush(fp) == EOF || fstat(fd, &sb) == -1 || fclose(fp) == EOF)
usr.bin/sendbug/sendbug.c
172
case EOF:
usr.bin/sendbug/sendbug.c
310
if (ret == EOF || ret == '\n')
usr.bin/sendbug/sendbug.c
314
} while (c != EOF && c != '\n');
usr.bin/sort/bwstring.c
523
if (c == EOF) {
usr.bin/spell/spellprog.c
313
if (ch == EOF) {
usr.bin/ssh/ssh-keygen.c
566
while ((c = fgetc(fp)) != EOF) {
usr.bin/ssh/ssh-keygen.c
572
if (c != EOF && c != '\n' && ungetc(c, fp) == EOF)
usr.bin/ssh/utf8.c
277
if (fputs(str, stream) == EOF)
usr.bin/su/su.c
465
if (ch == EOF)
usr.bin/tail/forward.c
111
if ((ch = getc(tf[i].fp)) == EOF) {
usr.bin/tail/forward.c
123
if ((ch = getc(tf[i].fp)) == EOF) {
usr.bin/tail/forward.c
142
while (getc(tf[i].fp) != EOF)
usr.bin/tail/forward.c
164
while (getc(tf[i].fp) != EOF)
usr.bin/tail/forward.c
255
ch = EOF;
usr.bin/tail/forward.c
264
else if (ch == EOF) {
usr.bin/tail/forward.c
273
if (pos < 0 && off > 0 && ch != EOF && ungetc(ch, tf[0].fp) == EOF) {
usr.bin/tail/forward.c
278
while (!feof(tf[0].fp) && (ch = getc(tf[0].fp)) != EOF)
usr.bin/tail/forward.c
279
if (putchar(ch) == EOF)
usr.bin/tail/forward.c
294
while (!feof(fp) && (ch = getc(fp)) != EOF)
usr.bin/tail/forward.c
295
if (putchar(ch) == EOF)
usr.bin/tail/read.c
156
while ((ch = getc(tf->fp)) != EOF) {
usr.bin/tail/read.c
76
for (wrap = 0, ep = p + off; (ch = getc(tf->fp)) != EOF;) {
usr.bin/tail/reverse.c
125
ch = EOF;
usr.bin/tail/reverse.c
144
else if (ch == EOF) {
usr.bin/tail/reverse.c
150
if (ch != EOF && ungetc(ch, tf->fp) == EOF) {
usr.bin/tail/reverse.c
213
len < BSZ && (ch = getc(fp)) != EOF; ++len)
usr.bin/tail/reverse.c
228
if (ch == EOF)
usr.bin/tail/reverse.c
50
if ((ch = getc(tf->fp)) == EOF) { \
usr.bin/tail/reverse.c
54
if (putchar(ch) == EOF) { \
usr.bin/tftp/tftpsubs.c
160
if (c == EOF)
usr.bin/tic/tic.c
1053
if (ch == EOF || ferror(tmp_fp)) {
usr.bin/tic/tic.c
1079
while ((c = fgetc(tmp_fp)) != EOF) {
usr.bin/tmux/cmd-parse.y
1182
ch = EOF;
usr.bin/tmux/cmd-parse.y
1196
else if (ps->off > 0 && ch != EOF)
usr.bin/tmux/cmd-parse.y
1242
while ((ch = yylex_getc()) != EOF && strchr(" \t\n", ch) == NULL);
usr.bin/tmux/cmd-parse.y
1267
if (ch == EOF) {
usr.bin/tmux/cmd-parse.y
1323
while (next != '\n' && next != EOF)
usr.bin/tmux/cmd-parse.y
1402
if ((ch = yylex_getc()) == EOF || ch == '\n')
usr.bin/tmux/cmd-parse.y
1405
if ((ch = yylex_getc()) == EOF || ch == '\n')
usr.bin/tmux/cmd-parse.y
1460
case EOF:
usr.bin/tmux/cmd-parse.y
1505
if (ch == EOF || ch == '\n')
usr.bin/tmux/cmd-parse.y
1539
if (ch == EOF)
usr.bin/tmux/cmd-parse.y
1556
if (ch == EOF || !yylex_is_var(ch, 0)) {
usr.bin/tmux/cmd-parse.y
1593
if (ch == EOF || strchr("/ \t\n\"'", ch) != NULL) {
usr.bin/tmux/cmd-parse.y
1641
if (ch == EOF) {
usr.bin/tmux/cmd-parse.y
1685
while ((ch = yylex_getc()) != '\n' && ch != EOF)
usr.bin/top/display.c
275
if (fputs(" ", stdout) == EOF)
usr.bin/top/display.c
515
if (fputs(text, stdout) == EOF)
usr.bin/top/display.c
561
if (fputs("\n\n", stdout) == EOF)
usr.bin/top/display.c
641
if (putchar('\7') == EOF)
usr.bin/top/display.c
644
if (fputs("\b \b", stdout) == EOF)
usr.bin/top/display.c
653
if (putchar('\7') == EOF)
usr.bin/top/display.c
657
if (putchar(ch) == EOF)
usr.bin/top/display.h
55
#define putr() do { if (!smart_terminal) if (putchar('\r') == EOF) exit(1); } \
usr.bin/top/display.h
57
#define putn() do { if (!smart_terminal) if (putchar('\n') == EOF) exit(1); } \
usr.bin/tr/tr.c
128
for (lastch = OOBCH; (ch = getchar()) != EOF;)
usr.bin/tr/tr.c
146
while ((ch = getchar()) != EOF)
usr.bin/tr/tr.c
159
for (lastch = OOBCH; (ch = getchar()) != EOF;)
usr.bin/tr/tr.c
205
for (lastch = OOBCH; (ch = getchar()) != EOF;) {
usr.bin/tr/tr.c
213
while ((ch = getchar()) != EOF)
usr.bin/ts/ts.c
112
for (prev = '\n'; (ch = getchar()) != EOF; prev = ch) {
usr.bin/ts/ts.c
125
if (putchar(ch) == EOF)
usr.bin/ul/ul.c
531
return (putwchar(c) != WEOF ? c : EOF);
usr.bin/unifdef/unifdef.c
710
if (fputs(tline, output) == EOF)
usr.bin/unifdef/unifdef.c
716
if (lnblank && fputs(newline, output) == EOF)
usr.bin/unifdef/unifdef.c
722
if (debugging && fflush(output) == EOF)
usr.bin/unifdef/unifdef.c
752
if (output != NULL && (ferror(output) || fclose(output) == EOF))
usr.bin/unvis/unvis.c
83
while ((c = getc(fp)) != EOF) {
usr.bin/usbhidaction/usbhidaction.c
224
if (c != EOF)
usr.bin/uudecode/uudecode.c
172
if (v == EOF) {
usr.bin/uudecode/uudecode.c
178
if (v == EOF)
usr.bin/uudecode/uudecode.c
199
return (EOF);
usr.bin/uuencode/uuencode.c
184
if (fputc(ch, output) == EOF)
usr.bin/uuencode/uuencode.c
195
if (fputc(ch, output) == EOF)
usr.bin/uuencode/uuencode.c
199
if (fputc(ch, output) == EOF)
usr.bin/uuencode/uuencode.c
203
if (fputc(ch, output) == EOF)
usr.bin/uuencode/uuencode.c
207
if (fputc(ch, output) == EOF)
usr.bin/uuencode/uuencode.c
210
if (fputc('\n', output) == EOF)
usr.bin/vi/ex/ex_argv.c
666
for (p = bp, len = 0, ch = EOF;
usr.bin/vi/ex/ex_argv.c
667
(ch = getc(ifp)) != EOF; *p++ = ch, --blen, ++len)
usr.bin/vi/ex/ex_util.c
86
if ((ch = getc(fp)) == EOF && !feof(fp)) {
usr.bin/vi/ex/ex_util.c
94
if (ch == EOF || ch == '\n') {
usr.bin/vi/ex/ex_util.c
95
if (ch == EOF && !off)
usr.bin/vis/vis.c
138
while (c != EOF) {
usr.bin/what/what.c
125
while ((c = getchar()) != EOF && c && c != '"' &&
usr.bin/what/what.c
99
while ((c = getchar()) != EOF) {
usr.bin/write/write.c
297
#define PUTC(c) if (putchar(c) == EOF) goto err;
usr.bin/xargs/xargs.c
265
case EOF:
usr.bin/xargs/xargs.c
304
if (((zflag && ch != EOF) || argp != p || wasquoted) &&
usr.bin/xargs/xargs.c
348
if (xp == endxp || p > ebp || ch == EOF ||
usr.bin/xargs/xargs.c
357
if (ch == EOF || foundeof) {
usr.bin/xargs/xargs.c
384
if (!insingle && !indouble && (ch = getchar()) == EOF)
usr.bin/yacc/output.c
1085
if ((c = getc(in)) == EOF)
usr.bin/yacc/output.c
1108
while ((c = getc(in)) != EOF) {
usr.bin/yacc/output.c
1132
if ((c = getc(action_file)) == EOF)
usr.bin/yacc/output.c
1140
while ((c = getc(action_file)) != EOF) {
usr.bin/yacc/output.c
836
while ((c = getc(union_file)) != EOF)
usr.bin/yacc/output.c
854
if ((c = getc(in)) == EOF)
usr.bin/yacc/output.c
860
while ((c = getc(in)) != EOF) {
usr.bin/yacc/reader.c
1020
if (c == EOF)
usr.bin/yacc/reader.c
1045
if (c == EOF)
usr.bin/yacc/reader.c
1190
if (c == EOF)
usr.bin/yacc/reader.c
129
if (saw_eof || (c = getc(f)) == EOF) {
usr.bin/yacc/reader.c
1544
if (c == EOF)
usr.bin/yacc/reader.c
160
if (c == EOF) {
usr.bin/yacc/reader.c
226
return (EOF);
usr.bin/yacc/reader.c
234
return (EOF);
usr.bin/yacc/reader.c
261
return (EOF);
usr.bin/yacc/reader.c
343
if (c == EOF)
usr.bin/yacc/reader.c
843
if (c == EOF)
usr.bin/yacc/reader.c
856
if (c == EOF)
usr.bin/yacc/reader.c
896
if (c == EOF)
usr.bin/yacc/reader.c
901
if (c == EOF)
usr.bin/yacc/reader.c
928
if (c == EOF)
usr.bin/yacc/reader.c
936
if (c == EOF)
usr.bin/yacc/reader.c
959
if (c == EOF)
usr.bin/yacc/reader.c
976
if (c == EOF)
usr.bin/yacc/reader.c
991
if (c == EOF)
usr.sbin/acme-client/parse.y
574
if ((c = igetc()) == EOF) {
usr.sbin/acme-client/parse.y
577
if (file == topfile || popfile() == EOF)
usr.sbin/acme-client/parse.y
578
return (EOF);
usr.sbin/acme-client/parse.y
594
if (c == EOF) {
usr.sbin/acme-client/parse.y
604
while (c == EOF) {
usr.sbin/acme-client/parse.y
605
if (file == topfile || popfile() == EOF)
usr.sbin/acme-client/parse.y
606
return (EOF);
usr.sbin/acme-client/parse.y
616
if (c == EOF)
usr.sbin/acme-client/parse.y
641
if (c == EOF)
usr.sbin/acme-client/parse.y
662
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/acme-client/parse.y
666
if ((c = lgetc(0)) == EOF)
usr.sbin/acme-client/parse.y
701
if ((c = lgetc(quotec)) == EOF)
usr.sbin/acme-client/parse.y
707
if ((next = lgetc(quotec)) == EOF)
usr.sbin/acme-client/parse.y
746
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/acme-client/parse.y
750
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/acme-client/parse.y
785
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/acme-client/parse.y
798
if (c == EOF)
usr.sbin/acme-client/parse.y
851
return (file ? 0 : EOF);
usr.sbin/amd/amd/info_file.c
69
while ((ch = getc(fp)) != EOF &&
usr.sbin/authpf/authpf.c
444
} while (fputs(buf, stdout) != EOF && !feof(f));
usr.sbin/authpf/authpf.c
628
while (fputs(tmp, stdout) != EOF && !feof(f)) {
usr.sbin/bgpctl/json.c
261
eb = putc(c, jsonfh) == EOF;
usr.sbin/bgpd/parse.y
3739
if ((c = igetc()) == EOF) {
usr.sbin/bgpd/parse.y
3742
if (file == topfile || popfile() == EOF)
usr.sbin/bgpd/parse.y
3743
return (EOF);
usr.sbin/bgpd/parse.y
3759
if (c == EOF) {
usr.sbin/bgpd/parse.y
3769
while (c == EOF) {
usr.sbin/bgpd/parse.y
3770
if (file == topfile || popfile() == EOF)
usr.sbin/bgpd/parse.y
3771
return (EOF);
usr.sbin/bgpd/parse.y
3781
if (c == EOF)
usr.sbin/bgpd/parse.y
3806
if (c == EOF)
usr.sbin/bgpd/parse.y
3821
if ((c = lgetc('$')) == EOF)
usr.sbin/bgpd/parse.y
3865
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/bgpd/parse.y
3879
if ((c = lgetc(quotec)) == EOF)
usr.sbin/bgpd/parse.y
3885
if ((next = lgetc(quotec)) == EOF)
usr.sbin/bgpd/parse.y
3944
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/bgpd/parse.y
3948
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/bgpd/parse.y
3989
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/bgpd/parse.y
4001
if (c == EOF)
usr.sbin/bgpd/parse.y
4073
return (file ? 0 : EOF);
usr.sbin/btrace/bt_parse.y
1009
case EOF:
usr.sbin/btrace/bt_parse.y
1013
while ((c = lgetc()) != EOF) {
usr.sbin/btrace/bt_parse.y
1048
if (c == EOF) {
usr.sbin/btrace/bt_parse.y
1069
} while ((c = lgetc()) != EOF &&
usr.sbin/btrace/bt_parse.y
1072
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/btrace/bt_parse.y
1104
} while ((c = lgetc()) != EOF && (allowed_in_string(c)));
usr.sbin/btrace/bt_parse.y
1136
if (c == EOF)
usr.sbin/btrace/bt_parse.y
796
return EOF;
usr.sbin/btrace/bt_parse.y
808
return EOF;
usr.sbin/btrace/bt_parse.y
851
for (c = lgetc(); c != EOF; c = lgetc()) {
usr.sbin/btrace/bt_parse.y
864
for (pc = 0, c = lgetc(); c != EOF; c = lgetc()) {
usr.sbin/btrace/bt_parse.y
951
} while ((c = lgetc()) != EOF && isdigit(c));
usr.sbin/btrace/bt_parse.y
954
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/btrace/bt_parse.y
974
} while ((c = lgetc()) != EOF && allowed_in_string(c));
usr.sbin/btrace/bt_parse.y
994
} while ((c = lgetc()) != EOF && allowed_in_string(c));
usr.sbin/config/main.c
727
fclose(fp) == EOF)
usr.sbin/config/misc.c
102
if (ch == EOF || first == EOF)
usr.sbin/config/misc.c
90
if (verbose || (cmdfp && ch != EOF)) {
usr.sbin/config/misc.c
94
while (ch != '\n' && ch != EOF) {
usr.sbin/config/mkioconf.c
136
#include <sys/device.h>\n", ofp) == EOF)
usr.sbin/config/mkioconf.c
340
if (v == 0 && fputs("root", fp) == EOF)
usr.sbin/config/mkioconf.c
347
if (fputs(" */\n", fp) == EOF)
usr.sbin/config/mkioconf.c
386
return (fputs(" {(const struct cfattach *)-1}\n};\n", fp) == EOF);
usr.sbin/config/mkioconf.c
398
if (fputs("\nshort cfroots[] = {\n", fp) == EOF)
usr.sbin/config/mkioconf.c
411
if (fputs("\t-1\n};\n", fp) == EOF)
usr.sbin/config/mkioconf.c
427
if (fputs("\n/* pseudo-devices */\n", fp) == EOF)
usr.sbin/config/mkioconf.c
433
if (fputs("\nchar *pdevnames[] = {\n", fp) == EOF)
usr.sbin/config/mkioconf.c
441
if (fputs("};\n", fp) == EOF)
usr.sbin/config/mkioconf.c
445
if (fputs("\nstruct pdevinit pdevinit[] = {\n", fp) == EOF)
usr.sbin/config/mkioconf.c
456
return (fputs("\t{ NULL, 0 }\n};\n", fp) == EOF);
usr.sbin/config/mkioconf.c
71
#define NEWLINE if (putc('\n', fp) == EOF) return (1)
usr.sbin/config/mkmakefile.c
129
if (fclose(ofp) == EOF) {
usr.sbin/config/mkmakefile.c
246
if (fputs("IDENT=", fp) == EOF)
usr.sbin/config/mkmakefile.c
259
if (putc('\n', fp) == EOF)
usr.sbin/config/mkmakefile.c
280
"config:\n", fp) == EOF)
usr.sbin/config/mkmakefile.c
285
if (fputs("-p ", fp) == EOF)
usr.sbin/config/mkmakefile.c
310
if (fputs("OBJS=", fp) == EOF)
usr.sbin/config/mkmakefile.c
321
if (fputs(" \\\n", fp) == EOF)
usr.sbin/config/mkmakefile.c
336
if (fputs(" \\\n", fp) == EOF)
usr.sbin/config/mkmakefile.c
346
if (putc('\n', fp) == EOF)
usr.sbin/config/mkmakefile.c
388
if (fputs(" \\\n", fp) == EOF)
usr.sbin/config/mkmakefile.c
399
if (putc('\n', fp) == EOF)
usr.sbin/config/mkmakefile.c
476
if (fputs("all:", fp) == EOF)
usr.sbin/config/mkmakefile.c
482
if (fputs("\n\n", fp) == EOF)
usr.sbin/config/mkmakefile.c
491
if (fputs(" vers.o", fp) == EOF)
usr.sbin/config/mkmakefile.c
509
if (fputs("\t${NORMAL_C}\n\n", fp) == EOF)
usr.sbin/config/mkmakefile.c
99
if (fputs(line, ofp) == EOF)
usr.sbin/config/mkswap.c
100
#include <sys/systm.h>\n\n", fp) == EOF)
usr.sbin/config/mkswap.c
110
if (fputs("\ndev_t\tswdevt[] = {\n", fp) == EOF)
usr.sbin/config/mkswap.c
116
if (fputs("\tNODEV\n};\n\n", fp) == EOF)
usr.sbin/cron/crontab.c
307
if (fflush(NewCrontab) == EOF)
usr.sbin/cron/crontab.c
466
while (EOF != (ch = get_char(NewCrontab)))
usr.sbin/cron/crontab.c
514
if (fclose(tmp) == EOF) {
usr.sbin/cron/crontab.c
620
while (EOF != (ch = get_char(f))) {
usr.sbin/cron/crontab.c
625
while (EOF != (ch = get_char(f)))
usr.sbin/cron/crontab.c
634
if (EOF != ch)
usr.sbin/cron/crontab.c
635
while (EOF != (ch = get_char(f)))
usr.sbin/cron/do_command.c
360
if (ch != EOF) {
usr.sbin/cron/do_command.c
419
while ((ch = getc(in)) != EOF) {
usr.sbin/cron/entry.c
115
if (ch == EOF)
usr.sbin/cron/entry.c
205
if (ch == EOF || ch == '\n') {
usr.sbin/cron/entry.c
214
if (ch == EOF) {
usr.sbin/cron/entry.c
226
if (ch == EOF) {
usr.sbin/cron/entry.c
238
if (ch == EOF) {
usr.sbin/cron/entry.c
248
if (ch == EOF) {
usr.sbin/cron/entry.c
260
if (ch == EOF) {
usr.sbin/cron/entry.c
284
if (ch == EOF || ch == '\n' || ch == '*') {
usr.sbin/cron/entry.c
377
case EOF:
usr.sbin/cron/entry.c
403
if (ch == EOF) {
usr.sbin/cron/entry.c
452
if ((ch = get_range(bits, low, high, names, ch, file)) == EOF)
usr.sbin/cron/entry.c
453
return (EOF);
usr.sbin/cron/entry.c
488
if (ch == EOF)
usr.sbin/cron/entry.c
489
return (EOF);
usr.sbin/cron/entry.c
493
if (ch == EOF)
usr.sbin/cron/entry.c
494
return (EOF);
usr.sbin/cron/entry.c
502
if (ch == EOF)
usr.sbin/cron/entry.c
503
return (EOF);
usr.sbin/cron/entry.c
508
if (ch == EOF || num1 > num2)
usr.sbin/cron/entry.c
509
return (EOF);
usr.sbin/cron/entry.c
515
if (ch == EOF)
usr.sbin/cron/entry.c
516
return (EOF);
usr.sbin/cron/entry.c
521
if (ch == EOF) {
usr.sbin/cron/entry.c
527
return (EOF);
usr.sbin/cron/entry.c
530
if (ch == EOF || num1 > num2) {
usr.sbin/cron/entry.c
532
return (EOF);
usr.sbin/cron/entry.c
538
return (EOF);
usr.sbin/cron/entry.c
555
if (set_element(bits, low, high, num1) == EOF) {
usr.sbin/cron/entry.c
557
return (EOF);
usr.sbin/cron/entry.c
571
if (ch == EOF)
usr.sbin/cron/entry.c
572
return (EOF);
usr.sbin/cron/entry.c
580
if (ch == EOF || num3 == 0)
usr.sbin/cron/entry.c
581
return (EOF);
usr.sbin/cron/entry.c
600
if (set_range(bits, low, high, num1, num2, num3) == EOF) {
usr.sbin/cron/entry.c
602
return (EOF);
usr.sbin/cron/entry.c
660
return (EOF);
usr.sbin/cron/entry.c
668
return (EOF);
usr.sbin/cron/entry.c
681
return (EOF);
usr.sbin/cron/entry.c
689
return (EOF);
usr.sbin/cron/env.c
168
if (get_string(envstr, MAX_ENVSTR, f, "\n") == EOF)
usr.sbin/cron/macros.h
39
while (c!='\t' && c!=' ' && c!='\n' && c != EOF) \
usr.sbin/cron/misc.c
110
while (ch != '\n' && ch != EOF)
usr.sbin/cron/misc.c
117
if (ch != EOF)
usr.sbin/cron/misc.c
70
while ((ch = get_char(file)) != EOF && !strchr(terms, ch)) {
usr.sbin/cron/misc.c
90
while ((ch = get_char(file)) != EOF) {
usr.sbin/cron/misc.c
97
if (ch == EOF)
usr.sbin/dhcpd/conflex.c
115
} else if (c != EOF) {
usr.sbin/dhcpd/conflex.c
218
if (c == EOF)
usr.sbin/dhcpd/conflex.c
238
if (c != '"' && c != EOF && bs == 0)
usr.sbin/dhcpd/conflex.c
241
} while (i < (sizeof(tokbuf) - 1) && c != EOF && c != '"');
usr.sbin/dhcpd/conflex.c
243
if (c == EOF)
usr.sbin/dhcpd/confpars.c
1290
else if (token == EOF) {
usr.sbin/dhcpd/confpars.c
143
if (token == EOF)
usr.sbin/dhcpd/confpars.c
565
if (token == EOF) {
usr.sbin/dhcpd/confpars.c
629
} else if (token == EOF) {
usr.sbin/dhcpd/confpars.c
706
} else if (token == EOF) {
usr.sbin/dhcpd/confpars.c
781
} else if (token == EOF) {
usr.sbin/dhcpd/confpars.c
840
} else if (token == EOF) {
usr.sbin/dhcpd/confpars.c
95
if (token == EOF)
usr.sbin/dhcpd/db.c
113
if (fputc(';', db_file) == EOF)
usr.sbin/dhcpd/db.c
149
if (fputs("\n}\n", db_file) == EOF)
usr.sbin/dhcpd/db.c
170
if (fflush(db_file) == EOF) {
usr.sbin/dhcpd/dhctoken.h
99
(x) != EOF)
usr.sbin/dhcpd/parse.c
113
} while (token != EOF);
usr.sbin/dhcpd/parse.c
350
if (token == EOF) {
usr.sbin/dvmrpd/parse.y
449
if ((c = getc(file->stream)) == EOF) {
usr.sbin/dvmrpd/parse.y
452
if (file == topfile || popfile() == EOF)
usr.sbin/dvmrpd/parse.y
453
return (EOF);
usr.sbin/dvmrpd/parse.y
469
while (c == EOF) {
usr.sbin/dvmrpd/parse.y
470
if (file == topfile || popfile() == EOF)
usr.sbin/dvmrpd/parse.y
471
return (EOF);
usr.sbin/dvmrpd/parse.y
480
if (c == EOF)
usr.sbin/dvmrpd/parse.y
481
return (EOF);
usr.sbin/dvmrpd/parse.y
488
return (EOF);
usr.sbin/dvmrpd/parse.y
510
if (c == EOF)
usr.sbin/dvmrpd/parse.y
531
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/dvmrpd/parse.y
535
if ((c = lgetc(0)) == EOF)
usr.sbin/dvmrpd/parse.y
565
if ((c = lgetc(quotec)) == EOF)
usr.sbin/dvmrpd/parse.y
571
if ((next = lgetc(quotec)) == EOF)
usr.sbin/dvmrpd/parse.y
610
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/dvmrpd/parse.y
614
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/dvmrpd/parse.y
649
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/dvmrpd/parse.y
661
if (c == EOF)
usr.sbin/dvmrpd/parse.y
730
return (file ? 0 : EOF);
usr.sbin/eigrpd/parse.y
687
if ((c = igetc()) == EOF) {
usr.sbin/eigrpd/parse.y
690
if (file == topfile || popfile() == EOF)
usr.sbin/eigrpd/parse.y
691
return (EOF);
usr.sbin/eigrpd/parse.y
707
if (c == EOF) {
usr.sbin/eigrpd/parse.y
717
while (c == EOF) {
usr.sbin/eigrpd/parse.y
718
if (file == topfile || popfile() == EOF)
usr.sbin/eigrpd/parse.y
719
return (EOF);
usr.sbin/eigrpd/parse.y
729
if (c == EOF)
usr.sbin/eigrpd/parse.y
754
if (c == EOF)
usr.sbin/eigrpd/parse.y
775
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/eigrpd/parse.y
779
if ((c = lgetc(0)) == EOF)
usr.sbin/eigrpd/parse.y
814
if ((c = lgetc(quotec)) == EOF)
usr.sbin/eigrpd/parse.y
820
if ((next = lgetc(quotec)) == EOF)
usr.sbin/eigrpd/parse.y
859
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/eigrpd/parse.y
863
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/eigrpd/parse.y
898
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/eigrpd/parse.y
910
if (c == EOF)
usr.sbin/eigrpd/parse.y
989
return (file ? 0 : EOF);
usr.sbin/hostapd/parse.y
1374
if ((c = igetc()) == EOF) {
usr.sbin/hostapd/parse.y
1377
if (file == topfile || popfile() == EOF)
usr.sbin/hostapd/parse.y
1378
return (EOF);
usr.sbin/hostapd/parse.y
1394
if (c == EOF) {
usr.sbin/hostapd/parse.y
1404
while (c == EOF) {
usr.sbin/hostapd/parse.y
1405
if (file == topfile || popfile() == EOF)
usr.sbin/hostapd/parse.y
1406
return (EOF);
usr.sbin/hostapd/parse.y
1416
if (c == EOF)
usr.sbin/hostapd/parse.y
1441
if (c == EOF)
usr.sbin/hostapd/parse.y
1462
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/hostapd/parse.y
1466
if ((c = lgetc(0)) == EOF)
usr.sbin/hostapd/parse.y
1501
if ((c = lgetc(quotec)) == EOF)
usr.sbin/hostapd/parse.y
1507
if ((next = lgetc(quotec)) == EOF)
usr.sbin/hostapd/parse.y
1570
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/hostapd/parse.y
1574
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/hostapd/parse.y
1609
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/hostapd/parse.y
1621
if (c == EOF)
usr.sbin/hostapd/parse.y
1780
return (file ? 0 : EOF);
usr.sbin/httpd/parse.y
1567
if ((c = igetc()) == EOF) {
usr.sbin/httpd/parse.y
1570
if (file == topfile || popfile() == EOF)
usr.sbin/httpd/parse.y
1571
return (EOF);
usr.sbin/httpd/parse.y
1587
if (c == EOF) {
usr.sbin/httpd/parse.y
1597
while (c == EOF) {
usr.sbin/httpd/parse.y
1598
if (file == topfile || popfile() == EOF)
usr.sbin/httpd/parse.y
1599
return (EOF);
usr.sbin/httpd/parse.y
1609
if (c == EOF)
usr.sbin/httpd/parse.y
1634
if (c == EOF)
usr.sbin/httpd/parse.y
1655
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/httpd/parse.y
1659
if ((c = lgetc(0)) == EOF)
usr.sbin/httpd/parse.y
1694
if ((c = lgetc(quotec)) == EOF)
usr.sbin/httpd/parse.y
1700
if ((next = lgetc(quotec)) == EOF)
usr.sbin/httpd/parse.y
1739
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/httpd/parse.y
1743
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/httpd/parse.y
1778
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/httpd/parse.y
1790
if (c == EOF)
usr.sbin/httpd/parse.y
1869
return (file ? 0 : EOF);
usr.sbin/httpd/parse.y
1897
while (popfile() != EOF)
usr.sbin/ifstated/parse.y
443
if ((c = getc(file->stream)) == EOF) {
usr.sbin/ifstated/parse.y
446
if (file == topfile || popfile() == EOF)
usr.sbin/ifstated/parse.y
447
return (EOF);
usr.sbin/ifstated/parse.y
463
while (c == EOF) {
usr.sbin/ifstated/parse.y
464
if (file == topfile || popfile() == EOF)
usr.sbin/ifstated/parse.y
465
return (EOF);
usr.sbin/ifstated/parse.y
474
if (c == EOF)
usr.sbin/ifstated/parse.y
475
return (EOF);
usr.sbin/ifstated/parse.y
482
return (EOF);
usr.sbin/ifstated/parse.y
504
if (c == EOF)
usr.sbin/ifstated/parse.y
525
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/ifstated/parse.y
529
if ((c = lgetc(0)) == EOF)
usr.sbin/ifstated/parse.y
559
if ((c = lgetc(quotec)) == EOF)
usr.sbin/ifstated/parse.y
565
if ((next = lgetc(quotec)) == EOF)
usr.sbin/ifstated/parse.y
604
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/ifstated/parse.y
608
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/ifstated/parse.y
643
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/ifstated/parse.y
655
if (c == EOF)
usr.sbin/ifstated/parse.y
724
return (file ? 0 : EOF);
usr.sbin/iscsictl/parse.y
433
if ((c = igetc()) == EOF) {
usr.sbin/iscsictl/parse.y
436
if (file == topfile || popfile() == EOF)
usr.sbin/iscsictl/parse.y
437
return (EOF);
usr.sbin/iscsictl/parse.y
453
while (c == EOF) {
usr.sbin/iscsictl/parse.y
454
if (file == topfile || popfile() == EOF)
usr.sbin/iscsictl/parse.y
455
return (EOF);
usr.sbin/iscsictl/parse.y
464
if (c == EOF)
usr.sbin/iscsictl/parse.y
489
if (c == EOF)
usr.sbin/iscsictl/parse.y
510
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/iscsictl/parse.y
514
if ((c = lgetc(0)) == EOF)
usr.sbin/iscsictl/parse.y
549
if ((c = lgetc(quotec)) == EOF)
usr.sbin/iscsictl/parse.y
555
if ((next = lgetc(quotec)) == EOF)
usr.sbin/iscsictl/parse.y
594
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/iscsictl/parse.y
598
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/iscsictl/parse.y
633
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/iscsictl/parse.y
645
if (c == EOF)
usr.sbin/iscsictl/parse.y
698
return (file ? 0 : EOF);
usr.sbin/ldapd/parse.y
525
if ((c = igetc()) == EOF) {
usr.sbin/ldapd/parse.y
528
if (file == topfile || popfile() == EOF)
usr.sbin/ldapd/parse.y
529
return (EOF);
usr.sbin/ldapd/parse.y
545
if (c == EOF) {
usr.sbin/ldapd/parse.y
555
while (c == EOF) {
usr.sbin/ldapd/parse.y
556
if (file == topfile || popfile() == EOF)
usr.sbin/ldapd/parse.y
557
return (EOF);
usr.sbin/ldapd/parse.y
567
if (c == EOF)
usr.sbin/ldapd/parse.y
592
if (c == EOF)
usr.sbin/ldapd/parse.y
613
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/ldapd/parse.y
617
if ((c = lgetc(0)) == EOF)
usr.sbin/ldapd/parse.y
652
if ((c = lgetc(quotec)) == EOF)
usr.sbin/ldapd/parse.y
658
if ((next = lgetc(quotec)) == EOF)
usr.sbin/ldapd/parse.y
697
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/ldapd/parse.y
701
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/ldapd/parse.y
736
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/ldapd/parse.y
748
if (c == EOF)
usr.sbin/ldapd/parse.y
830
return (file ? 0 : EOF);
usr.sbin/ldapd/schema.c
289
if ((c = getc(schema->fp)) == EOF) {
usr.sbin/ldapd/schema.c
292
return EOF;
usr.sbin/ldapd/schema.c
312
if (c == EOF)
usr.sbin/ldapd/schema.c
313
return EOF;
usr.sbin/ldapd/schema.c
318
return (EOF);
usr.sbin/ldapd/schema.c
336
if (c == EOF)
usr.sbin/ldapd/schema.c
358
while ((c = schema_getc(schema, 0)) != '\n' && c != EOF)
usr.sbin/ldapd/schema.c
366
if ((c = schema_getc(schema, quotec)) == EOF)
usr.sbin/ldapd/schema.c
372
if ((next = schema_getc(schema, quotec)) == EOF)
usr.sbin/ldapd/schema.c
408
} while ((c = schema_getc(schema, 0)) != EOF && (allowed_in_string(c)));
usr.sbin/ldapd/schema.c
419
if (c == EOF)
usr.sbin/ldomctl/parse.y
441
if ((c = getc(file->stream)) == EOF) {
usr.sbin/ldomctl/parse.y
444
if (file == topfile || popfile() == EOF)
usr.sbin/ldomctl/parse.y
445
return (EOF);
usr.sbin/ldomctl/parse.y
461
while (c == EOF) {
usr.sbin/ldomctl/parse.y
462
if (file == topfile || popfile() == EOF)
usr.sbin/ldomctl/parse.y
463
return (EOF);
usr.sbin/ldomctl/parse.y
472
if (c == EOF)
usr.sbin/ldomctl/parse.y
473
return (EOF);
usr.sbin/ldomctl/parse.y
480
return (EOF);
usr.sbin/ldomctl/parse.y
502
if (c == EOF)
usr.sbin/ldomctl/parse.y
522
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/ldomctl/parse.y
530
if ((c = lgetc(quotec)) == EOF)
usr.sbin/ldomctl/parse.y
536
if ((next = lgetc(quotec)) == EOF)
usr.sbin/ldomctl/parse.y
573
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/ldomctl/parse.y
577
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/ldomctl/parse.y
612
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/ldomctl/parse.y
623
if (c == EOF)
usr.sbin/ldomctl/parse.y
659
return (file ? 0 : EOF);
usr.sbin/ldpd/parse.y
1001
if ((c = igetc()) == EOF) {
usr.sbin/ldpd/parse.y
1004
if (file == topfile || popfile() == EOF)
usr.sbin/ldpd/parse.y
1005
return (EOF);
usr.sbin/ldpd/parse.y
1021
if (c == EOF) {
usr.sbin/ldpd/parse.y
1031
while (c == EOF) {
usr.sbin/ldpd/parse.y
1032
if (file == topfile || popfile() == EOF)
usr.sbin/ldpd/parse.y
1033
return (EOF);
usr.sbin/ldpd/parse.y
1043
if (c == EOF)
usr.sbin/ldpd/parse.y
1068
if (c == EOF)
usr.sbin/ldpd/parse.y
1089
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/ldpd/parse.y
1093
if ((c = lgetc(0)) == EOF)
usr.sbin/ldpd/parse.y
1128
if ((c = lgetc(quotec)) == EOF)
usr.sbin/ldpd/parse.y
1134
if ((next = lgetc(quotec)) == EOF)
usr.sbin/ldpd/parse.y
1173
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/ldpd/parse.y
1177
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/ldpd/parse.y
1212
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/ldpd/parse.y
1224
if (c == EOF)
usr.sbin/ldpd/parse.y
1303
return (file ? 0 : EOF);
usr.sbin/lpd/lp.c
520
if (fclose(lp->lp_lock) == EOF)
usr.sbin/lpd/parse.y
305
if ((c = getc(file->stream)) == EOF) {
usr.sbin/lpd/parse.y
308
if (file == topfile || popfile() == EOF)
usr.sbin/lpd/parse.y
309
return (EOF);
usr.sbin/lpd/parse.y
325
while (c == EOF) {
usr.sbin/lpd/parse.y
326
if (file == topfile || popfile() == EOF)
usr.sbin/lpd/parse.y
327
return (EOF);
usr.sbin/lpd/parse.y
336
if (c == EOF)
usr.sbin/lpd/parse.y
337
return (EOF);
usr.sbin/lpd/parse.y
344
return (EOF);
usr.sbin/lpd/parse.y
364
if (c == EOF)
usr.sbin/lpd/parse.y
385
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/lpd/parse.y
389
if ((c = lgetc(0)) == EOF)
usr.sbin/lpd/parse.y
419
if ((c = lgetc(quotec)) == EOF)
usr.sbin/lpd/parse.y
425
if ((next = lgetc(quotec)) == EOF)
usr.sbin/lpd/parse.y
464
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/lpd/parse.y
468
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/lpd/parse.y
491
if ((c = lgetc(0)) != EOF && c == '>')
usr.sbin/lpd/parse.y
510
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/lpd/parse.y
522
if (c == EOF)
usr.sbin/lpd/parse.y
591
return (file ? 0 : EOF);
usr.sbin/lpd/printer.c
1025
while ((c = getc(efp)) != EOF)
usr.sbin/lpr/common_source/common.c
205
if (c == EOF)
usr.sbin/lpr/common_source/displayq.c
184
while ((i = getc(fp)) != EOF && i != '\n') {
usr.sbin/lpr/common_source/displayq.c
203
while ((i = getc(fp)) != EOF && i != '\n') {
usr.sbin/lpr/filters/lpf.c
117
case EOF:
usr.sbin/lpr/lpd/printjob.c
1166
while ((i = getc(fp)) != EOF)
usr.sbin/npppd/npppd/parse.y
1227
if ((c = getc(file->stream)) == EOF) {
usr.sbin/npppd/npppd/parse.y
1230
if (file == topfile || popfile() == EOF)
usr.sbin/npppd/npppd/parse.y
1231
return (EOF);
usr.sbin/npppd/npppd/parse.y
1247
while (c == EOF) {
usr.sbin/npppd/npppd/parse.y
1248
if (file == topfile || popfile() == EOF)
usr.sbin/npppd/npppd/parse.y
1249
return (EOF);
usr.sbin/npppd/npppd/parse.y
1258
if (c == EOF)
usr.sbin/npppd/npppd/parse.y
1259
return (EOF);
usr.sbin/npppd/npppd/parse.y
1266
return (EOF);
usr.sbin/npppd/npppd/parse.y
1288
if (c == EOF)
usr.sbin/npppd/npppd/parse.y
1308
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/npppd/npppd/parse.y
1316
if ((c = lgetc(quotec)) == EOF)
usr.sbin/npppd/npppd/parse.y
1322
if ((next = lgetc(quotec)) == EOF)
usr.sbin/npppd/npppd/parse.y
1361
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/npppd/npppd/parse.y
1365
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/npppd/npppd/parse.y
1400
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/npppd/npppd/parse.y
1412
if (c == EOF)
usr.sbin/npppd/npppd/parse.y
1459
return (file ? 0 : EOF);
usr.sbin/ntpd/parse.y
589
if ((c = getc(file->stream)) == EOF) {
usr.sbin/ntpd/parse.y
592
if (file == topfile || popfile() == EOF)
usr.sbin/ntpd/parse.y
593
return (EOF);
usr.sbin/ntpd/parse.y
609
while (c == EOF) {
usr.sbin/ntpd/parse.y
610
if (file == topfile || popfile() == EOF)
usr.sbin/ntpd/parse.y
611
return (EOF);
usr.sbin/ntpd/parse.y
620
if (c == EOF)
usr.sbin/ntpd/parse.y
621
return (EOF);
usr.sbin/ntpd/parse.y
628
return (EOF);
usr.sbin/ntpd/parse.y
650
if (c == EOF)
usr.sbin/ntpd/parse.y
670
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/ntpd/parse.y
678
if ((c = lgetc(quotec)) == EOF)
usr.sbin/ntpd/parse.y
684
if ((next = lgetc(quotec)) == EOF)
usr.sbin/ntpd/parse.y
723
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/ntpd/parse.y
727
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/ntpd/parse.y
762
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/ntpd/parse.y
774
if (c == EOF)
usr.sbin/ntpd/parse.y
817
return (file ? 0 : EOF);
usr.sbin/ospf6d/parse.y
1017
return (file ? 0 : EOF);
usr.sbin/ospf6d/parse.y
715
if ((c = igetc()) == EOF) {
usr.sbin/ospf6d/parse.y
718
if (file == topfile || popfile() == EOF)
usr.sbin/ospf6d/parse.y
719
return (EOF);
usr.sbin/ospf6d/parse.y
735
if (c == EOF) {
usr.sbin/ospf6d/parse.y
745
while (c == EOF) {
usr.sbin/ospf6d/parse.y
746
if (file == topfile || popfile() == EOF)
usr.sbin/ospf6d/parse.y
747
return (EOF);
usr.sbin/ospf6d/parse.y
757
if (c == EOF)
usr.sbin/ospf6d/parse.y
782
if (c == EOF)
usr.sbin/ospf6d/parse.y
803
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/ospf6d/parse.y
807
if ((c = lgetc(0)) == EOF)
usr.sbin/ospf6d/parse.y
842
if ((c = lgetc(quotec)) == EOF)
usr.sbin/ospf6d/parse.y
848
if ((next = lgetc(quotec)) == EOF)
usr.sbin/ospf6d/parse.y
887
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/ospf6d/parse.y
891
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/ospf6d/parse.y
926
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/ospf6d/parse.y
938
if (c == EOF)
usr.sbin/ospfd/parse.y
1033
if ((c = lgetc(quotec)) == EOF)
usr.sbin/ospfd/parse.y
1039
if ((next = lgetc(quotec)) == EOF)
usr.sbin/ospfd/parse.y
1078
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/ospfd/parse.y
1082
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/ospfd/parse.y
1117
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/ospfd/parse.y
1129
if (c == EOF)
usr.sbin/ospfd/parse.y
1208
return (file ? 0 : EOF);
usr.sbin/ospfd/parse.y
906
if ((c = igetc()) == EOF) {
usr.sbin/ospfd/parse.y
909
if (file == topfile || popfile() == EOF)
usr.sbin/ospfd/parse.y
910
return (EOF);
usr.sbin/ospfd/parse.y
926
if (c == EOF) {
usr.sbin/ospfd/parse.y
936
while (c == EOF) {
usr.sbin/ospfd/parse.y
937
if (file == topfile || popfile() == EOF)
usr.sbin/ospfd/parse.y
938
return (EOF);
usr.sbin/ospfd/parse.y
948
if (c == EOF)
usr.sbin/ospfd/parse.y
973
if (c == EOF)
usr.sbin/ospfd/parse.y
994
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/ospfd/parse.y
998
if ((c = lgetc(0)) == EOF)
usr.sbin/pppd/options.c
738
if (c == EOF)
usr.sbin/pppd/options.c
801
while (c != EOF) {
usr.sbin/pppd/options.c
926
if (c == EOF) {
usr.sbin/pwd_mkdb/pwd_mkdb.c
320
if (fclose(oldfp) == EOF)
usr.sbin/quot/quot.c
417
while ((c = getchar()) != EOF && (c < '0' || c > '9'))
usr.sbin/quot/quot.c
418
while ((c = getchar()) != EOF && c != '\n');
usr.sbin/quot/quot.c
433
while (c != EOF && c != '\n') {
usr.sbin/quot/quot.c
443
while ((c = getchar()) != EOF && c != '\n')
usr.sbin/quot/quot.c
446
if (c == EOF)
usr.sbin/rad/parse.y
596
if ((c = igetc()) == EOF) {
usr.sbin/rad/parse.y
599
if (file == topfile || popfile() == EOF)
usr.sbin/rad/parse.y
600
return (EOF);
usr.sbin/rad/parse.y
616
if (c == EOF) {
usr.sbin/rad/parse.y
626
while (c == EOF) {
usr.sbin/rad/parse.y
627
if (file == topfile || popfile() == EOF)
usr.sbin/rad/parse.y
628
return (EOF);
usr.sbin/rad/parse.y
638
if (c == EOF)
usr.sbin/rad/parse.y
663
if (c == EOF)
usr.sbin/rad/parse.y
684
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/rad/parse.y
688
if ((c = lgetc(0)) == EOF)
usr.sbin/rad/parse.y
723
if ((c = lgetc(quotec)) == EOF)
usr.sbin/rad/parse.y
729
if ((next = lgetc(quotec)) == EOF)
usr.sbin/rad/parse.y
768
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/rad/parse.y
772
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/rad/parse.y
807
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/rad/parse.y
819
if (c == EOF)
usr.sbin/rad/parse.y
898
return (file ? 0 : EOF);
usr.sbin/radiusctl/json.c
260
eb = putc(c, jsonfh) == EOF;
usr.sbin/radiusd/parse.y
662
if ((c = getc(file->stream)) == EOF) {
usr.sbin/radiusd/parse.y
665
if (file == topfile || popfile() == EOF)
usr.sbin/radiusd/parse.y
666
return (EOF);
usr.sbin/radiusd/parse.y
682
while (c == EOF) {
usr.sbin/radiusd/parse.y
683
if (file == topfile || popfile() == EOF)
usr.sbin/radiusd/parse.y
684
return (EOF);
usr.sbin/radiusd/parse.y
693
if (c == EOF)
usr.sbin/radiusd/parse.y
694
return (EOF);
usr.sbin/radiusd/parse.y
701
return (EOF);
usr.sbin/radiusd/parse.y
723
if (c == EOF)
usr.sbin/radiusd/parse.y
743
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/radiusd/parse.y
751
if ((c = lgetc(quotec)) == EOF)
usr.sbin/radiusd/parse.y
757
if ((next = lgetc(quotec)) == EOF)
usr.sbin/radiusd/parse.y
796
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/radiusd/parse.y
800
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/radiusd/parse.y
835
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/radiusd/parse.y
847
if (c == EOF)
usr.sbin/radiusd/parse.y
890
return (file ? 0 : EOF);
usr.sbin/relayd/parse.y
2580
if ((c = igetc()) == EOF) {
usr.sbin/relayd/parse.y
2583
if (file == topfile || popfile() == EOF)
usr.sbin/relayd/parse.y
2584
return (EOF);
usr.sbin/relayd/parse.y
2600
if (c == EOF) {
usr.sbin/relayd/parse.y
2610
while (c == EOF) {
usr.sbin/relayd/parse.y
2611
if (file == topfile || popfile() == EOF)
usr.sbin/relayd/parse.y
2612
return (EOF);
usr.sbin/relayd/parse.y
2622
if (c == EOF)
usr.sbin/relayd/parse.y
2647
if (c == EOF)
usr.sbin/relayd/parse.y
2668
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/relayd/parse.y
2672
if ((c = lgetc(0)) == EOF)
usr.sbin/relayd/parse.y
2707
if ((c = lgetc(quotec)) == EOF)
usr.sbin/relayd/parse.y
2713
if ((next = lgetc(quotec)) == EOF)
usr.sbin/relayd/parse.y
2752
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/relayd/parse.y
2756
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/relayd/parse.y
2791
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/relayd/parse.y
2803
if (c == EOF)
usr.sbin/relayd/parse.y
2882
return (file ? 0 : EOF);
usr.sbin/relayd/parse.y
2906
while (popfile() != EOF)
usr.sbin/relayd/parse.y
2955
while (popfile() != EOF)
usr.sbin/ripd/parse.y
484
if ((c = getc(file->stream)) == EOF) {
usr.sbin/ripd/parse.y
487
if (file == topfile || popfile() == EOF)
usr.sbin/ripd/parse.y
488
return (EOF);
usr.sbin/ripd/parse.y
504
while (c == EOF) {
usr.sbin/ripd/parse.y
505
if (file == topfile || popfile() == EOF)
usr.sbin/ripd/parse.y
506
return (EOF);
usr.sbin/ripd/parse.y
515
if (c == EOF)
usr.sbin/ripd/parse.y
516
return (EOF);
usr.sbin/ripd/parse.y
523
return (EOF);
usr.sbin/ripd/parse.y
545
if (c == EOF)
usr.sbin/ripd/parse.y
566
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/ripd/parse.y
570
if ((c = lgetc(0)) == EOF)
usr.sbin/ripd/parse.y
600
if ((c = lgetc(quotec)) == EOF)
usr.sbin/ripd/parse.y
606
if ((next = lgetc(quotec)) == EOF)
usr.sbin/ripd/parse.y
645
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/ripd/parse.y
649
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/ripd/parse.y
684
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/ripd/parse.y
696
if (c == EOF)
usr.sbin/ripd/parse.y
765
return (file ? 0 : EOF);
usr.sbin/rpki-client/json.c
261
eb = putc(c, jsonfh) == EOF;
usr.sbin/smtpd/enqueue.c
397
if (fputc('.', fout) == EOF)
usr.sbin/smtpd/enqueue.c
608
if (fputc('\n', fout) == EOF)
usr.sbin/smtpd/enqueue.c
834
if (fputc('\n', ofile) == EOF)
usr.sbin/smtpd/enqueue.c
837
while ((ch = fgetc(ifile)) != EOF) {
usr.sbin/smtpd/enqueue.c
838
if (fputc(ch, ofile) == EOF)
usr.sbin/smtpd/enqueue.c
848
if (fclose(ofile) == EOF)
usr.sbin/smtpd/mail.maildir.c
200
if (fflush(fp) == EOF ||
usr.sbin/smtpd/mail.maildir.c
203
fclose(fp) == EOF)
usr.sbin/smtpd/mail.mboxfile.c
91
if (fflush(fp) == EOF ||
usr.sbin/smtpd/mail.mboxfile.c
94
fclose(fp) == EOF)
usr.sbin/smtpd/parse.y
2828
if ((c = igetc()) == EOF) {
usr.sbin/smtpd/parse.y
2831
if (file == topfile || popfile() == EOF)
usr.sbin/smtpd/parse.y
2832
return (EOF);
usr.sbin/smtpd/parse.y
2848
if (c == EOF) {
usr.sbin/smtpd/parse.y
2858
while (c == EOF) {
usr.sbin/smtpd/parse.y
2859
if (file == topfile || popfile() == EOF)
usr.sbin/smtpd/parse.y
2860
return (EOF);
usr.sbin/smtpd/parse.y
2870
if (c == EOF)
usr.sbin/smtpd/parse.y
2895
if (c == EOF)
usr.sbin/smtpd/parse.y
2916
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/smtpd/parse.y
2920
if ((c = lgetc(0)) == EOF)
usr.sbin/smtpd/parse.y
2955
if ((c = lgetc(quotec)) == EOF)
usr.sbin/smtpd/parse.y
2961
if ((next = lgetc(quotec)) == EOF)
usr.sbin/smtpd/parse.y
3000
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/smtpd/parse.y
3004
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/smtpd/parse.y
3027
if ((c = lgetc(0)) != EOF && c == '>')
usr.sbin/smtpd/parse.y
3046
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/smtpd/parse.y
3058
if (c == EOF)
usr.sbin/smtpd/parse.y
3137
return (file ? 0 : EOF);
usr.sbin/smtpd/smtpc.c
400
if (line[len - 1] != '\n' && fputc('\n', mail.fp) == EOF)
usr.sbin/smtpd/table_proc.c
149
if (fflush(priv->out) == EOF)
usr.sbin/smtpd/table_proc.c
209
if (fclose(priv->in) == EOF)
usr.sbin/smtpd/table_proc.c
211
if (fclose(priv->out) == EOF)
usr.sbin/smtpd/table_proc.c
78
if (fflush(priv->out) == EOF)
usr.sbin/snmpd/mib.y
1115
while ((c = fgetc(file.stream)) != EOF) {
usr.sbin/snmpd/parse.y
1384
if ((c = igetc()) == EOF) {
usr.sbin/snmpd/parse.y
1386
if (file == topfile || popfile() == EOF)
usr.sbin/snmpd/parse.y
1387
return (EOF);
usr.sbin/snmpd/parse.y
1411
if (c == EOF) {
usr.sbin/snmpd/parse.y
1421
while (c == EOF) {
usr.sbin/snmpd/parse.y
1422
if (file == topfile || popfile() == EOF)
usr.sbin/snmpd/parse.y
1423
return (EOF);
usr.sbin/snmpd/parse.y
1433
if (c == EOF)
usr.sbin/snmpd/parse.y
1458
if (c == EOF)
usr.sbin/snmpd/parse.y
1479
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/snmpd/parse.y
1483
if ((c = lgetc(0)) == EOF)
usr.sbin/snmpd/parse.y
1518
if ((c = lgetc(quotec)) == EOF)
usr.sbin/snmpd/parse.y
1524
if ((next = lgetc(quotec)) == EOF)
usr.sbin/snmpd/parse.y
1563
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/snmpd/parse.y
1567
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/snmpd/parse.y
1602
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/snmpd/parse.y
1614
if (c == EOF)
usr.sbin/snmpd/parse.y
1693
return (file ? 0 : EOF);
usr.sbin/tftpd/tftpd.c
1101
if (c == EOF)
usr.sbin/tftpd/tftpd.c
1163
if (c == EOF) {
usr.sbin/tftpd/tftpd.c
1379
if (client->fputc(client, wbuf[i]) == EOF) {
usr.sbin/unbound/sldns/parse.c
199
if (c == EOF) {
usr.sbin/unbound/sldns/parse.c
274
return EOF;
usr.sbin/unbound/sldns/parse.c
315
while ((c = sldns_bgetc(b)) != EOF) {
usr.sbin/unbound/sldns/parse.c
473
while ((c = fgetc(fp)) != EOF) {
usr.sbin/unbound/sldns/parse.c
61
while ((c = getc(f)) != EOF) {
usr.sbin/unbound/testcode/lock_verify.c
171
if(c == EOF)
usr.sbin/unbound/testcode/testpkts.c
415
if (c == '\n' || c == EOF) {
usr.sbin/unbound/validator/val_anchor.c
488
while((*c = getc(in)) != EOF ) {
usr.sbin/unbound/validator/val_anchor.c
534
while((c = getc(in)) != EOF ) {
usr.sbin/unbound/validator/val_anchor.c
537
if(c == EOF) return 0;
usr.sbin/unbound/validator/val_anchor.c
546
if(c == EOF) return 0;
usr.sbin/unbound/validator/val_anchor.c
555
while(c != EOF && (c=getc(in)) != EOF ) {
usr.sbin/unbound/validator/val_anchor.c
563
if(c == EOF) return 0;
usr.sbin/unbound/validator/val_anchor.c
590
while((c = getc(in)) != EOF ) {
usr.sbin/unbound/validator/val_anchor.c
598
if(c == EOF) return 0;
usr.sbin/user/user.c
1395
if (fclose(to) == EOF) {
usr.sbin/user/user.c
454
if (fclose(to) == EOF || ret == -1) {
usr.sbin/user/user.c
553
if (fclose(to) == EOF) {
usr.sbin/user/user.c
680
if (fclose(to) == EOF) {
usr.sbin/user/user.c
828
if (fclose(fp) == EOF) {
usr.sbin/vmd/parse.y
1002
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/vmd/parse.y
1006
if ((c = lgetc(0)) == EOF)
usr.sbin/vmd/parse.y
1041
if ((c = lgetc(quotec)) == EOF)
usr.sbin/vmd/parse.y
1047
if ((next = lgetc(quotec)) == EOF)
usr.sbin/vmd/parse.y
1086
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/vmd/parse.y
1090
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/vmd/parse.y
1125
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/vmd/parse.y
1137
if (c == EOF)
usr.sbin/vmd/parse.y
1189
return (file ? 0 : EOF);
usr.sbin/vmd/parse.y
906
if ((c = igetc()) == EOF) {
usr.sbin/vmd/parse.y
909
if (file == topfile || popfile() == EOF)
usr.sbin/vmd/parse.y
910
return (EOF);
usr.sbin/vmd/parse.y
934
if (c == EOF) {
usr.sbin/vmd/parse.y
944
while (c == EOF) {
usr.sbin/vmd/parse.y
945
if (file == topfile || popfile() == EOF)
usr.sbin/vmd/parse.y
946
return (EOF);
usr.sbin/vmd/parse.y
956
if (c == EOF)
usr.sbin/vmd/parse.y
981
if (c == EOF)
usr.sbin/ypbind/ypbind.c
797
while ((c = getc(ypdb->dom_servlistfp)) != '\n' && c != EOF)
usr.sbin/ypldap/parse.y
614
if ((c = igetc()) == EOF) {
usr.sbin/ypldap/parse.y
617
if (file == topfile || popfile() == EOF)
usr.sbin/ypldap/parse.y
618
return (EOF);
usr.sbin/ypldap/parse.y
634
if (c == EOF) {
usr.sbin/ypldap/parse.y
644
while (c == EOF) {
usr.sbin/ypldap/parse.y
645
if (file == topfile || popfile() == EOF)
usr.sbin/ypldap/parse.y
646
return (EOF);
usr.sbin/ypldap/parse.y
656
if (c == EOF)
usr.sbin/ypldap/parse.y
681
if (c == EOF)
usr.sbin/ypldap/parse.y
702
while ((c = lgetc(0)) != '\n' && c != EOF)
usr.sbin/ypldap/parse.y
706
if ((c = lgetc(0)) == EOF)
usr.sbin/ypldap/parse.y
741
if ((c = lgetc(quotec)) == EOF)
usr.sbin/ypldap/parse.y
747
if ((next = lgetc(quotec)) == EOF)
usr.sbin/ypldap/parse.y
786
} while ((c = lgetc(0)) != EOF && isdigit(c));
usr.sbin/ypldap/parse.y
790
if (c == EOF || allowed_to_end_number(c)) {
usr.sbin/ypldap/parse.y
825
} while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
usr.sbin/ypldap/parse.y
837
if (c == EOF)
usr.sbin/ypldap/parse.y
916
return (file ? 0 : EOF);
usr.sbin/ypserv/makedbm/makedbm.c
66
while ((ch = getc(fp)) != EOF &&
usr.sbin/ypserv/mknetid/mknetid.c
84
while ((ch = getc(fp)) != EOF &&