Lines Matching refs:hashbase
278 V_tcp_syncache.hashbase = malloc(V_tcp_syncache.hashsize * in syncache_init()
287 TAILQ_INIT(&V_tcp_syncache.hashbase[i].sch_bucket); in syncache_init()
288 mtx_init(&V_tcp_syncache.hashbase[i].sch_mtx, "tcp_sc_head", in syncache_init()
290 callout_init_mtx(&V_tcp_syncache.hashbase[i].sch_timer, in syncache_init()
291 &V_tcp_syncache.hashbase[i].sch_mtx, 0); in syncache_init()
292 V_tcp_syncache.hashbase[i].sch_length = 0; in syncache_init()
293 V_tcp_syncache.hashbase[i].sch_sc = &V_tcp_syncache; in syncache_init()
294 V_tcp_syncache.hashbase[i].sch_last_overflow = in syncache_init()
344 sch = &V_tcp_syncache.hashbase[i]; in syncache_destroy()
363 free(V_tcp_syncache.hashbase, M_SYNCACHE); in syncache_destroy()
586 return (&V_tcp_syncache.hashbase[hash]); in syncache_hashbucket()
2545 sch = &V_tcp_syncache.hashbase[i]; in syncache_pcblist()