Searched defs:dirty (Results 1 - 3 of 3) sorted by relevance

/dovecot/src/lib/
H A Dbuffer.c15 size_t dirty, alloc; member in struct:real_buffer
55 if (new_size > buf->used && buf->used < buf->dirty) {
56 /* clear used..dirty area */
57 size_t max = I_MIN(I_MIN(buf->alloc, buf->dirty), new_size);
321 if (buf->used > buf->dirty)
322 buf->dirty = buf->used;
/dovecot/src/lib-storage/index/mbox/
H A Dmbox-sync-private.h97 bool dirty:1; member in struct:mbox_sync_mail_context
175 void mbox_sync_file_updated(struct mbox_sync_context *sync_ctx, bool dirty);
H A Dmbox-sync.c116 void mbox_sync_file_updated(struct mbox_sync_context *sync_ctx, bool dirty) argument
118 if (dirty) {
119 /* just mark the stat as dirty. */
386 /* flags and keywords are dirty. replace the current
446 /* flags other than recent/dirty have changed */
451 /* only dirty flag state changed */
452 bool dirty; local
454 dirty = (mbox_flags & MAIL_INDEX_MAIL_FLAG_DIRTY) != 0;
456 dirty ? MODIFY_ADD : MODIFY_REMOVE,
690 /* mark it dirty an
[all...]

Completed in 614 milliseconds