Searched defs:files (Results 1 - 14 of 14) sorted by relevance

/dovecot/src/auth/
H A Ddb-passwd-file.h38 HASH_TABLE(char *, struct passwd_file *) files; member in struct:db_passwd_file
/dovecot/src/config/
H A Dsysinfo-get.c59 static const char *files[] = { local
75 for (i = 0; files[i] != NULL; i += 2) {
76 if (readfile(files[i+1], &name)) {
77 return t_strconcat(files[i], t_strcut(name, '\n'),
/dovecot/src/lib-index/
H A Dtest-mail-transaction-log-view.c33 for (file = log->files; file != NULL; file = file->next) {
82 /* files must be sorted by file_seq */
83 for (p = &log->files; *p != NULL; p = &(*p)->next) {
95 struct mail_transaction_log_file *const *files; local
99 files = array_get(&view->file_refs, &count);
101 if (files[i]->hdr.file_seq == file_seq) {
163 /* we have files 1-3 opened */
203 oldfile = log->files;
204 buffer_free(&log->files->buffer);
205 log->files
[all...]
H A Dmail-transaction-log-private.h27 /* refcount=0 is a valid state. files start that way, and they're
82 /* files is a linked list of all the opened log files. the list is
85 struct mail_transaction_log_file *files, *head; member in struct:mail_transaction_log
H A Dmail-transaction-log-view.c33 struct mail_transaction_log_file *const *files; local
36 files = array_get(&view->file_refs, &count);
38 files[i]->refcount--;
70 if (log->files == NULL)
73 for (file = log->files; file != NULL; file = file->next)
83 struct mail_transaction_log_file *file, *const *files; local
102 if (view->log->files->hdr.prev_file_seq != 0) {
106 view->log->files->hdr.prev_file_seq);
110 min_file_seq = view->log->files->hdr.file_seq;
119 for (file = view->log->files; fil
[all...]
/dovecot/src/lib-storage/index/dbox-multi/
H A Dmdbox-map-private.h38 ARRAY(struct dbox_file *) files; member in struct:mdbox_map_append_context
H A Dmdbox-file.c30 struct mdbox_file *const *files; local
33 files = array_get(&storage->open_files, &count);
35 if (files[i]->file_id == file_id)
36 return files[i];
43 struct mdbox_file *const *files; local
46 files = array_get(&storage->open_files, &count);
48 dbox_file_free(&files[i]->file);
54 struct mdbox_file *const *files; local
57 files = array_get(&storage->open_files, &count);
59 if (files[
67 struct mdbox_file *const *files; local
225 struct mdbox_file *const *files, *oldest_file = NULL; local
[all...]
H A Dmdbox-map.c8 #include "unlink-old-files.h"
122 /* check once in a while if there are temp files to clean up */
167 files that may already exist. */
215 /* some open files may have read partially written mails. now that
713 messages that have already been moved to other files. */
753 i_array_init(&ctx->files, 64);
760 latest files */
908 /* there shouldn't be many files open, don't bother with anything
932 /* first try to use files already used in this append */
976 few m.* files i
1434 struct dbox_file **files; local
[all...]
/dovecot/src/lib-storage/index/dbox-single/
H A Dsdbox-save.c33 ARRAY(struct dbox_file *) files; member in struct:sdbox_save_context
42 struct dbox_file *const *files, *file; local
47 files = array_get(&ctx->files, &count);
51 file = files[seq - ctx->first_saved_seq];
77 i_array_init(&ctx->files, 32);
85 struct dbox_file *const *files; local
91 files = array_get(&ctx->files, &count);
95 dbox_file_close(files[coun
176 struct dbox_file **files; local
236 struct dbox_file *const *files; local
262 struct dbox_file *const *files; local
283 struct dbox_file **files; local
[all...]
/dovecot/src/doveadm/
H A Ddoveadm-fs.c259 struct fs_file **files; member in struct:fs_delete_ctx
268 if (ctx->files[i] == NULL)
270 else if (fs_delete(ctx->files[i]) == 0)
271 fs_file_deinit(&ctx->files[i]);
276 i_error("%s doesn't exist: %s", fs_file_path(ctx->files[i]),
277 fs_file_last_error(ctx->files[i]));
282 fs_file_path(ctx->files[i]),
283 fs_file_last_error(ctx->files[i]));
298 if (ctx->files[i] != NULL)
301 ctx->files[
[all...]
H A Ddoveadm-log.c67 HASH_TABLE(char *, struct log_find_file *) files; member in struct:log_find_context
76 file = hash_table_lookup(ctx->files, path);
80 hash_table_insert(ctx->files, key, file);
120 } else if (hash_table_lookup(ctx->files,
126 hash_table_insert(ctx->files, key, file);
183 iter = hash_table_iterate_init(ctx->files);
184 while (hash_table_iterate(iter, ctx->files, &key, &file)) {
209 printf("Looking for log files from %s\n", log_dir);
213 /* give syslog some time to write the messages to files */
227 hash_table_create(&ctx.files, ct
[all...]
/dovecot/src/lib-fs/
H A Dfs-test.c327 const char *const *files, *p; local
331 files = array_get(&fs->iter_files, &count);
333 const char *fname = files[iter->idx];
386 for (file = fs->files;; file = file->next) {
H A Dfs-api-private.h92 struct fs_file *files; member in struct:fs
102 /* linked list of all files */
/dovecot/src/lib-storage/index/maildir/
H A Dmaildir-save.c55 struct maildir_filename *files, **files_tail, *file_last; member in struct:maildir_save_context
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 int
[all...]

Completed in 85 milliseconds