Searched defs:command (Results 1 - 8 of 8) sorted by relevance

/packages/apps/Email/src/com/android/email/mail/transport/
H A DDiscourseLogger.java79 public void addSentCommand(String command) { argument
80 addLine(command);
H A DSmtpSender.java238 * Send a single command and wait for a single response. Handles responses that continue
242 * @param command The command string to send to the server.
245 private String executeSimpleCommand(String command) throws IOException, MessagingException { argument
246 return executeSensitiveCommand(command, null);
250 * Send a single command and wait for a single response. Handles responses that continue
253 * @param command The command string to send to the server.
254 * @param sensitiveReplacement If the command includes sensitive data (e.g. authentication)
258 private String executeSensitiveCommand(String command, Strin argument
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DAttachmentTypeSelectorAdapter.java83 int resource, int command) {
84 AttachmentListItem temp = new AttachmentListItem(title, resource, command);
91 public AttachmentListItem(String title, int resource, int command) { argument
94 mCommand = command;
82 addItem(List<IconListItem> data, String title, int resource, int command) argument
/packages/apps/Contacts/tests/src/com/android/contacts/util/
H A DFakeAsyncTaskExecutor.java114 public void execute(Runnable command) { argument
118 command, mNextTask));
/packages/apps/Email/src/com/android/email/mail/store/
H A DImapConnection.java63 private static final String IMAP_REDACTED_LOG = "[IMAP command redacted]";
70 /** # of command/response lines to log upon crash. */
234 * Send a single command to the server. The command will be preceded by an IMAP command
237 * @param command The command to send to the server
238 * @param sensitive If true, the command will not be logged
239 * @return Returns the command tag that was sent
241 String sendCommand(String command, boolea argument
285 executeSimpleCommand(String command) argument
323 executeSimpleCommand(String command, boolean sensitive) argument
[all...]
H A DPop3Store.java454 * In extreme cases we'll do a UIDL command per message instead of a bulk
556 * Parse a single-line response. This is returned from a command of the form
589 * Parse a multi-line response. This is returned from a command of the form
715 * In extreme cases we'll do a command per message instead of a bulk request
901 * The server may not support the CAPA command, so we just eat this Exception
909 * Send a single command and wait for a single line response. Reopens the connection,
912 * @param command The command string to send to the server.
915 private String executeSimpleCommand(String command) throws IOException, MessagingException { argument
916 return executeSensitiveCommand(command, nul
928 executeSensitiveCommand(String command, String sensitiveReplacement) argument
[all...]
/packages/apps/Phone/src/com/android/phone/
H A DPhoneInterfaceManager.java179 * Posts the specified command to be executed on the main thread,
183 private Object sendRequest(int command, Object argument) { argument
189 Message msg = mMainThreadHandler.obtainMessage(command, request);
207 * Posts the specified command to be executed on the main thread, and
211 private void sendRequestAsync(int command) { argument
212 mMainThreadHandler.sendEmptyMessage(command);
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetStateMachine.java1272 * Put the AT command, company ID, arguments, and device in an Intent and broadcast it.
1274 private void broadcastVendorSpecificEventIntent(String command, argument
1279 log("broadcastVendorSpecificEventIntent(" + command + ")");
1282 intent.putExtra(BluetoothHeadset.EXTRA_VENDOR_SPECIFIC_HEADSET_EVENT_CMD, command);
1728 Log.e(TAG, "processAtXevent: command type error");

Completed in 663 milliseconds