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

/bind-9.11.3/unit/atf-src/tools/
H A Drequirements.cpp154 int64_t available; local
155 std::size_t available_length = sizeof(available);
156 if (::sysctlbyname(sysctl_variable, &available, &available_length,
162 if (available < needed) {
164 ", available " + tools::text::to_string(available);
/bind-9.11.3/lib/isc/
H A Dbuffer.c109 * Make 'r' refer to the available region of 'b'.
506 unsigned int available; local
516 available = isc_buffer_availablelength(b);
522 if (r->length > available)
/bind-9.11.3/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.11.3/lib/dns/
H A Ddispatch.c99 * available ports, i.e., an ordered array of the actual port numbers.
110 in_port_t *v4ports; /*%< available ports for IPv4 */
111 unsigned int nv4ports; /*%< # of available ports for IPv4 */
112 in_port_t *v6ports; /*%< available ports for IPv4 */
113 unsigned int nv6ports; /*%< # of available ports for IPv4 */
2157 isc_boolean_t available = ISC_FALSE; local
2181 available = ISC_TRUE;
2185 return (available);
2201 * Don't match wildcard ports unless the port is available in the
2944 "an available por
[all...]
/bind-9.11.3/lib/isc/unix/
H A Dsocket.c152 * available file descriptors (up to FD_SETSIZE) and the select() function
1651 * the RECV constructor, which will use the available region of the buffer
1667 isc_region_t available; local
1734 isc_buffer_availableregion(buffer, &available);
1736 if (available.length > 0) {
1737 iov[iovcount].iov_base = (void *)(available.base);
1738 iov[iovcount].iov_len = available.length;
1739 read_count += available.length;
2815 "No buffer available to receive "
2869 * if it available
[all...]

Completed in 36 milliseconds