/dovecot/src/lib/ |
H A D | llist.h | 5 #define DLLIST_PREPEND_FULL(list, item, prev, next) STMT_START { \ 6 (item)->prev = NULL; \ 8 if (*(list) != NULL) (*(list))->prev = (item); \ 13 DLLIST_PREPEND_FULL(list, item, prev, next) 15 #define DLLIST_REMOVE_FULL(list, item, prev, next) STMT_START { \ 16 if ((item)->prev != NULL) \ 17 (item)->prev->next = (item)->next; \ 21 (item)->next->prev = (item)->prev; \ 24 (item)->prev [all...] |
H A D | test-llist.c | 8 struct dllist *prev, *next; member in struct:dllist 24 test_assert(l4->prev == NULL && l4->next == NULL); 27 test_assert(l3->prev == NULL && l3->next == l4); 28 test_assert(l4->prev == l3 && l4->next == NULL); 33 test_assert(l2->prev == NULL && l2->next == NULL); 35 test_assert(l1->prev == NULL && l1->next == l3); 36 test_assert(l3->prev == l1 && l3->next == l4); 37 test_assert(l4->prev == l3 && l4->next == NULL); 40 test_assert(l1->prev == NULL && l1->next == NULL); 42 test_assert(l3->prev [all...] |
H A D | ioloop-notify-fd.c | 22 ctx->notifies->prev = io; 32 if (io->prev != NULL) 33 io->prev->next = io->next; 38 io->next->prev = io->prev;
|
H A D | ioloop-notify-fd.h | 10 struct io_notify *prev, *next; member in struct:io_notify
|
H A D | ioloop-private.h | 13 struct ioloop *prev; member in struct:ioloop 57 struct io_file *prev, *next; member in struct:io_file 84 struct io_wait_timer *prev, *next; member in struct:io_wait_timer
|
H A D | test-priorityq.c | 36 int prev; local 91 prev = 0; 95 test_assert(item->num >= 0 && prev <= item->num); 96 prev = item->num;
|
H A D | test-guid.c | 69 const int prev = 1 - this; local 73 test_assert(reverse_guid_128_cmp(guids[prev], guids[this]) < 0); 84 const int prev = 1 - this; local 89 test_assert(reverse_guid_128_cmp(guids[prev], guids[this]) < 0); 100 const int prev = 1 - this; local 105 test_assert(reverse_guid_128_cmp(guids[prev], guids[this]) < 0); 121 const int prev = 1 - this; local 124 test_assert(reverse_guid_128_cmp(guids[prev], guids[this]) < 0);
|
H A D | hook-build.c | 9 struct hook_stack *prev, *next; member in struct:hook_stack 109 for (stack = ctx->tail->prev; stack != NULL; stack = stack->prev)
|
/dovecot/src/plugins/old-stats/ |
H A D | mail-stats.c | 80 const struct mail_stats *prev = (const struct mail_stats *)_prev; local 83 if (cur->disk_input != prev->disk_input || 84 cur->disk_output != prev->disk_output || 85 cur->trans_lookup_path != prev->trans_lookup_path || 86 cur->trans_lookup_attr != prev->trans_lookup_attr || 87 cur->trans_files_read_count != prev->trans_files_read_count || 88 cur->trans_files_read_bytes != prev->trans_files_read_bytes || 89 cur->trans_cache_hit_count != prev->trans_cache_hit_count) 94 if (timeval_diff_msecs(&cur->user_cpu, &prev->user_cpu) != 0) 96 if (timeval_diff_msecs(&cur->sys_cpu, &prev [all...] |
H A D | stats-plugin.h | 47 struct stats_transaction_context *prev, *next; member in struct:stats_transaction_context
|
/dovecot/src/director/ |
H A D | test-user-directory.c | 24 struct user *user, *prev = NULL; local 30 test_assert(user->prev == prev); 31 test_assert(prev == NULL || user->prev->next == user); 34 prev = user; 36 test_assert(prev == NULL || prev->next == NULL);
|
/dovecot/src/lib-sql/ |
H A D | sql-db-cache.c | 14 struct sql_db *prev, *next; /* These are set while refcount=0 */ member in struct:sql_db_cache_context 45 ctx->prev = ctx->cache->unused_head; 55 if (ctx->prev == NULL) 58 prev_ctx = SQL_DB_CACHE_CONTEXT(ctx->prev); 62 ctx->cache->unused_head = ctx->prev; 65 next_ctx->prev = ctx->prev; 105 ctx->prev = ctx->next = NULL;
|
/dovecot/src/lib-ldap/ |
H A D | ldap-connection-pool.h | 8 struct ldap_connection_list *prev, *next; member in struct:ldap_connection_list
|
/dovecot/src/lib-otp/ |
H A D | otp-hash.h | 23 void otp_next_hash(unsigned int algo, const unsigned char *prev,
|
/dovecot/src/auth/ |
H A D | auth-client-connection.h | 7 struct auth_client_connection *prev, *next; member in struct:auth_client_connection
|
H A D | auth-master-connection.h | 8 struct auth_master_connection *prev, *next; member in struct:auth_master_connection
|
H A D | auth-cache.h | 5 struct auth_cache_node *prev, *next; member in struct:auth_cache_node
|
H A D | db-oauth2.h | 14 struct db_oauth2_request *prev,*next; member in struct:db_oauth2_request
|
/dovecot/src/master/ |
H A D | service-process.h | 5 struct service_process *prev, *next; member in struct:service_process
|
/dovecot/src/old-stats/ |
H A D | client.h | 5 struct client *prev, *next; member in struct:client
|
/dovecot/src/ipc/ |
H A D | ipc-connection.h | 16 /* prev/next within group */ 17 struct ipc_connection *prev, *next; member in struct:ipc_connection
|
/dovecot/src/lib-old-stats/ |
H A D | stats.h | 19 bool (*have_changed)(const struct stats *prev, const struct stats *cur); 51 /* Returns TRUE if any fields have changed in cur since prev in a way that 54 bool stats_have_changed(const struct stats *prev, const struct stats *cur);
|
/dovecot/src/config/ |
H A D | config-parser-private.h | 21 struct config_section_stack *prev; member in struct:config_section_stack 35 struct input_stack *prev; member in struct:input_stack
|
/dovecot/src/lib-storage/ |
H A D | mail-search-parser-imap.c | 8 struct imap_arg_stack *prev; member in struct:imap_arg_stack 40 stack->prev = parser->cur; 49 parser->cur = parser->cur->prev;
|
/dovecot/src/lmtp/ |
H A D | client.h | 22 struct client *prev, *next; member in struct:client
|