Lines Matching defs:rec
17 struct mailbox_log_record rec;
22 ret = read(fd, &rec, sizeof(rec));
26 if (ret != sizeof(rec)) {
27 i_fatal("rec read() %"PRIuSIZE_T" != %"PRIuSIZE_T,
28 ret, sizeof(rec));
32 switch (rec.type) {
52 printf(" %s", binary_to_hex(rec.mailbox_guid,
53 sizeof(rec.mailbox_guid)));
55 timestamp = be32_to_cpu_unaligned(rec.timestamp);
80 struct mailbox_log_record rec;
91 if (read(fd, &rec, sizeof(rec)) == sizeof(rec) &&
92 rec.padding[0] == 0 && rec.padding[1] == 0 && rec.padding[2] == 0) {
93 enum mailbox_log_record_type type = rec.type;