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

/dovecot/src/replication/aggregator/
H A Dnotify-connection.c30 static struct notify_connection *conns = NULL; variable in typeref:struct:notify_connection
118 DLLIST_PREPEND(&conns, conn);
139 DLLIST_REMOVE(&conns, conn);
152 while (conns != NULL)
153 notify_connection_destroy(conns);
/dovecot/src/lib-imap-client/
H A Dimapc-client-private.h30 ARRAY(struct imapc_client_connection *) conns; member in struct:imapc_client
H A Dimapc-client.c119 p_array_init(&client->conns, pool, 8);
147 struct imapc_client_connection *const *conns, *conn; local
150 conns = array_get(&client->conns, &count);
152 conn = conns[i-1];
153 array_delete(&client->conns, i-1, 1);
187 array_foreach(&client->conns, connp) {
204 array_foreach(&client->conns, connp)
226 array_foreach(&client->conns, connp)
275 array_append(&client->conns,
304 struct imapc_client_connection *const *conns; local
[all...]
/dovecot/src/lib-master/
H A Dmaster-login.c49 struct master_login_connection *conns; member in struct:master_login
93 while (login->conns != NULL) {
94 struct master_login_connection *conn = login->conns;
457 DLLIST_PREPEND(&login->conns, conn);
467 DLLIST_REMOVE(&conn->login->conns, conn);
/dovecot/src/auth/
H A Dauth-worker-server.c212 struct auth_worker_connection *const *conns; local
223 array_foreach(&connections, conns) {
224 if (*conns == conn) {
225 idx = array_foreach_idx(&connections, conns);
261 struct auth_worker_connection **conns; local
266 array_foreach_modifiable(&connections, conns) {
267 struct auth_worker_connection *conn = *conns;
/dovecot/src/doveadm/
H A Dserver-connection.c90 struct server_connection *const *conns; local
93 conns = array_get(&server->connections, &count);
95 if (conns[i]->io != NULL)
98 conns[i]->io = io_add(conns[i]->fd, IO_READ,
99 server_connection_input, conns[i]);
100 conns[i]->to_input = timeout_add_short(0,
101 server_connection_input, conns[i]);
573 struct server_connection *const *conns; local
579 conns
[all...]
/dovecot/src/lib-sql/
H A Ddriver-sqlpool.c301 const struct sqlpool_connection *conns; local
306 conns = array_get(&db->all_connections, &count);
309 struct sql_db *conndb = conns[idx].db;
311 if (conns[idx].host_idx == unwanted_host_idx)
321 return &conns[idx];
334 const struct sqlpool_connection *conn, *conns; local
348 conns = array_get(&db->all_connections, &count);
350 struct sql_db *conndb = conns[i].db;
374 const struct sqlpool_connection *conns; local
382 conns
551 const struct sqlpool_connection *conns; local
798 const struct sqlpool_connection *conns; local
[all...]
/dovecot/src/lmtp/
H A Dlmtp-proxy.c144 struct lmtp_proxy_connection *const *conns; local
151 array_foreach(&proxy->connections, conns)
152 lmtp_proxy_connection_deinit(*conns);
183 struct lmtp_proxy_connection *const *conns, *conn; local
189 array_foreach(&proxy->connections, conns) {
190 conn = *conns;
631 struct lmtp_proxy_connection *const *conns; local
647 array_foreach(&proxy->connections, conns) {
648 struct lmtp_proxy_connection *conn = *conns;
663 array_foreach(&proxy->connections, conns) {
[all...]
/dovecot/src/director/
H A Ddirector.c556 struct director_connection *const *conns, *conn; local
589 conns = array_get(&dir->connections, &count);
591 conn = conns[i];
597 conns = array_get(&dir->connections, &count);
H A Ddirector-connection.c2395 struct director_connection *const *conns, *conn = *_conn; local
2413 conns = array_get(&dir->connections, &count);
2415 if (conns[i] == conn) {
/dovecot/src/lib-http/
H A Dhttp-client-private.h245 ARRAY_TYPE(http_client_connection) conns; member in struct:http_client_peer_pool
276 ARRAY_TYPE(http_client_connection) conns; member in struct:http_client_peer

Completed in 36 milliseconds