Searched defs:_src (Results 1 - 7 of 7) sorted by relevance

/dovecot/src/lib-mail/
H A Dqp-encoder.c90 void qp_encoder_more(struct qp_encoder *qp, const void *_src, size_t src_size) argument
92 const unsigned char *src = _src;
93 i_assert(_src != NULL || src_size == 0);
/dovecot/src/lib-imap/
H A Dimap-utf7.c188 static int mbase64_decode_to_utf8(string_t *dest, const char **_src) argument
190 const char *src = *_src;
247 *_src = src + 1;
/dovecot/src/lib-fs/
H A Dfs-test.c244 static int fs_test_copy(struct fs_file *_src, struct fs_file *_dest) argument
249 if (_src != NULL)
250 dest->copy_src = test_fs_file_get(_src->fs, fs_file_path(_src));
272 static int fs_test_rename(struct fs_file *_src, struct fs_file *_dest) argument
274 struct test_fs_file *src = (struct test_fs_file *)_src;
282 if (fs_test_copy(_src, _dest) < 0)
H A Dfs-metawrap.c481 static int fs_metawrap_copy(struct fs_file *_src, struct fs_file *_dest) argument
486 return fs_wrapper_copy(_src, _dest);
488 return fs_default_copy(_src, _dest);
H A Dfs-posix.c711 static int fs_posix_copy(struct fs_file *_src, struct fs_file *_dest) argument
713 struct posix_fs_file *src = (struct posix_fs_file *)_src;
715 struct posix_fs *fs = (struct posix_fs *)_src->fs;
733 fs_set_error(_src->fs, "link(%s, %s) failed: %m",
740 static int fs_posix_rename(struct fs_file *_src, struct fs_file *_dest) argument
742 struct posix_fs *fs = (struct posix_fs *)_src->fs;
743 struct posix_fs_file *src = (struct posix_fs_file *)_src;
757 fs_set_error(_src->fs, "rename(%s, %s) failed: %m",
H A Dfs-randomfail.c426 static int fs_randomfail_copy(struct fs_file *_src, struct fs_file *_dest) argument
434 if (_src != NULL)
435 ret = fs_copy(_src->parent, _dest->parent);
441 static int fs_randomfail_rename(struct fs_file *_src, struct fs_file *_dest) argument
448 ret = fs_rename(_src->parent, _dest->parent);
/dovecot/src/lib/
H A Dbuffer.c262 const buffer_t *_src, size_t src_pos, size_t copy_size)
265 const struct real_buffer *src = (const struct real_buffer *)_src;
261 buffer_copy(buffer_t *_dest, size_t dest_pos, const buffer_t *_src, size_t src_pos, size_t copy_size) argument

Completed in 22 milliseconds