Lines Matching refs:update
182 const struct mailbox_update *update)
194 if (update != NULL && !guid_128_is_empty(update->mailbox_guid)) {
195 memcpy(new_hdr.mailbox_guid, update->mailbox_guid,
214 const struct mailbox_update *update,
228 if (update != NULL && update->uid_validity != 0)
229 uid_validity = update->uid_validity;
242 if (update != NULL && hdr->next_uid < update->min_next_uid) {
243 uid_next = update->min_next_uid;
248 if (update != NULL && update->min_first_recent_uid != 0 &&
249 hdr->first_recent_uid < update->min_first_recent_uid) {
250 uint32_t first_recent_uid = update->min_first_recent_uid;
256 if (update != NULL && update->min_highest_modseq != 0 &&
258 update->min_highest_modseq) {
261 update->min_highest_modseq);
270 sdbox_update_header(mbox, trans, update);
379 const struct mailbox_update *update, bool directory)
385 if (dbox_mailbox_create(box, update, directory) < 0)
419 dbox_mailbox_update(struct mailbox *box, const struct mailbox_update *update)
425 if (sdbox_mailbox_create_indexes(box, update, NULL) < 0)
427 return index_storage_mailbox_update_common(box, update);