Home
last modified time | relevance | path

Searched refs:target_count (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/unbound/iterator/
H A Diterator.c161 iq->target_count = NULL; in iter_new()
749 if(!iq->target_count) { in target_count_create()
750 iq->target_count = (int*)calloc(TARGET_COUNT_MAX, sizeof(int)); in target_count_create()
752 if(iq->target_count) { in target_count_create()
753 iq->target_count[TARGET_COUNT_REF] = 1; in target_count_create()
763 if(iq->target_count) in target_count_increase()
764 iq->target_count[TARGET_COUNT_QUERIES] += num; in target_count_increase()
772 if(iq->target_count) in target_count_increase_nx()
773 iq->target_count[TARGET_COUNT_NX] += num; in target_count_increase_nx()
780 if(iq->target_count) in target_count_increase_global_quota()
[all …]
H A Diterator.h357 int* target_count; member