Searched refs:free_ports (Results 1 - 1 of 1) sorted by relevance

/barrelfish-2018-10-04/lib/net_device_manager/
H A Dportalloc.c50 * @param free_ports the array of port allocation data
56 static uint16_t alloc_port(uint64_t * free_ports, net_ports_port_type_t type, argument
79 if (free_ports[i]) {
80 v = free_ports[i];
98 free_ports[i] &= ~(1 << bitnr);
130 * @param free_ports the array of either tcp or udp allocation state
135 static inline bool check_free(uint64_t * free_ports, uint16_t port) argument
139 return (free_ports[pidx / 64] & (1 << (pidx % 64)));
153 uint64_t *free_ports; local
157 free_ports
177 uint64_t *free_ports = local
[all...]

Completed in 30 milliseconds