/javamail/mail/src/main/java/com/sun/mail/util/ |
H A D | QPDecoderStream.java | 70 * 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 D | UUDecoderStream.java | 107 * 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 D | ASCIIUtility.java | 265 int size = is.available(); 295 size = is.available();
|
H A D | BASE64DecoderStream.java | 98 * 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 D | IMAPProtocolTest.java | 93 byte[] ba = new byte[is.available()]; 116 byte[] ba = new byte[is.available()];
|
/javamail/mail/src/main/java/com/sun/mail/iap/ |
H A D | ResponseInputStream.java | 145 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 D | Protocol.java | 274 * 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 D | POP3Message.java | 213 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 D | Protocol.java | 505 logger.fine("got message size " + r.bytes.available());
|
/javamail/dsn/src/main/java/com/sun/mail/dsn/ |
H A D | DeliveryStatus.java | 105 while (is.available() > 0) {
|
/javamail/mail/src/main/java/com/sun/mail/imap/ |
H A D | IMAPInputStream.java | 123 * 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 D | IMAPMessage.java | 156 * 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 D | SharedFileInputStream.java | 359 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 D | MimeBodyPart.java | 222 * 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 D | MimeMessage.java | 935 * 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 D | MimeUtility.java | 321 // 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 D | mail.sig | 1374 meth public int available() throws java.io.IOException
|