Searched refs:entries (Results 1 - 6 of 6) sorted by relevance

/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/
H A Ducsmap.c82 * Since the entries pointed by ucsmap_hash_t.entry are sorted,
103 ucsmap_entry_t *entries; /* array of entries */ member in struct:idn_ucsmap
105 size_t nentries; /* # of entries in use */
135 ctx->entries = NULL;
152 if (ctx->entries != NULL)
153 free(ctx->entries);
196 newbuf = realloc(ctx->entries, sizeof(*e) * ctx->entry_size);
199 ctx->entries = newbuf;
201 e = &ctx->entries[ct
[all...]
H A Dstrhash.c261 strhash_entry_t *entries = old_bins[old_index]; local
263 while (entries != NULL) {
264 strhash_entry_t *e = entries;
267 entries = entries->next;
/bind-9.6-ESV-R11/contrib/dlz/drivers/
H A Ddlz_ldap_driver.c352 "LDAP no entries to process.");
356 /* loop through all entries returned */
575 int entries; local
808 entries = ldap_count_entries((LDAP *) dbi->dbconn, ldap_msg);
809 if (entries == 0)
811 else if (entries > 0)
817 entries = ldap_count_entries((LDAP *) dbi->dbconn, ldap_msg);
818 if (entries == 0)
820 else if (entries > 0)
/bind-9.6-ESV-R11/lib/dns/
H A Dacache.c72 * CLEANERINCREMENT is how many entries are examined in one pass.
77 #define DNS_ACACHE_CLEANERINCREMENT 1000 /* Number of entries. */
151 int increment; /* Number of entries to
154 unsigned long ncleaned; /* Number of entries cleaned
194 ISC_LIST(dns_acacheentry_t) entries;
215 /* Data for Management of cache entries */
287 if (ISC_LIST_EMPTY(acache->entries) && acache->dbentries == 0) {
305 * Release the dependency of all entries, and detach them.
307 for (entry = ISC_LIST_HEAD(acache->entries);
320 ISC_LIST_UNLINK(acache->entries, entr
[all...]
H A Dadb.c76 * For type 3 negative cache entries, we will remember that the address is
152 * Bucketized locks for entries.
156 dns_adbentrylist_t entries[NBUCKETS]; member in struct:dns_adb
249 * persist until that time. This allows entries found
342 * Private flag(s) for entries.
783 e = ISC_LIST_TAIL(adb->entries[bucket]);
793 ISC_LIST_UNLINK(adb->entries[bucket], e, plink);
798 ISC_LIST_PREPEND(adb->entries[bucket], entry, plink);
817 ISC_LIST_UNLINK(adb->entries[bucket], entry, plink);
895 entry = ISC_LIST_HEAD(adb->entries[bucke
[all...]
/bind-9.6-ESV-R11/bin/dnssec/
H A Ddnssec-signzone.c613 size_t entries; member in struct:hashlist
621 l->entries = 0;
641 if (l->entries == l->size) {
647 memset(l->hashbuf + l->entries * l->length, 0, l->length);
648 memmove(l->hashbuf + l->entries * l->length, hash, len);
649 l->entries++;
682 qsort(l->hashbuf, l->entries, l->length, hashlist_comp);
689 size_t entries = l->entries; local
694 while (entries >
715 unsigned int entries = l->entries; local
[all...]

Completed in 29 milliseconds