Searched defs:next (Results 1 - 25 of 129) sorted by relevance

123456

/dovecot/src/lib-ldap/
H A Dldap-connection-pool.h8 struct ldap_connection_list *prev, *next; member in struct:ldap_connection_list
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) {
/dovecot/src/lib-mail/
H A Dmessage-binary-part.h5 struct message_binary_part *next; member in struct:message_binary_part
H A Dmessage-address.h10 struct message_address *next; member in struct:message_address
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-part.h29 struct message_part *next; member in struct:message_part
H A Drfc2231-parser.c48 unsigned int i, j, count, next, next_idx; local
115 for (i = 0; i < count; i = next) {
131 next = j;
135 for (j = i; j < next; j++) {
150 for (j = i; j < next; j++) {
/dovecot/src/lib-storage/
H A Dmailbox-tree.h8 struct mailbox_node *next; member in struct:mailbox_node
H A Dmailbox-watch.c15 struct mailbox_notify_file *next; member in struct:mailbox_notify_file
34 for (file = box->notify_files; file != NULL; file = file->next) {
74 file->next = box->notify_files;
93 box->notify_files = file->next;
122 for (file = box->notify_files; file != NULL && !failed; file = file->next) {
/dovecot/src/auth/
H A Dauth-cache.h5 struct auth_cache_node *prev, *next; member in struct:auth_cache_node
H A Dauth-master-connection.h8 struct auth_master_connection *prev, *next; member in struct:auth_master_connection
H A Ddb-oauth2.h14 struct db_oauth2_request *prev,*next; member in struct:db_oauth2_request
H A Dauth-client-connection.h7 struct auth_client_connection *prev, *next; member in struct:auth_client_connection
/dovecot/src/lib/
H A Dioloop-notify-fd.h10 struct io_notify *prev, *next; member in struct:io_notify
H A Djson-tree.h12 struct json_tree_node *parent, *next; member in struct:json_tree_node
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 Dmodule-dir.h39 struct module *next; member in struct:module
/dovecot/src/director/
H A Duser-directory.h11 struct user *prev, *next; member in struct:user
/dovecot/src/indexer/
H A Dindexer-queue.h7 struct indexer_request *prev, *next; member in struct:indexer_request
52 /* Return the next request from the queue, without removing it. */
54 /* Remove the next request from the queue. You must call
/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
H A Dfifo-input-connection.c19 struct fifo_input_connection *prev, *next; member in struct:fifo_input_connection
/dovecot/src/ipc/
H A Dipc-connection.h16 /* prev/next within group */
17 struct ipc_connection *prev, *next; member in struct:ipc_connection
/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/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;

Completed in 139 milliseconds

123456