Searched defs:timeout_secs (Results 1 - 11 of 11) sorted by relevance

/dovecot/src/lib-index/
H A Dmail-index-lock.c27 int lock_type, unsigned int timeout_secs,
36 timeout_secs, lock_r);
26 mail_index_lock_fd(struct mail_index *index, const char *path, int fd, int lock_type, unsigned int timeout_secs, struct file_lock **lock_r) argument
H A Dmail-cache.c602 unsigned int timeout_secs; local
613 timeout_secs = I_MIN(MAIL_CACHE_LOCK_TIMEOUT,
618 nonblock ? 0 : timeout_secs,
H A Dmail-index-strmap.c1041 unsigned int timeout_secs; local
1049 timeout_secs = I_MIN(MAIL_INDEX_STRMAP_TIMEOUT_SECS,
1052 strmap->index->lock_method, timeout_secs,
/dovecot/src/lib-ldap/
H A Dldap-client.h30 unsigned int timeout_secs; member in struct:ldap_client_settings
45 unsigned int timeout_secs; member in struct:ldap_search_input
53 unsigned int timeout_secs; member in struct:ldap_compare_input
H A Dldap-private.h36 unsigned int timeout_secs; member in struct:ldap_op_queue_entry
/dovecot/src/lib-smtp/
H A Dsmtp-common.h84 unsigned int timeout_secs; member in struct:smtp_proxy_data
/dovecot/src/plugins/fts/
H A Dfts-indexer.c27 unsigned int timeout_secs; member in struct:fts_indexer_context
134 if (settings_get_time(value, &ctx->timeout_secs, &error) < 0)
241 if (ctx->timeout_secs > 0) {
243 if (diff > (int)ctx->timeout_secs) {
/dovecot/src/director/
H A Duser-directory.c10 /* n% of timeout_secs */
32 unsigned int timeout_secs; member in struct:user_directory
74 time_t expire_timestamp = user->timestamp + dir->timeout_secs;
161 struct timeval tv = { .tv_sec = ioloop_time + dir->timeout_secs };
242 return (time_t)(user->timestamp + dir->timeout_secs/2) >= ioloop_time;
251 (dir->timeout_secs - dir->user_near_expiring_secs);
256 user_directory_init(unsigned int timeout_secs, argument
261 i_assert(timeout_secs > USER_NEAR_EXPIRING_MIN);
264 dir->timeout_secs = timeout_secs;
[all...]
/dovecot/src/lib/
H A Dfile-lock.c160 static bool err_is_lock_timeout(time_t started, unsigned int timeout_secs) argument
162 /* if EINTR took at least timeout_secs-1 number of seconds,
167 (unsigned long)(time(NULL) - started + 1) >= timeout_secs;
172 unsigned int timeout_secs, const char **error_r)
180 if (timeout_secs != 0) {
181 alarm(timeout_secs);
202 ret = fcntl(fd, timeout_secs != 0 ? F_SETLKW : F_SETLK, &fl);
203 if (timeout_secs != 0) {
211 if (timeout_secs == 0 &&
220 if (err_is_lock_timeout(started, timeout_secs)) {
170 file_lock_do(int fd, const char *path, int lock_type, enum file_lock_method lock_method, unsigned int timeout_secs, const char **error_r) argument
295 file_wait_lock(int fd, const char *path, int lock_type, enum file_lock_method lock_method, unsigned int timeout_secs, struct file_lock **lock_r) argument
310 file_wait_lock_error(int fd, const char *path, int lock_type, enum file_lock_method lock_method, unsigned int timeout_secs, struct file_lock **lock_r, const char **error_r) argument
[all...]
/dovecot/src/auth/
H A Ddb-ldap.c502 unsigned int timeout_secs,
514 if (diff < (time_t)timeout_secs)
500 db_ldap_abort_requests(struct ldap_connection *conn, unsigned int max_count, unsigned int timeout_secs, bool error, const char *reason) argument
/dovecot/src/doveadm/dsync/
H A Ddsync-ibc-stream.c147 unsigned int timeout_secs; member in struct:dsync_ibc_stream
317 ibc->name, ibc->timeout_secs, dsync_ibc_stream_get_state(ibc));
329 ibc->to = timeout_add(ibc->timeout_secs * 1000,
2105 unsigned int timeout_secs)
2115 ibc->timeout_secs = timeout_secs;
2103 dsync_ibc_init_stream(struct istream *input, struct ostream *output, const char *name, const char *temp_path_prefix, unsigned int timeout_secs) argument

Completed in 48 milliseconds