Home | History | Annotate | Download | only in browse

Lines Matching refs:UPDATE

72  * ConversationCursor is a wrapper around a conversation list cursor that provides update/delete
691 // Remove the entry if it was time for an update or the item was deleted by the user.
712 // If the underlying cursor has received an update before we have gotten to this
1299 // so that we can intercept update/delete and handle it ourselves
1446 public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
1447 throw new IllegalStateException("Unexpected call to ConversationProvider.update");
1467 static final int UPDATE = 2;
1499 case UPDATE:
1500 return mResolver.update(mUri, mValues, null, null);
1688 public static final int UPDATE = 2;
1697 public static final int MOSTLY_DESTRUCTIVE_UPDATE = MOSTLY | UPDATE;
1733 case UPDATE:
1775 // Create an update operation that represents archive
1786 // Create an update operation that represents archive
1796 // Create an update operation that represents mute
1809 // Create an update operation that represents report spam
1816 // Create an update operation that represents report phishing
1824 // Create an update operation that represents discarding drafts
1985 // Below are methods that update Conversation data (update/delete)
1992 * Update an integer column for a group of conversations (see updateValues below)
2006 * Update a string column for a group of conversations (see updateValues below)
2016 * Update a string column for a group of conversations (see updateValues below)
2028 * Update a string columns for a group of conversations (see updateValues below)
2040 * Update a boolean column for a group of conversations, immediately in the UI and in a single
2043 * @param values the data to update
2048 getOperationsForConversations(conversations, ConversationOperation.UPDATE, values));
2100 return getOperationForConversation(conv, ConversationOperation.UPDATE, values);
2339 // will update everything properly.