Lines Matching refs:hashbase
270 V_tcp_syncache.hashbase = malloc(V_tcp_syncache.hashsize * in syncache_init()
279 TAILQ_INIT(&V_tcp_syncache.hashbase[i].sch_bucket); in syncache_init()
280 mtx_init(&V_tcp_syncache.hashbase[i].sch_mtx, "tcp_sc_head", in syncache_init()
282 callout_init_mtx(&V_tcp_syncache.hashbase[i].sch_timer, in syncache_init()
283 &V_tcp_syncache.hashbase[i].sch_mtx, 0); in syncache_init()
284 V_tcp_syncache.hashbase[i].sch_length = 0; in syncache_init()
285 V_tcp_syncache.hashbase[i].sch_sc = &V_tcp_syncache; in syncache_init()
286 V_tcp_syncache.hashbase[i].sch_last_overflow = in syncache_init()
336 sch = &V_tcp_syncache.hashbase[i]; in syncache_destroy()
355 free(V_tcp_syncache.hashbase, M_SYNCACHE); in syncache_destroy()
578 return (&V_tcp_syncache.hashbase[hash]); in syncache_hashbucket()
2535 sch = &V_tcp_syncache.hashbase[i]; in syncache_pcblist()