Searched refs:next (Results 1 - 25 of 256) sorted by relevance

1234567891011

/dovecot/src/lib-mail/
H A Dquoted-printable.c12 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 Dmessage-binary-part.h5 struct message_binary_part *next; member in struct:message_binary_part
H A Dtest-message-parser.c65 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 Dmessage-address.h10 struct message_address *next; member in struct:message_address
H A Dmessage-part.h29 struct message_part *next; member in struct:message_part
/dovecot/src/lib/
H A Dllist.h5 #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 Dtest-llist.c8 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 Dioloop-notify-fd.c23 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 Dhash2.c11 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 Dioloop-notify-fd.h10 struct io_notify *prev, *next; member in struct:io_notify
H A Dhash.c30 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 Dldap-connection-pool.c29 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 Dldap-connection-pool.h8 struct ldap_connection_list *prev, *next; member in struct:ldap_connection_list
/dovecot/src/plugins/fts-lucene/
H A DSnowballFilter.h37 /** Returns the next input Token, after being stemmed */
38 Token* next(Token* token);
/dovecot/src/plugins/notify/
H A Dnotify-plugin.c10 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 Dsql-db-cache.c14 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 Dworker-pool.c13 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 Dmail-transaction-log-view-private.h8 struct mail_transaction_log_view *next; member in struct:mail_transaction_log_view
/dovecot/src/auth/
H A Dauth-client-connection.h7 struct auth_client_connection *prev, *next; member in struct:auth_client_connection
/dovecot/src/imap/
H A Dcmd-x-cancel.c16 for (; cancel_cmd != NULL; cancel_cmd = cancel_cmd->next) {
/dovecot/src/plugins/fts/
H A Dfts-search-serialize.c15 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 Dmail-search-args-cmdline.c18 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 Dlog-error-buffer.c9 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 Dservice-process.h5 struct service_process *prev, *next; member in struct:service_process
/dovecot/src/old-stats/
H A Dclient.h5 struct client *prev, *next; member in struct:client

Completed in 27 milliseconds

1234567891011