/dovecot/src/lib-mail/ |
H A D | quoted-printable.c | 12 size_t src_pos, next; local 17 next = 0; 22 buffer_append(dest, src + next, src_pos - next); 23 next = src_pos; 27 next++; 40 next = src_pos+1; 44 next = src_pos; 47 buffer_append(dest, src + next, src_size - next); [all...] |
H A D | message-binary-part.h | 5 struct message_binary_part *next; member in struct:message_binary_part
|
H A D | test-message-parser.c | 65 p1 = p1->next; 66 p2 = p2->next; 210 test_assert(parts->children->next->physical_pos == 62); 211 test_assert(parts->children->next->header_size.physical_size == 24); 212 test_assert(parts->children->next->header_size.virtual_size == 24); 213 test_assert(parts->children->next->header_size.lines == 0); 214 test_assert(parts->children->next->next->physical_pos == 94); 215 test_assert(parts->children->next->next [all...] |
H A D | message-address.h | 10 struct message_address *next; member in struct:message_address
|
H A D | message-part.h | 29 struct message_part *next; member in struct:message_part
|
/dovecot/src/lib/ |
H A D | llist.h | 5 #define DLLIST_PREPEND_FULL(list, item, prev, next) STMT_START { \ 7 (item)->next = *(list); \ 13 DLLIST_PREPEND_FULL(list, item, prev, next) 15 #define DLLIST_REMOVE_FULL(list, item, prev, next) STMT_START { \ 17 (item)->prev->next = (item)->next; \ 19 *(list) = (item)->next; \ 20 if ((item)->next != NULL) { \ 21 (item)->next->prev = (item)->prev; \ 22 (item)->next [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 == NULL && l3->next [all...] |
H A D | ioloop-notify-fd.c | 23 io->next = ctx->notifies; 33 io->prev->next = io->next; 35 ctx->notifies = io->next; 37 if (io->next != NULL) 38 io->next->prev = io->prev; 47 for (io = ctx->notifies; io != NULL; io = io->next) {
|
H A D | hash2.c | 11 struct hash2_value *next; member in struct:hash2_value 82 struct hash2_value *const *old_hash, *value, **valuep, *next; local 101 for (value = *old_hash; value != NULL; value = next) { 102 next = value->next; 106 value->next = *valuep; 129 value = value->next; 148 iter->next_value = iter->next_value->next; 151 iter->next_value = iter->next_value->next; 169 hash->deleted_values = value->next; 222 struct hash2_value **valuep, *next; local [all...] |
H A D | ioloop-notify-fd.h | 10 struct io_notify *prev, *next; member in struct:io_notify
|
H A D | hash.c | 30 struct hash_node *next; member in struct:hash_node 51 struct hash_node *next; member in struct:hash_iterate_context 106 node->next = table->free_nodes; 113 struct hash_node *next; local 116 next = node->next; 118 node = next; 127 if (table->nodes[i].next != NULL) 128 destroy_node_list(table, table->nodes[i].next); 182 node = node->next; 308 struct hash_node *node, *next; local 446 struct hash_node *old_nodes, *node, *next; local [all...] |
/dovecot/src/lib-ldap/ |
H A D | ldap-connection-pool.c | 29 struct ldap_connection_list *list, *next; local 32 for (; list != NULL && pool->conn_count > max_count; list = next) { 33 next = list->next; 69 for (list = pool->conn_list; list != NULL; list = list->next) { 108 for (list = pool->conn_list; list != NULL; list = list->next) {
|
H A D | ldap-connection-pool.h | 8 struct ldap_connection_list *prev, *next; member in struct:ldap_connection_list
|
/dovecot/src/plugins/fts-lucene/ |
H A D | SnowballFilter.h | 37 /** Returns the next input Token, after being stemmed */ 38 Token* next(Token* token);
|
/dovecot/src/plugins/notify/ |
H A D | notify-plugin.c | 10 struct notify_mail_txn *prev, *next; member in struct:notify_mail_txn 17 struct notify_context *prev, *next; member in struct:notify_context 32 for (; mail_txn != NULL; mail_txn = mail_txn->next) { 44 for (ctx = ctx_list; ctx != NULL; ctx = ctx->next) { 58 for (ctx = ctx_list; ctx != NULL; ctx = ctx->next) { 71 for (ctx = ctx_list; ctx != NULL; ctx = ctx->next) { 84 for (ctx = ctx_list; ctx != NULL; ctx = ctx->next) { 101 for (ctx = ctx_list; ctx != NULL; ctx = ctx->next) { 118 for (ctx = ctx_list; ctx != NULL; ctx = ctx->next) { 132 for (ctx = ctx_list; ctx != NULL; ctx = ctx->next) { [all...] |
/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 43 head_ctx->next = db; 56 ctx->cache->unused_tail = ctx->next; 59 prev_ctx->next = ctx->next; 61 if (ctx->next == NULL) 64 next_ctx = SQL_DB_CACHE_CONTEXT(ctx->next); 105 ctx->prev = ctx->next = NULL;
|
/dovecot/src/indexer/ |
H A D | worker-pool.c | 13 struct worker_connection_list *prev, *next; member in struct:worker_connection_list 113 for (list = pool->busy_list; list != NULL; list = list->next) { 153 struct worker_connection_list *list, *next; local 157 for (list = pool->idle_list; list != NULL; list = next) { 158 next = list->next; 176 for (list = pool->busy_list; list != NULL; list = list->next) { 201 for (list = pool->busy_list; list != NULL; list = list->next) {
|
/dovecot/src/lib-index/ |
H A D | mail-transaction-log-view-private.h | 8 struct mail_transaction_log_view *next; member in struct:mail_transaction_log_view
|
/dovecot/src/auth/ |
H A D | auth-client-connection.h | 7 struct auth_client_connection *prev, *next; member in struct:auth_client_connection
|
/dovecot/src/imap/ |
H A D | cmd-x-cancel.c | 16 for (; cancel_cmd != NULL; cancel_cmd = cancel_cmd->next) {
|
/dovecot/src/plugins/fts/ |
H A D | fts-search-serialize.c | 15 for (; args != NULL; args = args->next) { 30 for (; args != NULL; args = args->next) { 62 for (; args != NULL; args = args->next) {
|
/dovecot/src/lib-storage/ |
H A D | mail-search-args-cmdline.c | 18 for (arg = args; arg != NULL; arg = arg->next) { 20 if (arg->next != NULL) 100 for (arg = args; arg != NULL; arg = arg->next) { 102 if (arg->next != NULL)
|
/dovecot/src/log/ |
H A D | log-error-buffer.c | 9 struct log_error_data *next; member in struct:log_error_data 43 buf->head = data->next; 70 buf->tail->next = data; 105 iter->cur = iter->cur->next;
|
/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
|