Searched refs:available (Results 1 - 17 of 17) sorted by relevance

/javamail/mail/src/main/java/com/sun/mail/util/
H A DQPDecoderStream.java70 * to <code>255</code>. If no byte is available because the end of
72 * This method blocks until input data is available, the end of the
151 * available.
197 * this method just invokes the <code>available</code> method
200 public int available() throws IOException { method in class:QPDecoderStream
202 // bytes are available *after* decoding
203 return in.available();
H A DUUDecoderStream.java107 * to <code>255</code>. If no byte is available because the end of
109 * This method blocks until input data is available, the end of the
144 public int available() throws IOException { method in class:UUDecoderStream
145 // This is only an estimate, since in.available()
147 return ((in.available() * 3)/4 + (bufsize-index));
H A DASCIIUtility.java265 int size = is.available();
295 size = is.available();
H A DBASE64DecoderStream.java98 * to <code>255</code>. If no byte is available because the end of
100 * This method blocks until input data is available, the end of the
121 * available.
194 public int available() throws IOException { method in class:BASE64DecoderStream
195 // This is only an estimate, since in.available()
197 return ((in.available() * 3)/4 + (bufsize-index));
/javamail/mail/src/test/java/com/sun/mail/imap/protocol/
H A DIMAPProtocolTest.java93 byte[] ba = new byte[is.available()];
116 byte[] ba = new byte[is.available()];
/javamail/mail/src/main/java/com/sun/mail/iap/
H A DResponseInputStream.java145 int avail = buffer.length - idx; // available space in buffer
175 * @return number of bytes available
179 public int available() throws IOException { method in class:ResponseInputStream
180 return bin.available();
H A DProtocol.java274 * Is another response available in our buffer?
282 * if there's a *complete* response available, but if there
287 return input.available() > 0;
/javamail/mail/src/main/java/com/sun/mail/pop3/
H A DPOP3Message.java213 if (rawcontent.available() > 0) {
227 if (rawcontent.available() == 0)
239 msgSize = rawcontent.available();
334 * available in the returned InputStream.
622 hdrSize = hdrs.available();
H A DProtocol.java505 logger.fine("got message size " + r.bytes.available());
/javamail/dsn/src/main/java/com/sun/mail/dsn/
H A DDeliveryStatus.java105 while (is.available() > 0) {
/javamail/mail/src/main/java/com/sun/mail/imap/
H A DIMAPInputStream.java123 * If we know the total number of bytes available from this
188 * If no byte is available, the value <code>-1</code> is returned.
251 public synchronized int available() throws IOException { method in class:IMAPInputStream
H A DIMAPMessage.java156 * is not available.
499 * BODYSTRUCTURE. Note that this field is available
661 * Get the "filename" Disposition parameter. (Only available in
662 * IMAP4rev1). If thats not available, get the "name" ContentType
1248 size = headerStream.available();
1630 * accessor routines to make available certain private/protected
/javamail/mail/src/main/java/javax/mail/util/
H A DSharedFileInputStream.java359 while ((n < len) /* && (in.available() > 0) */) {
409 public synchronized int available() throws IOException { method in class:SharedFileInputStream
/javamail/mail/src/main/java/javax/mail/internet/
H A DMimeBodyPart.java222 * null, and the <code>available</code> method returns a positive
233 int size = contentStream.available();
408 * available or its value is absent. <p>
512 * not available, returns the value of the "name" parameter from
699 * available to the JavaMail implementation for this to work right.
H A DMimeMessage.java935 * null, and the <code>available</code> method returns a positive
947 int size = contentStream.available();
1265 * not available, returns the value of the "name" parameter from
1497 * available to the JavaMail implementation for this to work right.
H A DMimeUtility.java321 // Check all of the available bytes
340 // Check all of available bytes, break out if we find
762 75 - 7 - charset.length(), // the available space
901 int count = bis.available();
1234 * not available, the passed in charset is itself returned.
1469 * if more than half of the available characters
1496 * if more than half of the available characters
1525 * set to <code>ALL</code>, then all the bytes available in this
1540 * if more than half of the available characters
1596 // have not checked all of the available byte
[all...]
/javamail/
H A Dmail.sig1374 meth public int available() throws java.io.IOException

Completed in 64 milliseconds