Searched refs:executeSimpleCommand (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Email/src/com/android/email/mail/transport/
H A DSmtpSender.java120 executeSimpleCommand(null);
128 String result = executeSimpleCommand("EHLO " + localHost);
140 executeSimpleCommand("STARTTLS");
146 result = executeSimpleCommand("EHLO " + localHost);
205 executeSimpleCommand("MAIL FROM: " + "<" + from.getAddress() + ">");
207 executeSimpleCommand("RCPT TO: " + "<" + address.getAddress() + ">");
210 executeSimpleCommand("RCPT TO: " + "<" + address.getAddress() + ">");
213 executeSimpleCommand("RCPT TO: " + "<" + address.getAddress() + ">");
215 executeSimpleCommand("DATA");
219 executeSimpleCommand("\
243 private String executeSimpleCommand(String command) throws IOException, MessagingException { method in class:SmtpSender
[all...]
/packages/apps/Email/src/com/android/email/mail/store/
H A DPop3Store.java215 executeSimpleCommand("UIDL");
246 executeSimpleCommand(null);
252 executeSimpleCommand("STLS");
281 String response = executeSimpleCommand("STAT");
320 executeSimpleCommand("QUIT");
432 String response = executeSimpleCommand("UIDL " + msgNum);
441 String response = executeSimpleCommand("UIDL");
478 String response = executeSimpleCommand("UIDL");
701 String response = executeSimpleCommand(String.format("LIST %d",
720 String response = executeSimpleCommand("LIS
892 private String executeSimpleCommand(String command) throws IOException, MessagingException { method in class:Pop3Store.Pop3Folder
[all...]
H A DImapStore.java384 List<ImapResponse> responses = connection.executeSimpleCommand(
440 connection.executeSimpleCommand(ImapConstants.NOOP);
528 mConnection.executeSimpleCommand(ImapConstants.NOOP);
554 List<ImapResponse> responses = mConnection.executeSimpleCommand(
644 connection.executeSimpleCommand(String.format(
686 connection.executeSimpleCommand(String.format(ImapConstants.CREATE + " \"%s\"",
709 mConnection.executeSimpleCommand(
730 List<ImapResponse> responses = mConnection.executeSimpleCommand(String.format(
759 responses = mConnection.executeSimpleCommand(
1302 handleUntaggedResponses(mConnection.executeSimpleCommand(ImapConstant
1543 public List<ImapResponse> executeSimpleCommand(String command) throws IOException, method in class:ImapStore.ImapConnection
1548 public List<ImapResponse> executeSimpleCommand(String command, boolean sensitive) method in class:ImapStore.ImapConnection
[all...]

Completed in 96 milliseconds