OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:executeSimpleCommand
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Email/src/com/android/email/mail/transport/
SmtpSender.java
88
executeSimpleCommand
(null);
104
String result =
executeSimpleCommand
("EHLO " + localHost);
116
executeSimpleCommand
("STARTTLS");
122
result =
executeSimpleCommand
("EHLO " + localHost);
181
executeSimpleCommand
("MAIL FROM:" + "<" + from.getAddress() + ">");
183
executeSimpleCommand
("RCPT TO:" + "<" + address.getAddress().trim() + ">");
186
executeSimpleCommand
("RCPT TO:" + "<" + address.getAddress().trim() + ">");
189
executeSimpleCommand
("RCPT TO:" + "<" + address.getAddress().trim() + ">");
191
executeSimpleCommand
("DATA");
198
executeSimpleCommand
("\r\n.")
[
all
...]
/packages/apps/Email/src/com/android/email/mail/store/
Pop3Store.java
175
executeSimpleCommand
("UIDL");
208
executeSimpleCommand
(null);
214
executeSimpleCommand
("STLS");
243
String response =
executeSimpleCommand
("STAT");
284
executeSimpleCommand
("QUIT");
395
String response =
executeSimpleCommand
("UIDL " + msgNum);
404
String response =
executeSimpleCommand
("UIDL");
566
response =
executeSimpleCommand
(String.format(Locale.US, "RETR %d", messageId));
570
response =
executeSimpleCommand
(
574
response =
executeSimpleCommand
(
[
all
...]
ImapConnection.java
283
List<ImapResponse>
executeSimpleCommand
(String command) throws IOException,
285
return
executeSimpleCommand
(command, false);
321
List<ImapResponse>
executeSimpleCommand
(String command, boolean sensitive)
348
for (ImapResponse r :
executeSimpleCommand
(ImapConstants.CAPABILITY)) {
389
executeSimpleCommand
(mIdPhrase);
414
responseList =
executeSimpleCommand
(ImapConstants.NAMESPACE);
446
executeSimpleCommand
(mLoginPhrase, true);
469
responseList =
executeSimpleCommand
(ImapConstants.LIST + " \"\" \"\"");
497
executeSimpleCommand
(ImapConstants.STARTTLS);
ImapFolder.java
104
mConnection.
executeSimpleCommand
(ImapConstants.NOOP);
193
connection.
executeSimpleCommand
(String.format(Locale.US,
239
connection.
executeSimpleCommand
(String.format(Locale.US,
263
List<ImapResponse> responseList = mConnection.
executeSimpleCommand
(
352
final List<ImapResponse> responses = mConnection.
executeSimpleCommand
(
415
final String[] result = getSearchUids(mConnection.
executeSimpleCommand
(command));
[
all
...]
ImapStore.java
380
connection.
executeSimpleCommand
(ImapConstants.NOOP);
385
List<ImapResponse> responses = connection.
executeSimpleCommand
(imapCommand);
504
connection.
executeSimpleCommand
(ImapConstants.NOOP);
Completed in 62 milliseconds