Lines Matching full:mesh

51 #include "services/mesh.h"
99 stats->sum_query_list_size += worker->env.mesh->all.count; in server_stats_querymiss()
100 if((long long)worker->env.mesh->all.count > stats->max_query_list_size) in server_stats_querymiss()
101 stats->max_query_list_size = (long long)worker->env.mesh->all.count; in server_stats_querymiss()
108 stats->sum_query_list_size += worker->env.mesh->all.count; in server_stats_prefetch()
109 if((long long)worker->env.mesh->all.count > stats->max_query_list_size) in server_stats_prefetch()
110 stats->max_query_list_size = (long long)worker->env.mesh->all.count; in server_stats_prefetch()
132 (unsigned)worker->env.mesh->stats_dropped, in server_stats_log()
133 (unsigned)worker->env.mesh->stats_jostled); in server_stats_log()
143 int m = modstack_find(&worker->env.mesh->mods, "subnetcache"); in set_subnet_stats()
168 int m = modstack_find(&worker->env.mesh->mods, "validator"); in set_neg_cache_stats()
191 int m = modstack_find(&worker->env.mesh->mods, "validator"); in get_rrset_bogus()
209 int m = modstack_find(&worker->env.mesh->mods, "iterator"); in get_queries_ratelimit()
263 s->mesh_num_states = (long long)worker->env.mesh->all.count; in server_stats_compile()
264 s->mesh_num_reply_states = (long long)worker->env.mesh->num_reply_states; in server_stats_compile()
265 s->mesh_jostled = (long long)worker->env.mesh->stats_jostled; in server_stats_compile()
266 s->mesh_dropped = (long long)worker->env.mesh->stats_dropped; in server_stats_compile()
267 s->mesh_replies_sent = (long long)worker->env.mesh->replies_sent; in server_stats_compile()
268 s->mesh_replies_sum_wait_sec = (long long)worker->env.mesh->replies_sum_wait.tv_sec; in server_stats_compile()
269 s->mesh_replies_sum_wait_usec = (long long)worker->env.mesh->replies_sum_wait.tv_usec; in server_stats_compile()
270 s->mesh_time_median = timehist_quartile(worker->env.mesh->histogram, in server_stats_compile()
273 /* add in the values from the mesh */ in server_stats_compile()
274 s->svr.ans_secure += (long long)worker->env.mesh->ans_secure; in server_stats_compile()
275 s->svr.ans_bogus += (long long)worker->env.mesh->ans_bogus; in server_stats_compile()
276 s->svr.ans_rcode_nodata += (long long)worker->env.mesh->ans_nodata; in server_stats_compile()
277 s->svr.ans_expired += (long long)worker->env.mesh->ans_expired; in server_stats_compile()
279 s->svr.ans_rcode[i] += (long long)worker->env.mesh->ans_rcode[i]; in server_stats_compile()
281 s->svr.rpz_action[i] += (long long)worker->env.mesh->rpz_action[i]; in server_stats_compile()
282 timehist_export(worker->env.mesh->histogram, s->svr.hist, in server_stats_compile()
366 s->svr.num_query_cachedb = (long long)worker->env.mesh->ans_cachedb; in server_stats_compile()