Lines Matching defs:rec
81 name = "ext-rec";
268 const struct mail_index_record *rec = data;
271 for (; size > 0; size -= sizeof(*rec), rec++) {
272 printf("%u", rec->uid);
273 if (rec->flags != 0)
274 printf(" (flags=%x)", rec->flags);
350 const struct mail_transaction_ext_rec_update *rec = data, *end;
354 record_size = (sizeof(*rec) + prev_intro.record_size + 3) & ~3;
355 while (rec < end) {
356 printf(" - uid=%u: ", rec->uid);
357 if (prev_intro.record_size <= (char*)end - (char *)(rec+1))
358 print_data(rec + 1, prev_intro.record_size);
362 rec = CONST_PTR_OFFSET(rec, record_size);
367 const struct mail_transaction_ext_atomic_inc *rec = data, *end;
370 for (; rec < end; rec++) {
371 printf(" - uid=%u: ", rec->uid);
372 if (rec->diff > 0)
373 printf("+%d\n", rec->diff);
375 printf("%d\n", rec->diff);
409 const struct mail_transaction_modseq_update *rec, *end;
412 for (rec = data; rec < end; rec++) {
413 printf(" - uid=%u modseq=%"PRIu64"\n", rec->uid,
414 ((uint64_t)rec->modseq_high32 << 32) |
415 rec->modseq_low32);
423 const struct mail_transaction_boundary *rec = data;
425 printf(" - size=%u\n", rec->size);
483 i_fatal("rec hdr read() %"PRIuSIZE_T" != %"PRIuSIZE_T,
505 i_fatal("rec data read() %"PRIuSIZE_T" != %"PRIuSIZE_T,