Searched defs:modseq_hdr (Results 1 - 3 of 3) sorted by relevance

/dovecot/src/lib-storage/index/
H A Dindex-rebuild.c117 struct mail_index_modseq_header modseq_hdr; local
164 i_zero(&modseq_hdr);
165 modseq_hdr.highest_modseq = mail_index_modseq_get_highest(ctx->view);
168 if (modseq_hdr.highest_modseq < modseq)
169 modseq_hdr.highest_modseq = modseq;
172 0, &modseq_hdr, sizeof(modseq_hdr));
/dovecot/src/lib-index/
H A Dmail-index-modseq.c112 const struct mail_index_modseq_header *modseq_hdr; local
114 modseq_hdr = mail_index_map_get_modseq_header(map);
115 if (modseq_hdr != NULL && modseq_hdr->highest_modseq != 0)
116 return modseq_hdr->highest_modseq;
H A Dmail-transaction-log-file.c140 const struct mail_index_modseq_header *modseq_hdr; local
152 modseq_hdr = mail_index_map_get_modseq_header(map);
159 } else if (modseq_hdr == NULL && file->hdr.initial_modseq == 0) {
163 } else if (modseq_hdr == NULL ||
164 modseq_hdr->log_seq != file->hdr.file_seq) {
168 } else if (modseq_hdr->log_offset > head_offset) {
170 "%s: modseq_hdr.log_offset too large",
176 file->sync_offset = modseq_hdr->log_offset;
177 file->sync_highest_modseq = modseq_hdr->highest_modseq;

Completed in 12 milliseconds