Searched defs:eof (Results 1 - 6 of 6) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DOptionalDataException.java36 * immediately readable from the stream, and the eof field is set to
41 * OptionalDataException's eof field is set to true, and the length field
56 eof = false;
66 eof = end;
82 public boolean eof; field in class:OptionalDataException
/libcore/ojluni/src/main/java/java/net/
H A DSocketInputStream.java48 private boolean eof; field in class:SocketInputStream
127 if (eof) {
194 eof = true;
202 if (eof) {
241 // Android changed : Bug fix, if eof == true, we must indicate that we
243 if (eof) {
267 void setEOF(boolean eof) { argument
268 this.eof = eof;
/libcore/luni/src/main/java/libcore/reflect/
H A DGenericSignatureParser.java86 char symbol; // 0: eof; else valid term symbol or first char of identifier.
92 * eof is private to the scan methods
95 private boolean eof; field in class:GenericSignatureParser
108 this.eof = false;
112 this.eof = true;
125 if (!eof) {
156 if (!eof) {
187 if (!eof) {
217 if (!eof) {
456 if (!eof) {
[all...]
/libcore/ojluni/src/main/java/java/util/zip/
H A DZipFile.java394 private boolean eof = false; field in class:ZipFile.ZipFileInflaterInputStream
422 if (eof) {
429 eof = true;
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java1156 //eof
1204 private boolean eof = false; field in class:ObjectInputStreamTest.ExceptionalBufferedInputStream
1218 if (eof) {
1228 public void setEOF(boolean eof) { argument
1229 this.eof = eof;
/libcore/ojluni/src/main/java/sun/net/ftp/impl/
H A DFtpClient.java1807 private boolean eof = false; field in class:FtpClient.FtpFileIterator
1817 if (eof) {
1834 eof = true;
1852 if (in != null && !eof) {
1855 eof = true;

Completed in 1469 milliseconds