Home | History | Annotate | Download | only in store

Lines Matching refs:responses

89  * Further, the server may return the information in separate FETCH responses
384 List<ImapResponse> responses = connection.executeSimpleCommand(
387 for (ImapResponse response : responses) {
554 List<ImapResponse> responses = mConnection.executeSimpleCommand(
559 * unless we are notified otherwise in the responses.
564 for (ImapResponse response : responses) {
730 List<ImapResponse> responses = mConnection.executeSimpleCommand(String.format(
734 for (ImapResponse response : responses) {
756 List<ImapResponse> responses;
759 responses = mConnection.executeSimpleCommand(
768 for (ImapResponse response : responses) {
1014 * Handle any untagged responses that the caller doesn't care to handle themselves.
1015 * @param responses
1017 private void handleUntaggedResponses(List<ImapResponse> responses) {
1018 for (ImapResponse response : responses) {
1457 // Special case to handle malformed OK responses and ignore them.
1553 ArrayList<ImapResponse> responses = new ArrayList<ImapResponse>();
1557 responses.add(response);
1565 return responses;