Lines Matching refs:port_table
263 dispportlist_t *port_table; /*%< hold ports 'owned' by us */ member
744 REQUIRE(disp->port_table != NULL); in port_search()
746 portentry = ISC_LIST_HEAD(disp->port_table[port % in port_search()
762 REQUIRE(disp->port_table != NULL); in new_portentry()
773 ISC_LIST_APPEND(disp->port_table[port % DNS_DISPATCH_PORTTABLESIZE], in new_portentry()
788 REQUIRE(disp->port_table != NULL); in deref_portentry()
796 ISC_LIST_UNLINK(disp->port_table[portentry->port % in deref_portentry()
2587 disp->port_table = NULL; in dispatch_allocate()
2651 if (disp->port_table != NULL) { in dispatch_free()
2653 INSIST(ISC_LIST_EMPTY(disp->port_table[i])); in dispatch_free()
2654 isc_mem_put(mgr->mctx, disp->port_table, in dispatch_free()
2655 sizeof(disp->port_table[0]) * in dispatch_free()
3035 disp->port_table = isc_mem_get(mgr->mctx, in dispatch_createudp()
3036 sizeof(disp->port_table[0]) * in dispatch_createudp()
3038 if (disp->port_table == NULL) in dispatch_createudp()
3041 ISC_LIST_INIT(disp->port_table[i]); in dispatch_createudp()