Lines Matching refs:hashbase
276 V_tcp_syncache.hashbase = malloc(V_tcp_syncache.hashsize * in syncache_init()
285 TAILQ_INIT(&V_tcp_syncache.hashbase[i].sch_bucket); in syncache_init()
286 mtx_init(&V_tcp_syncache.hashbase[i].sch_mtx, "tcp_sc_head", in syncache_init()
288 callout_init_mtx(&V_tcp_syncache.hashbase[i].sch_timer, in syncache_init()
289 &V_tcp_syncache.hashbase[i].sch_mtx, 0); in syncache_init()
290 V_tcp_syncache.hashbase[i].sch_length = 0; in syncache_init()
291 V_tcp_syncache.hashbase[i].sch_sc = &V_tcp_syncache; in syncache_init()
292 V_tcp_syncache.hashbase[i].sch_last_overflow = in syncache_init()
342 sch = &V_tcp_syncache.hashbase[i]; in syncache_destroy()
361 free(V_tcp_syncache.hashbase, M_SYNCACHE); in syncache_destroy()
578 return (&V_tcp_syncache.hashbase[hash]); in syncache_hashbucket()
2576 sch = &V_tcp_syncache.hashbase[i]; in syncache_pcblist()