Searched refs:EOF (Results 76 - 100 of 123) sorted by relevance

12345

/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacclib.h353 #ifndef EOF
354 #define EOF (-1) macro
/haiku/src/system/libroot/posix/glibc/libio/
H A Diogetline.c74 if (c == EOF)
H A Dwfileops.c72 fp->_IO_write_ptr - fp->_IO_write_base) == EOF)
73 return EOF;
90 fp->_IO_write_ptr - fp->_IO_write_base) == EOF)
227 _IO_OVERFLOW (_IO_stdout, EOF);
318 && _IO_file_underflow_mmap (fp) == EOF)
319 /* Nothing available. _IO_file_underflow_mmap has set the EOF or error
365 if (_IO_file_underflow_maybe_mmap (fp) == EOF)
436 if (_IO_do_flush (f) == EOF)
441 if (_IO_do_flush (f) == EOF)
489 if (new_pos != (_IO_off64_t) EOF)
[all...]
H A Dwgenops.c262 if (INTUSE(_IO_switch_to_wget_mode) (fp) == EOF)
293 if (INTUSE(_IO_switch_to_wget_mode) (fp) == EOF)
434 ALLOC_WBUF (buf, _IO_BUFSIZ, EOF);
447 return EOF;
526 return EOF; /* FIXME */
636 result = _IO_PBACKFAIL (fp, EOF);
677 #define BAD_DELTA EOF
703 return EOF;
729 if (offset != EOF)
738 mark->set_streampos (EOF);
[all...]
H A Dwstrops.c238 new_pos = EOF;
256 return EOF;
280 return EOF;
H A Dlibio.h90 #ifndef EOF
91 # define EOF (-1) macro
421 && __underflow (_fp) == EOF ? EOF \
H A Diolibio.h60 == _IO_pos_BAD ? EOF : 0)
/haiku/src/libs/iconv/
H A Dlocalcharset.c159 if (c == EOF)
168 while (!(c == EOF || c == '\n'));
169 if (c == EOF)
/haiku/headers/posix/
H A Dstdio.h39 #ifdef EOF
40 # undef EOF macro
42 #define EOF (-1) macro
/haiku/src/bin/unzip/
H A Dcrypt.c248 if ((c = getc(source)) == EOF) {
258 if (fflush(dest) == EOF) return ZE_TEMP;
291 if ((c1 = getc(source)) == EOF) {
330 if ((c1 = getc(source)) == EOF) {
340 if (fflush(dest) == EOF) return ZE_TEMP;
H A Dcryptf.c251 if ((c = getc(source)) == EOF) {
261 if (fflush(dest) == EOF) return ZE_TEMP;
294 if ((c1 = getc(source)) == EOF) {
333 if ((c1 = getc(source)) == EOF) {
343 if (fflush(dest) == EOF) return ZE_TEMP;
/haiku/headers/cpp/
H A Diostream.h189 int get() { if (!ipfx1()) return EOF;
191 if (ch == EOF) set(ios::eofbit);
197 istream& ignore(int n=1, int delim = EOF);
203 if (good() && _strbuf->sputbackc(ch) == EOF) clear(ios::badbit);
206 if (good() && _strbuf->sungetc() == EOF) clear(ios::badbit);
H A Dstreambuf.h46 #ifndef EOF
47 #define EOF (-1) macro
351 virtual int overflow(int c = EOF); // Leave public for now
399 if (_IO_read_ptr >= _IO_read_end && __underflow(this) == EOF)
400 return EOF;
441 virtual int overflow(int c = EOF);
443 int fd() const { return is_open() ? _fileno : EOF; }
H A Deditbuf.h86 virtual int overflow(int c = EOF);
H A Dstrstream.h46 virtual int overflow(int = EOF);
/haiku/src/libs/stdc++/legacy/
H A Deditbuf.cc339 return EOF;
351 return EOF;
373 return EOF;
376 if (ch == EOF)
460 return EOF;
469 return EOF;
713 if (ch == EOF) break;
/haiku/src/add-ons/translators/raw/
H A DLibRAW.cpp134 iseof = EOF;
135 return EOF;
/haiku/src/apps/expander/
H A DExpanderThread.cpp127 return EOF;
176 if (status == EOF) {
/haiku/
H A Dconfigure11 cat << EOF
142 EOF
1097 cat << EOF > "$buildConfigFile"
1144 EOF
1199 cat << EOF > $outputDir/Jamfile
1209 EOF
/haiku/src/tests/system/libroot/posix/
H A Dtst-btowc.c61 /* Test EOF handling. */
65 wint_t wc = btowc(EOF);
67 printf("%s: btowc(EOF) returned L'\\x%x', not WEOF\n", current_locale,
/haiku/src/bin/
H A Dps.c142 while ((c = getopt(argc, argv, "-ihaso:")) != EOF) {
/haiku/src/bin/multiuser/
H A Dlogin.cpp38 while ((c = fgetc(stdin)) != EOF && c != '\r' && c != '\n') {
/haiku/src/bin/rc/
H A Dlexer.l170 <COMMENT><<EOF>> LEXERROR("forgot to close /*..*/ comment")
179 <INCLUDE><<EOF>> LEXERROR("error in include statement")
180 <<EOF>> { if (include_stack.empty())
/haiku/src/add-ons/tracker/zipomatic/
H A DZipperThread.cpp189 return EOF;
236 if (status == EOF) {
237 fprintf(stderr, "ZipperThread::ExecuteUnitFailed(): EOF\n");
/haiku/src/bin/network/ftpd/
H A Dftpd.c1770 if ((c=getc(fin)) == EOF) {
1850 if ((c=getc(fout)) == EOF) {
2092 } while (ret == EOF); \
2112 cp = EOF;
2116 else if (c == EOF && ferror(instr))
2118 if (c == EOF) {
2123 if (feof(instr)) /* EOF */
2138 while (fflush(outstr) == EOF) {
2147 if (fflush(outstr) == EOF)
2190 * We hit the EOF prematurel
[all...]

Completed in 143 milliseconds

12345