Searched defs:remaining (Results 1 - 10 of 10) sorted by relevance
/bind-9.11.3/lib/isc/win32/ |
H A D | entropy.c | 79 unsigned int remaining; local 144 remaining = needed; 160 if (remaining == 0) 166 got = get_from_filesource(source, remaining); 170 remaining -= ISC_MIN(remaining, got); 183 if (blocking && remaining != 0) { 189 * Here, if there are bits remaining to be had and we can block, 193 while ((remaining != 0) && (source != NULL)) { 199 got = get_from_callback(source, remaining, blockin [all...] |
H A D | socket.c | 255 unsigned int remaining; // the number of bytes remaining member in struct:isc_socket::__anon301 763 INSIST(sock->recvbuf.remaining == 0); 1234 INSIST(sock->recvbuf.remaining > 0); 1248 sock->recvbuf.remaining = 0; 1262 while (buffer != NULL && sock->recvbuf.remaining > 0) { 1267 sock->recvbuf.remaining); 1271 sock->recvbuf.remaining -= copylen; 1278 copylen = min(dev->region.length - dev->n, sock->recvbuf.remaining); 1282 sock->recvbuf.remaining [all...] |
/bind-9.11.3/lib/dns/ |
H A D | ncache.c | 270 isc_region_t remaining, tavailable; local 295 isc_buffer_remainingregion(&source, &remaining); 296 dns_name_fromregion(&name, &remaining); 297 INSIST(remaining.length >= name.length); 299 remaining.length -= name.length; 301 INSIST(remaining.length >= 5); 311 isc_buffer_remainingregion(&source, &remaining); 312 INSIST(remaining.length >= 2); 315 isc_buffer_remainingregion(&source, &remaining); 316 rdata.data = remaining 507 isc_region_t remaining; local 586 isc_region_t remaining, sigregion; local 680 isc_region_t remaining, sigregion; local [all...] |
H A D | byaddr.c | 83 size_t remaining; local 92 remaining = sizeof(textname) - (cp - textname); 94 strlcpy(cp, "ip6.int.", remaining); 96 strlcpy(cp, "ip6.arpa.", remaining);
|
H A D | message.c | 149 unsigned int remaining; member in struct:dns_msgblock 192 block->remaining = count; 207 if (block == NULL || block->remaining == 0) 210 block->remaining--; 214 + (sizeof_type * block->remaining)); 221 block->remaining = block->count;
|
/bind-9.11.3/lib/isc/unix/ |
H A D | entropy.c | 245 unsigned int remaining; local 309 remaining = needed; 320 if (remaining == 0) 327 got = get_from_filesource(source, remaining); 331 got = get_from_usocketsource(source, remaining); 337 remaining -= ISC_MIN(remaining, got); 345 if (blocking && remaining != 0) { 354 * Here, if there are bits remaining to be had and we can block, 358 while ((remaining ! [all...] |
/bind-9.11.3/contrib/dlz/drivers/ |
H A D | dlz_postgres_driver.c | 117 unsigned int remaining = length; local 119 while (remaining > 0) 127 /* target and remaining are updated below. */ 134 /* target and remaining are updated below. */ 139 /* target and remaining are updated below. */ 143 remaining--;
|
H A D | dlz_odbc_driver.c | 417 unsigned int remaining = length; local 419 while (remaining > 0) 427 /* target and remaining are updated below. */ 434 /* target and remaining are updated below. */ 439 /* target and remaining are updated below. */ 443 remaining--;
|
/bind-9.11.3/unit/atf-src/atf-c/ |
H A D | utils.c | 149 ssize_t remaining = strlen(contents); local 154 count <= remaining) { 159 remaining -= count; 163 return count == 0 && remaining == 0;
|
/bind-9.11.3/lib/isc/ |
H A D | lex.c | 362 size_t remaining; local 421 remaining = lex->max_token; 644 remaining); 660 if (remaining == 0U) { 661 result = grow_data(lex, &remaining, 666 INSIST(remaining > 0U); 669 remaining--; 688 (lex->max_token - remaining); 695 if (remaining == 0U) { 696 result = grow_data(lex, &remaining, [all...] |
Completed in 41 milliseconds