Searched refs:EOF (Results 1 - 25 of 123) sorted by relevance

12345

/haiku/src/system/libroot/posix/glibc/libio/
H A Diofflush_u.c39 CHECK_FILE (fp, EOF);
40 return _IO_SYNC (fp) ? EOF : 0;
H A Dioungetc.c36 CHECK_FILE (fp, EOF);
37 if (c == EOF)
38 return EOF;
H A Dfeof_u.c37 CHECK_FILE (fp, EOF);
H A Dferror_u.c37 CHECK_FILE (fp, EOF);
H A Dfputc_u.c38 CHECK_FILE (fp, EOF);
H A Dputc_u.c29 CHECK_FILE (fp, EOF);
H A Dputchar_u.c28 CHECK_FILE (_IO_stdout, EOF);
H A Diofputs_u.c38 int result = EOF;
39 CHECK_FILE (fp, EOF);
H A Diofputws_u.c38 int result = EOF;
39 CHECK_FILE (fp, EOF);
H A Dgetwc_u.c36 CHECK_FILE (fp, EOF);
H A Diofflush.c40 CHECK_FILE (fp, EOF);
43 result = _IO_SYNC (fp) ? EOF : 0;
H A Diofputws.c37 int result = EOF;
38 CHECK_FILE (fp, EOF);
H A Dioputs.c37 int result = EOF;
45 && _IO_putc_unlocked('\n', _IO_stdout) != EOF)
H A Diofgetpos64.c40 CHECK_FILE (fp, EOF);
59 return EOF;
69 return EOF;
H A Diofsetpos64.c39 CHECK_FILE (fp, EOF);
51 result = EOF;
66 return EOF;
H A Diofputs.c37 int result = EOF;
39 CHECK_FILE (fp, EOF);
H A Dfeof.c36 CHECK_FILE (fp, EOF);
H A Dferror.c36 CHECK_FILE (fp, EOF);
H A Dfileno.c35 CHECK_FILE (fp, EOF);
H A Dfputc.c37 CHECK_FILE (fp, EOF);
H A Dfputwc.c37 CHECK_FILE (fp, EOF);
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dgetw.c30 return EOF;
/haiku/src/tests/system/benchmarks/
H A Dcompile_bench.sh8 cat << EOF > hello_world.cpp
18 EOF
/haiku/src/tools/fs_shell/
H A Dfs_shell_command_unix.cpp38 if (fputs(command, out) == EOF || fputc('\n', out) == EOF
39 || fflush(out) == EOF) {
/haiku/src/libs/stdc++/legacy/
H A Dstdiostream.cc78 if (ch == EOF)
116 return EOF;
119 return EOF;
123 int stdiobuf::overflow(int c /* = EOF*/)
125 if (filebuf::overflow(c) == EOF)
126 return EOF;
127 if (c != EOF)

Completed in 847 milliseconds

12345