Lines Matching refs:hashbase
272 V_tcp_syncache.hashbase = malloc(V_tcp_syncache.hashsize * in syncache_init()
281 TAILQ_INIT(&V_tcp_syncache.hashbase[i].sch_bucket); in syncache_init()
282 mtx_init(&V_tcp_syncache.hashbase[i].sch_mtx, "tcp_sc_head", in syncache_init()
284 callout_init_mtx(&V_tcp_syncache.hashbase[i].sch_timer, in syncache_init()
285 &V_tcp_syncache.hashbase[i].sch_mtx, 0); in syncache_init()
286 V_tcp_syncache.hashbase[i].sch_length = 0; in syncache_init()
287 V_tcp_syncache.hashbase[i].sch_sc = &V_tcp_syncache; in syncache_init()
288 V_tcp_syncache.hashbase[i].sch_last_overflow = in syncache_init()
323 sch = &V_tcp_syncache.hashbase[i]; in syncache_destroy()
342 free(V_tcp_syncache.hashbase, M_SYNCACHE); in syncache_destroy()
532 sch = &V_tcp_syncache.hashbase[hash]; in syncache_lookup()
2295 sch = &V_tcp_syncache.hashbase[i]; in syncache_pcblist()