Searched defs:refcount (Results 1 - 25 of 88) sorted by relevance

1234

/dovecot/src/lib-dict-extra/
H A Ddict-register.c6 static int refcount = 0; variable
10 if (refcount++ > 0)
22 if (--refcount > 0)
/dovecot/src/lib-ldap/
H A Dldap-connection-pool.h10 int refcount; member in struct:ldap_connection_list
16 /* Returns TRUE if there are connections with refcount>0 */
/dovecot/src/lib-storage/index/dbox-multi/
H A Dmdbox-map.h29 uint32_t refcount; member in struct:mdbox_map_file_msg
106 /* Return all files containing messages with zero refcount. */
/dovecot/src/auth/
H A Dauth-master-connection.h10 int refcount; member in struct:auth_master_connection
H A Dauth-client-connection.h9 int refcount; member in struct:auth_client_connection
H A Ddb-passwd-file.h21 int refcount; member in struct:passwd_file
35 int refcount; member in struct:db_passwd_file
H A Ddb-sql.h21 int refcount; member in struct:sql_connection
/dovecot/src/doveadm/
H A Ddoveadm-who.h9 unsigned int refcount; member in struct:who_line
/dovecot/src/lib/
H A Diostream-private.h14 int refcount; member in struct:iostream_private
H A Dmemarea.c13 int refcount; member in struct:memarea
17 .refcount = 1,
34 area->refcount = 1;
40 i_assert(memarea_empty.refcount > 0);
41 memarea_empty.refcount++;
47 i_assert(area->refcount > 0);
48 area->refcount++;
56 i_assert(area->refcount > 0);
58 if (--area->refcount > 0)
76 i_assert(area->refcount >
[all...]
H A Dbloomfilter.c13 int refcount; member in struct:bloomfilter
87 bf->refcount = 1;
93 i_assert(bf->refcount > 0);
94 bf->refcount++;
103 i_assert(bf->refcount > 0);
105 if (--bf->refcount > 0)
H A Dmempool-datastack.c41 int refcount; member in struct:datastack_pool
52 dpool->refcount = 1;
69 dpool->refcount++;
79 dpool->refcount--;
80 i_assert(dpool->refcount >= 0);
/dovecot/src/lib-fts/
H A Dfts-filter-private.h32 int refcount; member in struct:fts_filter
H A Dfts-tokenizer-private.h28 int refcount; member in struct:fts_tokenizer
/dovecot/src/replication/replicator/
H A Dreplicator-queue.h18 int refcount; member in struct:replicator_user
43 /* Unreference the user. Returns TRUE if refcount is still >0. */
/dovecot/src/lib-old-stats/
H A Dstats-connection.c15 int refcount; member in struct:stats_connection
44 conn->refcount = 1;
52 conn->refcount++;
59 i_assert(conn->refcount > 0);
60 if (--conn->refcount > 0)
/dovecot/src/login-common/
H A Daccess-lookup.c14 int refcount; member in struct:access_lookup
45 lookup->refcount++;
47 if (lookup->refcount > 1)
56 lookup->refcount++;
58 if (lookup->refcount > 1)
90 lookup->refcount = 1;
105 i_assert(lookup->refcount > 0);
106 if (--lookup->refcount > 0)
/dovecot/src/master/
H A Dservice-process.h7 int refcount; member in struct:service_process
/dovecot/src/plugins/fts/
H A Dfts-storage.h8 int refcount; member in struct:fts_scores
/dovecot/src/anvil/
H A Dconnect-limit.c14 unsigned int refcount; member in struct:ident_pid
18 /* ident => unsigned int refcount */
93 i->refcount = 1;
96 i->refcount++;
135 if (--i->refcount == 0) {
154 for (; i->refcount > 0; i->refcount--)
172 str_printfa(str, "\t%ld\t%u\n", (long)i->pid, i->refcount);
/dovecot/src/dict/
H A Ddict-connection.h15 int refcount; member in struct:dict_connection
/dovecot/src/director/
H A Ddirector-host.h10 int refcount; member in struct:director_host
/dovecot/src/ipc/
H A Dipc-group.c12 int refcount; member in struct:ipc_group_cmd
86 i_assert(group_cmd->refcount > 0);
98 if (--group_cmd->refcount > 0)
134 group_cmd->refcount++;
/dovecot/src/replication/aggregator/
H A Dnotify-connection.c22 int refcount; member in struct:notify_connection
70 conn->refcount++;
109 conn->refcount = 1;
123 i_assert(conn->refcount > 0);
124 if (--conn->refcount > 0)
/dovecot/src/lib-sql/
H A Dsql-db-cache.c14 struct sql_db *prev, *next; /* These are set while refcount=0 */
17 int refcount; member in struct:sql_db_cache_context
35 if (--ctx->refcount > 0)
53 i_assert(ctx->refcount == 0);
103 if (ctx->refcount == 0) {
123 ctx->refcount++;

Completed in 64 milliseconds

1234