Searched refs:eof (Results 1 - 25 of 423) sorted by last modified time

1234567891011>>

/external/yaffs2/yaffs2/
H A Dyaffs_fs.c1881 off_t offset, int count, int *eof, void *data)
/external/zlib/src/contrib/iostream3/
H A Dzfstream.cc193 return traits_type::eof();
203 return traits_type::eof();
221 return traits_type::eof();
223 if (!traits_type::eq_int_type(c, traits_type::eof()))
235 return traits_type::eof();
238 return traits_type::eof();
244 else if (!traits_type::eq_int_type(c, traits_type::eof()))
248 return traits_type::eof();
253 return traits_type::eof();
258 if (traits_type::eq_int_type(c, traits_type::eof()))
[all...]
H A Dzfstream.h125 overflow(int_type c = traits_type::eof());
152 // virtual int_type pbackfail(int_type c = traits_type::eof());
/external/zlib/src/
H A Dgzguts.h179 int eof; /* true if end of input file reached */ member in struct:__anon34354
H A Dgzlib.c80 state->eof = 0; /* not at end of file */
400 state->eof = 0;
563 state->eof = 0;
H A Dgzread.c17 state->fd, and update state->eof, state->err, and state->msg as appropriate.
40 state->eof = 1;
44 /* Load up input buffer and set eof flag if last data loaded -- return -1 on
45 error, 0 otherwise. Note that the eof flag is set when the end of the input
59 if (state->eof == 0) {
148 state->eof = 1;
251 } while (state->x.have == 0 && (!state->eof || strm->avail_in));
275 else if (state->eof && state->strm.avail_in == 0)
338 else if (state->eof && strm->avail_in == 0) {
/external/valgrind/main/coregrind/
H A Dm_errormgr.c1059 0 if eof or < 0 if error. */
1077 return 0; /* eof */
1086 // Returns True if eof.
1147 Bool eof = get_nbnc_line (fd, bufpp, nBufp, lineno); local
1149 if (eof)
1232 Bool eof; local
1276 eof = get_nbnc_line ( fd, &buf, &nBuf, &lineno );
1277 if (eof) {
1284 eof = get_nbnc_line ( fd, &buf, &nBuf, &lineno );
1286 if (eof || VG_STRE
[all...]
/external/valgrind/main/exp-sgcheck/
H A Dpc_common.c741 Bool eof; local
743 eof = VG_(get_line) ( fd, bufpp, nBufp, lineno );
744 if (eof) return False;
/external/valgrind/main/memcheck/
H A Dmc_errors.c1240 Bool eof; local
1244 eof = VG_(get_line) ( fd, bufpp, nBufp, lineno );
1245 if (eof) return False;
1256 eof = VG_(get_line) ( fd, bufpp, nBufp, lineno );
1257 if (eof) return True; // old LeakSupp style, no match-leak-kinds line.
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DHTMLScanner.java648 h.eof(theOutputBuffer, 0, 0);
H A DPYXScanner.java113 h.eof(buff, 0, 0);
H A DPYXWriter.java65 public void eof(char[] buff, int offset, int length) throws SAXException { method in class:PYXWriter
H A DParser.java632 public void eof(char[] buff, int offset, int length) throws SAXException { method in class:Parser
H A DScanHandler.java64 public void eof(char[] buff, int offset, int length) throws SAXException; method in interface:ScanHandler
/external/tagsoup/templates/org/ccil/cowan/tagsoup/
H A DHTMLScanner.java427 h.eof(theOutputBuffer, 0, 0);
/external/stlport/src/
H A Dfstream.cpp44 return traits_type::eof();
H A Dstdio_streambuf.cpp168 return traits_type::eof();
177 return c != EOF ? c : traits_type::eof();
181 if (c != traits_type::eof()) {
183 return result != EOF ? result : traits_type::eof();
191 return traits_type::eof();
205 if (c == traits_type::eof()) {
214 return traits_type::eof();
229 return result != EOF ? result : traits_type::eof();
H A Dstdio_streambuf.h82 virtual int_type pbackfail(int_type c = traits_type::eof());
92 int_type overflow(int_type c = traits_type::eof());
H A Dstrstream.cpp117 if (c == traits_type::eof())
153 return traits_type::eof();
158 if (c == traits_type::eof()) {
173 return traits_type::eof();
183 return _Traits::eof();
/external/stlport/stlport/stl/
H A D_bitset.c188 static typename _Traits::int_type __eof = _Traits::eof();
H A D_bitset.h771 static typename _Traits::int_type __eof = _Traits::eof();
822 static typename _Traits::int_type __eof = _Traits::eof();
H A D_fstream.c85 __ok = __ok && !_Traits::eq_int_type(this->overflow(traits_type::eof()),
86 traits_type::eof());
158 const int_type __eof = traits_type::eof();
202 // character __c (unless __c is eof). Invariant: we always leave room
212 return traits_type::eof();
219 if (!traits_type::eq_int_type(__c, traits_type::eof()))
404 return traits_type::eq_int_type(this->overflow(traits_type::eof()),
405 traits_type::eof()) ? -1 : 0;
479 // returns eof.
480 // returns eof
[all...]
H A D_fstream.h203 virtual int_type pbackfail(int_type = traits_type::eof());
204 virtual int_type overflow(int_type = traits_type::eof());
383 { return _Traits::eof(); }
410 return traits_type::eof();
H A D_ios.h111 const int_type __eof = _Traits::eof();
H A D_ios_base.h173 bool eof() const { return (_M_iostate & eofbit) != 0; } function in class:ios_base

Completed in 2994 milliseconds

1234567891011>>