/packages/apps/Mms/src/com/android/mms/ui/ |
H A D | ConversationListItem.java | 63 private Conversation mConversation; field in class:ConversationListItem 93 return mConversation; 106 String from = mConversation.getRecipients().formatNames(", "); 110 if (mConversation.getMessageCount() > 1) { 113 mConversation.getMessageCount())); 118 if (mConversation.hasDraft()) { 132 if (mConversation.hasUnreadMessages()) { 141 if (mConversation.getRecipients().size() == 1) { 142 Contact contact = mConversation.getRecipients().get(0); 178 mConversation [all...] |
H A D | ComposeMessageActivity.java | 258 private Conversation mConversation; // Conversation we are working in field in class:ComposeMessageActivity 1166 // thread contains no messages and silently deletes the thread. Meanwhile, the mConversation 1171 synchronized(mConversation) { 1172 if (mConversation.getMessageCount() <= 1) { 1173 mConversation.clearThreadId(); 1197 mWorkingMessage.setConversation(mConversation); 1699 if (token != mConversation.getThreadId()) { 1733 return mConversation.getRecipients(); 1926 // mConversation 1930 originalThreadId == mConversation [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
H A D | ConversationPositionTracker.java | 45 private Conversation mConversation; field in class:ConversationPositionTracker 126 * TODO(viki): Get rid of this method and the mConversation field entirely. 129 mConversation = conversation; 171 return mConversation.position; 174 if (cursor == null || mConversation == null) { 183 final int foundPosition = cursor.getConversationPosition(mConversation.id); 185 mConversation.position = foundPosition; 209 " in the cursor. Moving to position %d ", mConversation.toString(), 212 mConversation = new Conversation(cursor); 213 mConversation [all...] |
H A D | AbstractConversationViewFragment.java | 72 protected Conversation mConversation; field in class:AbstractConversationViewFragment 215 mConversation = args.getParcelable(ARG_CONVERSATION); 225 mBaseUri = "x-thread://" + mAccount.getEmailAddress().hashCode() + "/" + mConversation.id; 232 if (!LogUtils.isLoggable(LOG_TAG, LogUtils.DEBUG) || mConversation == null) { 235 return "(" + s + " conv=" + mConversation + ")"; 269 return mConversation; 412 return new MessageLoader(mActivity.getActivityContext(), mConversation.messageListUri); 446 mConversation.uri); 510 LogUtils.w(LOG_TAG, "ignoring onConversationSeen for conv=%s", mConversation.id); 514 mViewState.setInfoForConversation(mConversation); [all...] |
H A D | SecureConversationViewFragment.java | 145 headerView.setFolders(mConversation); 146 headerView.setSubject(mConversation.subject); 199 if (activity == null || mConversation == null || message == null) { 201 mConversation != null ? mConversation.id : 0); 206 activity.getConversationUpdater().markConversationMessagesUnread(mConversation, uris,
|
H A D | ConversationViewFragment.java | 302 if (mConversation != null && mConversation.conversationBaseUri != null && 305 new SetCookieTask(getContext(), mConversation.conversationBaseUri, 465 LogUtils.w(LOG_TAG, "ignoring markUnread for conv=%s", mConversation.id); 471 mConversation.id); 474 activity.getConversationUpdater().markConversationMessagesUnread(mConversation, 515 || (mConversation != null && (mConversation.isRemote 516 || mConversation.getNumMessages() > mMaxAutoLoadMessages)); 579 fw = new java.io.FileWriter("/sdcard/conv" + mConversation [all...] |
/packages/apps/Mms/src/com/android/mms/data/ |
H A D | WorkingMessage.java | 128 private Conversation mConversation; field in class:WorkingMessage 782 mConversation.setRecipients(recipients); // resets the threadId to zero 809 if (DEBUG) LogTag.debug("saveAsMms mConversation=%s", mConversation); 813 LogTag.warn("saveAsMms mDiscarded: true mConversation: " + mConversation + 830 if (!mConversation.getRecipients().isEmpty()) { 831 mConversation.ensureThreadId(); 833 mConversation.setDraftState(true); 836 SendReq sendReq = makeSendReq(mConversation, mSubjec [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
H A D | ConversationViewAdapter.java | 86 public final Conversation mConversation; field in class:ConversationViewAdapter.ConversationHeaderItem 89 mConversation = conv; 103 headerView.setSubject(mConversation.subject); 106 headerView.setFolders(mConversation);
|
H A D | ConversationCursor.java | 1701 private final Conversation mConversation; field in class:ConversationCursor.ConversationOperation 1720 mConversation = conv; 1745 sProvider.commitMostlyDead(mConversation, ConversationCursor.this); 1749 sProvider.setMostlyDead(mConversation, ConversationCursor.this); 1765 sProvider.commitMostlyDead(mConversation, ConversationCursor.this); 1769 sProvider.setMostlyDead(mConversation,ConversationCursor.this); 1781 sProvider.commitMostlyDead(mConversation, ConversationCursor.this); 1785 sProvider.setMostlyDead(mConversation, ConversationCursor.this);
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
H A D | NotificationActionUtils.java | 394 private final Conversation mConversation; field in class:NotificationActionUtils.NotificationAction 408 mConversation = conversation; 426 return mConversation; 478 out.writeParcelable(mConversation, 0); 509 mConversation = in.readParcelable(loader);
|