Searched refs:retrieveConf (Results 1 – 1 of 1) sorted by relevance
288 final RetrieveConf retrieveConf = (RetrieveConf) pdu; in handleReceivedResult() local289 mRecipientsInput.setText(getRecipients(context, retrieveConf)); in handleReceivedResult()290 mSubjectInput.setText(getSubject(retrieveConf)); in handleReceivedResult()291 mTextInput.setText(getMessageText(retrieveConf)); in handleReceivedResult()407 private static String getRecipients(Context context, RetrieveConf retrieveConf) { in getRecipients() argument410 if (retrieveConf.getFrom() != null) { in getRecipients()411 sb.append(retrieveConf.getFrom().getString()); in getRecipients()413 if (retrieveConf.getTo() != null) { in getRecipients()414 for (EncodedStringValue to : retrieveConf.getTo()) { in getRecipients()421 if (retrieveConf.getCc() != null) { in getRecipients()[all …]