/dovecot/src/lib-storage/index/mbox/ |
H A D | mbox-sync-list-index.c | 42 if (rec == NULL || expunged || rec->mtime == 0) { 56 if ((time_t)rec->mtime != st.st_mtime || 86 new_rec.mtime = mhdr->sync_mtime;
|
H A D | mbox-storage.h | 27 uint32_t mtime; member in struct:mbox_list_index_record
|
/dovecot/src/plugins/acl/ |
H A D | acl-backend-vfile.h | 34 time_t mtime; member in struct:acl_backend_vfile_acllist 61 const char *name, time_t mtime);
|
H A D | acl-backend-vfile-acllist.c | 106 /* see if the file's mtime has changed */ 137 acllist.mtime = 0; 139 acllist.mtime = acllist.mtime * 10 + (*p - '0'); 196 if (acl_backend_vfile_object_get_mtime(aclobj, &acllist.mtime) < 0) 206 dec2str(acllist.mtime), name); 357 const char *name, time_t mtime) 366 if (acllist != NULL && acllist->mtime != mtime) 356 acl_backend_vfile_acllist_verify(struct acl_backend_vfile *backend, const char *name, time_t mtime) argument
|
H A D | acl-backend-vfile.c | 558 time_t mtime; local 611 if (acl_backend_vfile_object_get_mtime(_aclobj, &mtime) == 0) 612 acl_backend_vfile_acllist_verify(backend, _aclobj->name, mtime);
|
/dovecot/src/lib-storage/index/raw/ |
H A D | raw-mail.c | 30 if (mbox->mtime != (time_t)-1) 31 mbox->mtime = st->st_mtime; 43 if (mbox->mtime == (time_t)-1) { 48 *date_r = mail->data.received_date = mbox->mtime;
|
H A D | raw-storage.h | 17 time_t mtime, ctime; member in struct:raw_mailbox
|
H A D | raw-storage.c | 81 raw_box->mtime = received_time; 142 mbox->mtime = mbox->ctime = (time_t)-1; 155 mbox->mtime = mbox->ctime = ioloop_time;
|
/dovecot/src/lib/ |
H A D | file-dotlock.c | 35 /* NFS may return a cached mtime in stat(). A later non-cached stat() may 36 return a slightly different mtime. Allow the difference to be this much 37 and still consider it to be the same mtime. */ 45 time_t mtime; member in struct:dotlock 58 time_t ctime, mtime; member in struct:file_change_info 141 change->mtime != st->st_mtime || change->size != st->st_size) { 146 Use mtime instead if it's higher, but only if it's 147 not higher than current time, because the mtime 158 change->mtime = st->st_mtime; 218 if (lock_info->lock_info.mtime > [all...] |
/dovecot/src/lib-storage/index/ |
H A D | index-sync.c | 13 uint32_t mtime; member in struct:index_storage_list_index_record 452 if (rec == NULL || expunged || rec->size == 0 || rec->mtime == 0) { 473 if (rec->mtime != (st.st_mtime & 0xffffffffU)) 530 new_rec.mtime = st.st_mtime & 0xffffffffU;
|
/dovecot/src/plugins/quota/ |
H A D | quota-maildir.c | 220 time_t mtime; local 224 while (maildir_list_next(ctx, &mtime) != NULL) { 225 if (mtime > latest_mtime) { 334 time_t mtime; local 338 while ((dir = maildir_list_next(ctx, &mtime)) != NULL) { 339 if (mtime > root->recalc_last_stamp) 340 root->recalc_last_stamp = mtime;
|
/dovecot/src/lda/ |
H A D | main.c | 147 time_t mtime; local 157 input = create_raw_stream(ctx, 0, &mtime); 159 ret = raw_mailbox_alloc_stream(raw_mail_user, input, mtime,
|
/dovecot/src/lib-storage/ |
H A D | mail-storage.c | 1338 time_t mtime; local 1349 if (mail_index_get_modification_time(box->index, &mtime) < 0) 1351 if (mtime + MAILBOX_DELETE_RETRY_SECS > time(NULL))
|