Searched defs:used (Results 1 - 9 of 9) sorted by relevance
/bind-9.6-ESV-R11/lib/isc/include/isc/ |
H A D | quota.h | 54 int used; member in struct:isc_quota
|
H A D | buffer.h | 30 * Buffers are used for parsing and I/O operations. 32 * The 'used region' and the 'available' region are disjoint, and their 33 * union is the buffer's region. The used region extends from the beginning 34 * of the buffer region to the last used byte. The available region 35 * extends from one byte greater than the last used byte to the end of the 36 * buffer's region. The size of the used region can be changed using various 37 * buffer commands. Initially, the used region is empty. 39 * The used region is further subdivided into two disjoint regions: the 41 * regions is the used region. The consumed region extends from the beginning 42 * of the used regio 174 unsigned int used; member in struct:isc_buffer [all...] |
/bind-9.6-ESV-R11/lib/lwres/include/lwres/ |
H A D | lwbuffer.h | 24 * Buffers are used for parsing and I/O operations. 26 * The 'used region' and the 'available' region are disjoint, and their 27 * union is the buffer's region. The used region extends from the beginning 28 * of the buffer region to the last used byte. The available region 29 * extends from one byte greater than the last used byte to the end of the 30 * buffer's region. The size of the used region can be changed using various 31 * buffer commands. Initially, the used region is empty. 33 * The used region is further subdivided into two disjoint regions: the 35 * regions is the used region. The consumed region extends from the beginning 36 * of the used regio 153 unsigned int used; member in struct:lwres_buffer [all...] |
/bind-9.6-ESV-R11/bin/named/ |
H A D | lwdgrbn.c | 76 int used = 0, count; local 111 if (used + count > size) { 127 memmove(rdatas, oldrdatas, used * sizeof(*rdatas)); 128 memmove(lens, oldlens, used * sizeof(*lens)); 139 result = fill_array(&used, &set, size, rdatas, lens); 153 if (size != used) { 155 newrdatas = isc_mem_get(mctx, used * sizeof(*rdatas)); 158 newlens = isc_mem_get(mctx, used * sizeof(*lens)); 161 memmove(newrdatas, rdatas, used * sizeof(*rdatas)); 162 memmove(newlens, lens, used * sizeo [all...] |
H A D | xfrout.c | 343 INSIST(buf.used >= 1 && 344 ((char *) buf.base)[buf.used - 1] == '\n'); 345 buf.used--; 851 dns_tsigkey_t *tsigkey; /* Key used to create TSIG */ 1436 isc_region_t used; local 1656 isc_buffer_usedregion(&xfr->txbuf, &used); 1658 (isc_uint16_t)used.length); 1660 region.length = 2 + used.length; 1663 used.length);
|
/bind-9.6-ESV-R11/lib/isc/ |
H A D | lex.c | 334 isc_region_t used; local 341 isc_buffer_usedregion(source->pushback, &used); 342 result = isc_buffer_copyregion(tbuf, &used); 444 if (buffer->current == buffer->used) {
|
/bind-9.6-ESV-R11/lib/dns/ |
H A D | journal.c | 54 * transactions. The index entries are used as hints to 179 * These are used in the journal header to locate the beginning 281 * identification string is used rather than a binary magic 994 isc_region_t used; local 1052 isc_buffer_usedregion(&buffer, &used); 1053 INSIST(used.length == size); 1055 j->x.pos[1].offset += used.length; 1060 CHECK(journal_write(j, used.base, used.length)); 1584 j->it.xpos = 0; /* ...and haven't used an [all...] |
/bind-9.6-ESV-R11/lib/isc/win32/ |
H A D | socket.c | 28 * The number of Completion Port Worker threads used is the total number 310 * used is the number of CPU's + 1. 369 * This is used to dump the contents of the sock structure 372 * it should only be used interactively. 932 * the SEND constructor, which will use the used region of the buffer 947 isc_region_t used; local 1001 isc_buffer_usedregion(buffer, &used); 1003 if (used.length > 0) { 1004 int uselen = used.length - skip_count; 1015 memmove(cpbuffer->buf,(used [all...] |
/bind-9.6-ESV-R11/lib/isc/unix/ |
H A D | socket.c | 175 * seen this with threads, this workaround is used only when enabling threads. 325 unsigned char overflow; /* used for MSG_TRUNC fake */ 1042 * sock is used only when ISC_NET_BSD44MSGHDR and USE_CMSG are defined. 1043 * msg and dev are used only when ISC_NET_BSD44MSGHDR is defined. 1124 * the SEND constructor, which will use the used region of the buffer 1140 isc_region_t used; local 1186 isc_buffer_usedregion(buffer, &used); 1188 if (used.length > 0) { 1189 iov[iovcount].iov_base = (void *)(used.base 1191 iov[iovcount].iov_len = used [all...] |
Completed in 47 milliseconds