Searched defs:available (Results 1 - 5 of 5) sorted by relevance

/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Drequirements.cpp156 int64_t available; local
157 std::size_t available_length = sizeof(available);
158 if (::sysctlbyname(sysctl_variable, &available, &available_length,
164 if (available < needed) {
166 ", available " + atf::text::to_string(available);
/bind-9.6-ESV-R11/lib/isc/
H A Dbuffer.c111 * Make 'r' refer to the available region of 'b'.
430 unsigned int available; local
439 available = isc_buffer_availablelength(b);
440 if (r->length > available)
/bind-9.6-ESV-R11/contrib/queryperf/
H A Dqueryperf.c1709 * Is there data available on the given file descriptor?
1719 int available = FALSE; local
1745 available = TRUE;
1749 available = TRUE;
1753 return (available);
/bind-9.6-ESV-R11/lib/dns/
H A Ddispatch.c115 * available ports, i.e., an ordered array of the actual port numbers.
126 in_port_t *v4ports; /*%< available ports for IPv4 */
127 unsigned int nv4ports; /*%< # of available ports for IPv4 */
128 in_port_t *v6ports; /*%< available ports for IPv4 */
129 unsigned int nv6ports; /*%< # of available ports for IPv4 */
2172 isc_boolean_t available = ISC_FALSE; local
2196 available = ISC_TRUE;
2200 return (available);
2216 * Don't match wildcard ports unless the port is available in the
2767 "an available por
[all...]
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dsocket.c128 * available file descriptors (up to FD_SETSIZE) and the select() function
1262 * the RECV constructor, which will use the available region of the buffer
1278 isc_region_t available; local
1345 isc_buffer_availableregion(buffer, &available);
1347 if (available.length > 0) {
1348 iov[iovcount].iov_base = (void *)(available.base);
1349 iov[iovcount].iov_len = available.length;
1350 read_count += available.length;
2266 "No buffer available to receive "

Completed in 29 milliseconds