Searched defs:remaining (Results 1 - 10 of 10) sorted by relevance

/bind-9.6-ESV-R11/lib/isc/win32/
H A Dentropy.c86 unsigned int remaining; local
151 remaining = needed;
167 if (remaining == 0)
173 got = get_from_filesource(source, remaining);
177 remaining -= ISC_MIN(remaining, got);
190 if (blocking && remaining != 0) {
196 * Here, if there are bits remaining to be had and we can block,
200 while ((remaining != 0) && (source != NULL)) {
206 got = get_from_callback(source, remaining, blockin
[all...]
H A Dsocket.c255 unsigned int remaining; // the number of bytes remaining member in struct:isc_socket::__anon205
744 INSIST(sock->recvbuf.remaining == 0);
1213 INSIST(sock->recvbuf.remaining > 0);
1227 sock->recvbuf.remaining = 0;
1241 while (buffer != NULL && sock->recvbuf.remaining > 0) {
1246 sock->recvbuf.remaining);
1250 sock->recvbuf.remaining -= copylen;
1257 copylen = min(dev->region.length - dev->n, sock->recvbuf.remaining);
1261 sock->recvbuf.remaining
[all...]
/bind-9.6-ESV-R11/contrib/dlz/drivers/
H A Ddlz_postgres_driver.c126 unsigned int remaining = length; local
128 while (remaining > 0)
136 /* target and remaining are updated below. */
143 /* target and remaining are updated below. */
148 /* target and remaining are updated below. */
152 remaining--;
H A Ddlz_odbc_driver.c426 unsigned int remaining = length; local
428 while (remaining > 0)
436 /* target and remaining are updated below. */
443 /* target and remaining are updated below. */
448 /* target and remaining are updated below. */
452 remaining--;
/bind-9.6-ESV-R11/lib/dns/
H A Dncache.c332 isc_region_t remaining, tavailable; local
357 isc_buffer_remainingregion(&source, &remaining);
358 dns_name_fromregion(&name, &remaining);
359 INSIST(remaining.length >= name.length);
361 remaining.length -= name.length;
363 INSIST(remaining.length >= 5);
373 isc_buffer_remainingregion(&source, &remaining);
374 INSIST(remaining.length >= 2);
377 isc_buffer_remainingregion(&source, &remaining);
378 rdata.data = remaining
566 isc_region_t remaining; local
645 isc_region_t remaining, sigregion; local
742 isc_region_t remaining, sigregion; local
[all...]
H A Dmessage.c177 unsigned int remaining; member in struct:dns_msgblock
214 block->remaining = count;
229 if (block == NULL || block->remaining == 0)
232 block->remaining--;
236 + (sizeof_type * block->remaining));
243 block->remaining = block->count;
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dentropy.c252 unsigned int remaining; local
316 remaining = needed;
327 if (remaining == 0)
334 got = get_from_filesource(source, remaining);
338 got = get_from_usocketsource(source, remaining);
344 remaining -= ISC_MIN(remaining, got);
352 if (blocking && remaining != 0) {
361 * Here, if there are bits remaining to be had and we can block,
365 while ((remaining !
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dutils.c125 ssize_t remaining = strlen(contents); local
130 count <= remaining) {
135 remaining -= count;
139 return count == 0 && remaining == 0;
/bind-9.6-ESV-R11/lib/isc/
H A Dlex.c364 size_t remaining; local
416 remaining = lex->max_token;
619 remaining;
635 if (remaining == 0U) {
636 result = grow_data(lex, &remaining,
641 INSIST(remaining > 0U);
644 remaining--;
662 lex->max_token - remaining;
669 if (remaining == 0U) {
670 result = grow_data(lex, &remaining,
[all...]
/bind-9.6-ESV-R11/bin/dig/
H A Ddig.c647 int remaining; local
659 remaining = sizeof(lookup->cmdline) -
661 strncat(lookup->cmdline, append, remaining);
663 remaining = sizeof(lookup->cmdline) -
665 strncat(lookup->cmdline, "\n", remaining);
671 remaining = sizeof(lookup->cmdline) -
673 strncat(lookup->cmdline, append, remaining);
681 remaining = sizeof(lookup->cmdline) -
683 strncat(lookup->cmdline, append, remaining);

Completed in 40 milliseconds