HomeSort by relevance Sort by last modified time
    Searched defs:executeSimpleCommand (Results 1 - 7 of 7) sorted by null

  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/
ImapConnection.java 173 executeSimpleCommand(ImapConstants.STARTTLS);
187 executeSimpleCommand(getLoginPhrase(), true);
242 executeSimpleCommand(ImapConstants.AUTHENTICATE + " " + ImapConstants.AUTH_DIGEST_MD5);
283 List<ImapResponse> responses = executeSimpleCommand(ImapConstants.CAPABILITY);
331 public List<ImapResponse> executeSimpleCommand(String command)
333 return executeSimpleCommand(command, false);
347 public List<ImapResponse> executeSimpleCommand(String command, boolean sensitive)
ImapFolder.java 176 final String[] result = getSearchUids(connection.executeSimpleCommand(command));
663 handleUntaggedResponses(connection.executeSimpleCommand(ImapConstants.EXPUNGE));
695 connection.executeSimpleCommand(
717 connection.executeSimpleCommand(
760 connection.executeSimpleCommand(
  /packages/apps/Email/src/com/android/email/mail/transport/
SmtpSender.java 95 executeSimpleCommand(null);
111 String result = executeSimpleCommand("EHLO " + localHost);
123 executeSimpleCommand("STARTTLS");
129 result = executeSimpleCommand("EHLO " + localHost);
195 executeSimpleCommand("MAIL FROM:" + "<" + from.getAddress() + ">");
197 executeSimpleCommand("RCPT TO:" + "<" + address.getAddress().trim() + ">");
200 executeSimpleCommand("RCPT TO:" + "<" + address.getAddress().trim() + ">");
203 executeSimpleCommand("RCPT TO:" + "<" + address.getAddress().trim() + ">");
205 executeSimpleCommand("DATA");
212 executeSimpleCommand("\r\n.")
    [all...]
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapConnection.java 326 List<ImapResponse> executeSimpleCommand(String command) throws IOException, MessagingException {
327 return executeSimpleCommand(command, false);
372 List<ImapResponse> executeSimpleCommand(String command, boolean sensitive)
401 for (ImapResponse r : executeSimpleCommand(ImapConstants.CAPABILITY)) {
443 executeSimpleCommand(mIdPhrase);
468 responseList = executeSimpleCommand(ImapConstants.NAMESPACE);
502 executeSimpleCommand(getLoginPhrase(), true);
591 responseList = executeSimpleCommand(ImapConstants.LIST + " \"\" \"\"");
619 executeSimpleCommand(ImapConstants.STARTTLS);
Pop3Store.java 173 executeSimpleCommand("UIDL");
206 executeSimpleCommand(null);
212 executeSimpleCommand("STLS");
241 String response = executeSimpleCommand("STAT");
282 executeSimpleCommand("QUIT");
393 String response = executeSimpleCommand("UIDL " + msgNum);
402 String response = executeSimpleCommand("UIDL");
564 response = executeSimpleCommand(String.format(Locale.US, "RETR %d", messageId));
568 response = executeSimpleCommand(
572 response = executeSimpleCommand(
    [all...]
ImapFolder.java 109 mConnection.executeSimpleCommand(ImapConstants.NOOP);
198 connection.executeSimpleCommand(String.format(Locale.US,
244 connection.executeSimpleCommand(String.format(Locale.US,
268 List<ImapResponse> responseList = mConnection.executeSimpleCommand(
357 final List<ImapResponse> responses = mConnection.executeSimpleCommand(
420 final String[] result = getSearchUids(mConnection.executeSimpleCommand(command));
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/imap/
ImapHelper.java 419 connection.executeSimpleCommand(command, false);

Completed in 850 milliseconds