Lines Matching defs:files
55 struct maildir_filename *files, **files_tail, *file_last;
85 /* if we have flags, we'll move it to cur/ directly, because files in
133 ctx->files_tail = &ctx->files;
212 i_assert(ctx->files->next == NULL);
315 mf = save_ctx->files;
507 for (fm = &ctx->files; (*fm)->next != NULL; fm = &(*fm)->next) ;
650 for (mf = ctx->files; mf != NULL; mf = mf->next) T_BEGIN {
653 ctx->files = NULL;
864 ARRAY(struct maildir_filename *) files;
869 /* put files into an array sorted by the destination filename.
872 t_array_init(&files, ctx->files_count);
873 for (mf = ctx->files; mf != NULL; mf = mf->next)
874 array_append(&files, &mf, 1);
875 array_sort(&files, maildir_filename_dest_basename_cmp);
879 array_foreach(&files, mfp) {
904 array_count(&files));
922 for (mf = ctx->files; mf != NULL; mf = mf->next) T_BEGIN {
1034 /* unlink the files we just moved in an attempt to rollback
1036 Dovecot instances haven't yet seen the files. we need
1071 /* delete files in tmp/ */