/javamail/mail/src/test/java/com/sun/mail/smtp/ |
H A D | SMTPSaslHandler.java | 79 public void auth(String line) throws IOException { argument 80 StringTokenizer ct = new StringTokenizer(line, " ");
|
H A D | SMTPHandler.java | 57 /** Current line. */ 95 //LOGGER.severe("Current line is null!"); 137 LOGGER.severe("Current line is null!"); 200 String line; 201 while ((line = reader.readLine()) != null) { 202 if (line.equals(".")) 244 public void auth(String line) throws IOException { argument
|
/javamail/mail/src/test/java/com/sun/mail/imap/ |
H A D | IMAPIDTest.java | 111 public void id(String line) throws IOException { argument 112 StringTokenizer st = new StringTokenizer(line);
|
H A D | IMAPMessageNumberOutOfRangeTest.java | 129 public void search(String line) throws IOException { argument 135 public void fetch(String line) throws IOException { argument
|
H A D | IMAPUidExpungeTest.java | 91 public void uidfetch(String line) throws IOException { 114 public void uidfetch(String line) throws IOException { 140 public void uidfetch(String line) throws IOException { 168 public void uidfetch(String line) throws IOException { 197 public void uidfetch(String line) throws IOException { 226 public void uidfetch(String line) throws IOException { 256 public void uidfetch(String line) throws IOException { 285 public void uidfetch(String line) throws IOException { 314 public void uidfetch(String line) throws IOException { 343 public void uidfetch(String line) throw 468 fetch(String line) argument [all...] |
H A D | IMAPHandler.java | 59 /** Current line. */ 193 //LOGGER.severe("Current line is null!"); 359 public void list(String line) throws IOException { argument 377 LOGGER.severe("Current line is null!"); 384 String line = readLine(); 386 if (line != null && !line.equalsIgnoreCase("DONE")) { 398 public void fetch(String line) throws IOException { argument 407 public void store(String line) throws IOException { argument 416 public void search(String line) throw argument 426 uidfetch(String line) argument 435 uidstore(String line) argument 444 append(String line) argument 458 id(String line) argument [all...] |
/javamail/mbox/src/main/java/com/sun/mail/mbox/ |
H A D | ContentLengthUpdater.java | 53 private StringBuffer line = new StringBuffer(); field in class:ContentLengthUpdater 65 // if line terminator is CR 69 // else, if line terminator is CRLF 74 // else, if line terminator is \n 89 // If we have a full line, see if it's a Content-Length header. 91 if (line.toString().regionMatches(true, 0, 99 out.write(line.toString().getBytes("iso-8859-1")); 101 line.setLength(0); // clear buffer for next line 104 out.write(b); // write out line terminato [all...] |
H A D | MessageLoader.java | 60 private char[] line; field in class:MessageLoader 71 * only as the line terminators. 83 line = new char[LINELEN]; 125 line = null; 152 // newline at end of line, was the line one of the headers 156 String s = new String(line, 0, lpos); 158 if (line[7] == '-' && isPrefix(s, "Content-Length:")) { 166 } else if ((line[1] == 't' || line[ [all...] |
/javamail/mail/src/main/java/javax/mail/internet/ |
H A D | MimePart.java | 65 * exceed the line length limitation for the transport (1000 bytes for 92 * Add a raw RFC822 header-line. 94 * @param line the line to add 101 public void addHeaderLine(String line) throws MessagingException; argument 105 * line is a raw RFC822 header-line, containing both the "name" 116 * A Header line is a raw RFC822 header-line, containing both 129 * A Header line i [all...] |
H A D | InternetHeaders.java | 52 * until the blank line that indicates end of header. The input stream 70 * exceed the line length limitation for the transport (1000 bytes for 76 * will cause a line containing only whitespace to be considered 77 * a blank line terminating the header. 105 * from the line field as needed. We store the line 107 * get back the exact original line, with the original 110 String line; // the entire RFC822 header "line", field in class:InternetHeaders.InternetHeader 114 * Constructor that takes a line an 429 isEmpty(String line) argument 627 addHeaderLine(String line) argument [all...] |
H A D | MimeBodyPart.java | 69 * exceed the line length limitation for the transport (1000 bytes for 1062 * Add a header line to this body part 1064 public void addHeaderLine(String line) throws MessagingException { argument 1065 headers.addHeaderLine(line); 1070 * line is a raw RFC 822 header line, containing both the "name" 1080 * A Header line is a raw RFC 822 header line, containing both 1091 * A Header line is a raw RFC 822 header line, containin [all...] |
H A D | MimeMessage.java | 88 * exceed the line length limitation for the transport (1000 bytes for 803 * any line breaks. <p> 830 * any line breaks. <p> 1806 * use a variety of line termination conventions. Generally the 1808 * that converts the line terminators to the desired form, either 1810 * or the local platform's line terminator for storage in a local 2024 * Add a raw RFC 822 header-line. 2032 public void addHeaderLine(String line) throws MessagingException { argument 2033 headers.addHeaderLine(line); 2038 * line i [all...] |
/javamail/mail/src/test/java/javax/mail/internet/ |
H A D | HeaderTokenizerTest.java | 122 * If there's any args left on the command line, 162 // a continuation line, add it to the current header 327 private static HeaderTokenizer.Token makeToken(String line) { argument 328 int i = line.indexOf('\t'); 329 int t = type(line.substring(0, i)); 330 String value = line.substring(i + 1);
|
/javamail/mail/src/test/java/com/sun/mail/util/ |
H A D | WriteTimeoutSocketTest.java | 276 public void list(String line) throws IOException { argument
|
/javamail/android/activation/src/main/java/com/sun/activation/registries/ |
H A D | MimeTypeFile.java | 132 String line = null, prev = null; 134 while ((line = buf_reader.readLine()) != null) { 136 prev = line; 138 prev += line; 154 private void parseEntry(String line) { argument 157 line = line.trim(); 159 if (line.length() == 0) // empty line... 162 // check to see if this is a comment line [all...] |
/javamail/mail/src/main/java/com/sun/mail/imap/ |
H A D | IMAPBodyPart.java | 359 public void addHeaderLine(String line) throws MessagingException { argument
|
H A D | IMAPMessage.java | 970 public void addHeaderLine(String line) throws MessagingException { argument
|
/javamail/mail/src/main/java/com/sun/mail/pop3/ |
H A D | POP3Message.java | 202 * the empty line that separates the header from the body. 206 int len = 0; // number of bytes in this line 209 if (c1 == '\n') // end of line 218 break; // in any case, end of line 224 // here when end of line or out of data 230 // if it was an empty line, we're done 489 * Add a raw RFC822 header-line. 497 public void addHeaderLine(String line) throws MessagingException { argument 504 * line is a raw RFC822 header-line, containin [all...] |
/javamail/mail/src/main/java/com/sun/mail/smtp/ |
H A D | SMTPTransport.java | 1643 String line; 1647 while ((line = rd.readLine()) != null) { 1648 if (first) { // skip first line which is the greeting 1652 if (line.length() < 5) 1654 line = line.substring(4); // skip response code 1655 int i = line.indexOf(' '); 1658 arg = line.substring(i + 1); 1659 line = line 2423 isNotLastLine(String line) argument [all...] |