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

/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
/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/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 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/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/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) {
/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/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/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;
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.hpp206 int eof() { return feof(_file); } function in class:fileStream
/openjdk7/jdk/src/share/classes/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;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDT.cpp1401 int eof = (actual == 0); local
1403 env->ReleaseByteArrayElements(buf, local, !eof ? 0 : JNI_ABORT);
1404 return (jint)(!eof ? actual : -1);

Completed in 57 milliseconds