Searched defs:exp (Results 1 - 4 of 4) sorted by relevance
/dovecot/src/lib/ |
H A D | test-time-util.c | 331 const char *exp = "Thu, 08 Dec 2016 18:42:16"; local 332 test_assert(strcmp(t_strftime(RFC2822_FMT, gmtime(&ts)), exp) == 0); 333 test_assert(strcmp(t_strfgmtime(RFC2822_FMT, ts), exp) == 0);
|
/dovecot/src/lib-storage/ |
H A D | test-mailbox-get.c | 62 static struct mail_transaction_expunge_guid exp; local 74 exp.uid = expunge_uids[expunge_idx]; 75 memcpy(exp.guid_128, mail_guids[expunge_idx], sizeof(exp.guid_128)); 77 hdr.size = sizeof(exp); 78 *data_r = &exp; 102 const struct mailbox_expunge_rec *exp; local 128 exp = array_get(&expunges, &count); 130 test_assert(exp[0].uid == 3); 131 test_assert(memcmp(exp[ [all...] |
/dovecot/src/doveadm/ |
H A D | doveadm-dump-log.c | 248 const struct mail_transaction_expunge *exp = data; local 251 for (; size > 0; size -= sizeof(*exp), exp++) { 252 printf("%u-%u,", exp->uid1, exp->uid2); 258 const struct mail_transaction_expunge_guid *exp = data; local 260 for (; size > 0; size -= sizeof(*exp), exp++) { 261 printf(" - uid=%u (guid ", exp->uid); 262 print_data(exp [all...] |
/dovecot/src/lib-index/ |
H A D | mail-index-sync.c | 617 const struct mail_transaction_expunge_guid *exp) 620 rec->uid1 = exp->uid; 621 rec->uid2 = exp->uid; 622 memcpy(rec->guid_128, exp->guid_128, sizeof(rec->guid_128)); 616 mail_index_sync_get_expunge(struct mail_index_sync_rec *rec, const struct mail_transaction_expunge_guid *exp) argument
|
Completed in 14 milliseconds