Searched refs:nbytes (Results 1 - 5 of 5) sorted by relevance
/bind-9.6-ESV-R11/lib/isc/ |
H A D | netaddr.c | 74 unsigned int nbytes; /* Number of significant whole bytes */ local 106 nbytes = prefixlen / 8; 109 if (nbytes > 0) { 110 if (memcmp(pa, pb, nbytes) != 0) 115 INSIST(nbytes < ipabytes); 117 bytea = pa[nbytes]; 118 byteb = pb[nbytes]; 216 unsigned int nbits, nbytes, ipbytes = 0; local 235 nbytes = prefixlen / 8; 238 if ((p[nbytes] 249 unsigned int nbits = 0, nbytes = 0, ipbytes = 0, i; local [all...] |
/bind-9.6-ESV-R11/unit/atf-src/atf-run/ |
H A D | io.cpp | 259 safe_read(const int fd, void* buffer, const size_t nbytes, argument 263 while ((ret = ::read(fd, buffer, nbytes)) == -1 && errno == EINTR) {} 294 const size_t nbytes = safe_read(fd, buffer.get(), m_bufsize - 1, local 296 INV(nbytes < m_bufsize); 297 buffer[nbytes] = '\0'; 302 for (size_t i = 0; i < nbytes; i++) { 316 return nbytes;
|
/bind-9.6-ESV-R11/lib/isc/win32/ |
H A D | socket.c | 1370 startio_send(isc_socket_t *sock, isc_socketevent_t *dev, int *nbytes, argument 1391 *nbytes = internal_sendmsg(sock, lpo, msghdr, 0, send_errno); 1393 if (*nbytes < 0) { 1418 sock->fd, *nbytes, *send_errno, strbuf); 2177 internal_recv(isc_socket_t *sock, int nbytes) argument 2186 "internal_recv: %d bytes received", nbytes); 2207 if (nbytes == 0 && sock->type == isc_sockettype_tcp) { 2212 sock->recvbuf.remaining = nbytes; 2230 struct msghdr *messagehdr, int nbytes, int send_errno, IoCompletionInfo *lpo) 2271 switch (completeio_send(sock, dev, messagehdr, nbytes, send_errn 2229 internal_send(isc_socket_t *sock, isc_socketevent_t *dev, struct msghdr *messagehdr, int nbytes, int send_errno, IoCompletionInfo *lpo) argument 2385 DWORD nbytes; local [all...] |
/bind-9.6-ESV-R11/lib/dns/ |
H A D | xfrin.c | 147 isc_uint64_t nbytes; /*%< Number of bytes received */ member in struct:dns_xfrin_ctx 829 xfr->nbytes = 0; 1096 xfr->nbytes = 0; 1323 xfr->nbytes += tcpmsg->buffer.used; 1416 persec = (xfr->nbytes * 1000) / msecs; 1421 xfr->nmsg, xfr->nrecs, xfr->nbytes,
|
H A D | journal.c | 386 journal_read(dns_journal_t *j, void *mem, size_t nbytes) { argument 389 result = isc_stdio_read(mem, 1, nbytes, j->fp, NULL); 398 j->offset += nbytes; 403 journal_write(dns_journal_t *j, void *mem, size_t nbytes) { argument 406 result = isc_stdio_write(mem, 1, nbytes, j->fp, NULL); 413 j->offset += nbytes;
|
Completed in 29 milliseconds