Searched refs:eof (Results 1 - 25 of 37) sorted by relevance

12

/openjdk7/jdk/src/share/classes/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
H A DConsole.java429 boolean eof = false;
445 * the end of returned bytes we reached an eof.
447 eof = true;
507 if (eof)
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DOptionalDataException.java40 * The eof flag in the exception is true to indicate that no more
52 eof = false;
62 eof = end;
74 public boolean eof; field in class:OptionalDataException
/openjdk7/langtools/test/tools/javac/diags/examples/
H A DUnreachableCatch1.java40 catch(EOFException eof) { }
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DFixedLengthOutputStream.java44 private boolean eof = false; field in class:FixedLengthOutputStream
58 eof = (remaining == 0);
59 if (eof) {
70 eof = (remaining == 0);
71 if (eof) {
92 eof = true;
H A DLeftOverInputStream.java47 protected boolean eof = false; field in class:LeftOverInputStream
59 assert eof;
68 if (!eof) {
69 eof = drain (ServerConfig.getDrainAmount());
78 return eof;
103 * read and discard up to l bytes or "eof" occurs,
105 * is at eof (ie. all bytes were read) or false if not
114 eof = true;
H A DFixedLengthInputStream.java49 eof = (remaining == 0L);
50 if (eof) {
67 if (eof) {
H A DChunkedInputStream.java114 if (eof) {
120 eof = true;
160 if (eof || closed) {
172 assert eof;
H A DRequest.java227 private boolean closed = false, eof = false; field in class:Request.ReadStream
265 if (eof) {
291 eof = true;
317 if (eof)
H A DSSLStreams.java501 /* this stream eof */
502 boolean eof = false; field in class:SSLStreams.InputStream
514 if (eof) {
527 eof = true;
558 if (eof) {
582 eof = true;
/openjdk7/jdk/test/java/io/Serializable/defaultDataEnd/
H A DDefaultDataEnd.java53 if (!ex.eof) {
61 if (!ex.eof) {
80 if (!ex.eof) {
88 if (!ex.eof) {
112 if (!ex.eof) {
120 if (!ex.eof) {
/openjdk7/jdk/src/share/classes/java/net/
H A DSocketInputStream.java50 private boolean eof; field in class:SocketInputStream
129 if (eof) {
198 eof = true;
206 if (eof) {
265 void setEOF(boolean eof) { argument
266 this.eof = eof;
/openjdk7/jdk/src/share/classes/sun/tools/native2ascii/
H A DA2NFilter.java57 boolean eof = false;
69 eof = true;
79 if (c != '\\' || (eof && numChars <= 5)) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEParser.java81 private boolean eof; field in class:MIMEParser
178 if (!eof) {
193 if (!eof) {
199 assert eof || len >= config.chunkSize;
200 int chunkSize = eof ? len : config.chunkSize;
201 if (eof) {
245 } else if (eof) {
291 if (!eof) {
297 if (eof) {
420 assert !eof;
[all...]
/openjdk7/jdk/test/java/io/Serializable/optionalDataEnd/
H A DOptionalDataEnd.java26 * @summary Verify that an OptionalDataException with eof == true is thrown
58 if (! (ex.eof && (ex.length == 0))) {
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DStreamDecoder.java315 boolean eof = false;
317 CoderResult cr = decoder.decode(bb, cb, eof);
319 if (eof)
327 eof = true;
341 if (eof) {
347 if (eof)
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftAbstractResampler.java51 boolean eof; field in class:SoftAbstractResampler.ModelAbstractResamplerStream
88 eof = false;
129 eof = false;
171 eof = true;
260 if (eof)
326 if (eof) {
366 if (eof) {
H A DWaveFileReader.java277 } catch (EOFException eof) {
355 } catch (EOFException eof) {
H A DStandardMidiFileReader.java275 } catch (EOFException eof) {
304 } catch (EOFException eof) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DBMMimeMultipart.java361 BitSet eof, long[] posVector, SharedInputStream sin)
366 eof.flip(0);
378 eof.flip(0);
397 BitSet eof = new BitSet(1);
402 bufferLength = readNext(is, buffer, l, eof, posVector, sin);
403 if (eof.get(0)) {
446 BitSet eof = new BitSet(1);
459 bufferLength = readNext(is, buffer, l, eof, posVector, sin);
360 readNext(InputStream is, byte[] buff, int patternLength, BitSet eof, long[] posVector, SharedInputStream sin) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DReadAllStream.java72 boolean eof = memStream.readAll(in, inMemory);
73 if (!eof) {
161 * @return true if eof
207 // if eof, return false else true
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dtrees.c891 void _tr_stored_block(s, buf, stored_len, eof)
895 int eof; /* true if this is the last block for a file */
897 send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */
945 void _tr_flush_block(s, buf, stored_len, eof)
949 int eof; /* true if this is the last block for a file */
1005 _tr_stored_block(s, buf, stored_len, eof);
1012 send_bits(s, (STATIC_TREES<<1)+eof, 3);
1018 send_bits(s, (DYN_TREES<<1)+eof, 3);
1032 if (eof) {
1039 s->compressed_len-7*eof));
[all...]
H A Ddeflate.h309 int eof));
312 int eof));
/openjdk7/jdk/src/share/classes/sun/font/
H A DType1Font.java367 boolean eof = false;
372 while ((fullName == null || familyName == null || psName == null || fontType == null) && !eof) {
403 eof = true;
438 if (eof) {
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipFile.java384 private boolean eof = false; field in class:ZipFile.ZipFileInflaterInputStream
412 if (eof) {
419 eof = true;

Completed in 383 milliseconds

12