Searched refs:dest_r (Results 1 - 11 of 11) sorted by relevance
/dovecot/src/doveadm/dsync/ |
H A D | dsync-mailbox.c | 11 struct dsync_mailbox_attribute *dest_r) 13 dest_r->type = src->type; 14 dest_r->key = p_strdup(pool, src->key); 15 dest_r->value = p_strdup(pool, src->value); 17 dest_r->value_stream = src->value_stream; 18 i_stream_ref(dest_r->value_stream); 21 dest_r->deleted = src->deleted; 22 dest_r->last_change = src->last_change; 23 dest_r->modseq = src->modseq; 9 dsync_mailbox_attribute_dup(pool_t pool, const struct dsync_mailbox_attribute *src, struct dsync_mailbox_attribute *dest_r) argument
|
H A D | dsync-mail.c | 136 struct dsync_mail_change *dest_r) 138 dest_r->type = src->type; 139 dest_r->uid = src->uid; 141 dest_r->guid = *src->guid == '\0' ? "" : 144 dest_r->hdr_hash = p_strdup(pool, src->hdr_hash); 145 dest_r->modseq = src->modseq; 146 dest_r->pvt_modseq = src->pvt_modseq; 148 dest_r->add_flags = src->add_flags; 149 dest_r->remove_flags = src->remove_flags; 150 dest_r 135 dsync_mail_change_dup(pool_t pool, const struct dsync_mail_change *src, struct dsync_mail_change *dest_r) argument [all...] |
H A D | dsync-mailbox.h | 39 struct dsync_mailbox_attribute *dest_r);
|
H A D | dsync-mail.h | 106 struct dsync_mail_change *dest_r);
|
/dovecot/src/lib-imap/ |
H A D | imap-utf7.h | 7 int t_imap_utf8_to_utf7(const char *src, const char **dest_r);
|
H A D | imap-utf7.c | 121 int t_imap_utf8_to_utf7(const char *src, const char **dest_r) argument 127 *dest_r = src; 133 *dest_r = str_c(str);
|
/dovecot/src/lib/ |
H A D | path-util.h | 58 int t_readlink(const char *path, const char **dest_r, const char **error_r);
|
H A D | path-util.c | 336 int t_readlink(const char *path, const char **dest_r, const char **error_r) argument 357 *dest_r = dest;
|
/dovecot/src/plugins/old-stats/ |
H A D | mail-stats-fill.c | 112 user_trans_stats_get(struct stats_user *suser, struct mail_stats *dest_r) argument 116 mail_stats_add_transaction(dest_r, &suser->finished_transaction_stats); 118 mail_stats_add_transaction(dest_r, &strans->trans->stats);
|
/dovecot/src/plugins/acl/ |
H A D | acl-api-private.h | 118 pool_t pool, struct acl_rights *dest_r);
|
H A D | acl-api.c | 442 pool_t pool, struct acl_rights *dest_r) 444 i_zero(dest_r); 445 dest_r->id_type = src->id_type; 446 dest_r->identifier = p_strdup(pool, src->identifier); 447 dest_r->rights = src->rights == NULL ? NULL : 449 dest_r->neg_rights = src->neg_rights == NULL ? NULL : 451 dest_r->global = src->global; 441 acl_rights_dup(const struct acl_rights *src, pool_t pool, struct acl_rights *dest_r) argument
|
Completed in 26 milliseconds