Lines Matching refs:seq
117 uint32_t seq;
128 for (seq = u->uid1; seq <= u->uid2; seq++) {
129 rec = mail_index_lookup(t->view, seq);
133 seq_range_array_add(&keeps, seq);
147 uint32_t seq;
162 for (seq = t->min_flagupdate_seq; seq <= t->max_flagupdate_seq; seq++) {
163 if (mail_index_modseq_lookup(t->view, seq) > t->max_modseq) {
164 ret1 = mail_index_cancel_flag_updates(t, seq);
165 ret2 = mail_index_cancel_keyword_updates(t, seq);
168 16, seq);
176 mail_index_transaction_get_uid(struct mail_index_transaction *t, uint32_t seq)
180 i_assert(seq > 0);
182 if (seq >= t->first_new_seq)
183 rec = mail_index_transaction_lookup(t, seq);
185 i_assert(seq <= t->view->map->hdr.messages_count);
186 rec = MAIL_INDEX_REC_AT_SEQ(t->view->map, seq);
196 uint32_t *seq;
204 seq = array_idx_modifiable(array, i);
205 *seq = mail_index_transaction_get_uid(t, *seq);