Searched defs:used (Results 1 - 13 of 13) sorted by relevance

/bind-9.11.3/lib/isc/include/isc/
H A Dquota.h45 int used; member in struct:isc_quota
H A Dbuffer.h19 * Buffers are used for parsing and I/O operations.
21 * The 'used region' and the 'available' region are disjoint, and their
22 * union is the buffer's region. The used region extends from the beginning
23 * of the buffer region to the last used byte. The available region
24 * extends from one byte greater than the last used byte to the end of the
25 * buffer's region. The size of the used region can be changed using various
26 * buffer commands. Initially, the used region is empty.
28 * The used region is further subdivided into two disjoint regions: the
30 * regions is the used region. The consumed region extends from the beginning
31 * of the used regio
174 unsigned int used; member in struct:isc_buffer
[all...]
/bind-9.11.3/lib/lwres/include/lwres/
H A Dlwbuffer.h15 * Buffers are used for parsing and I/O operations.
17 * The 'used region' and the 'available' region are disjoint, and their
18 * union is the buffer's region. The used region extends from the beginning
19 * of the buffer region to the last used byte. The available region
20 * extends from one byte greater than the last used byte to the end of the
21 * buffer's region. The size of the used region can be changed using various
22 * buffer commands. Initially, the used region is empty.
24 * The used region is further subdivided into two disjoint regions: the
26 * regions is the used region. The consumed region extends from the beginning
27 * of the used regio
144 unsigned int used; member in struct:lwres_buffer
[all...]
/bind-9.11.3/lib/isc/
H A Dcounter.c29 unsigned int used; member in struct:isc_counter
54 counter->used = 0;
66 counter->used++;
67 if (counter->limit != 0 && counter->used >= counter->limit)
78 return (counter->used);
H A Dlex.c332 isc_region_t used; local
339 isc_buffer_usedregion(source->pushback, &used);
340 result = isc_buffer_copyregion(tbuf, &used);
449 if (buffer->current == buffer->used) {
/bind-9.11.3/bin/named/
H A Dlwdgrbn.c67 int used = 0, count; local
102 if (used + count > size) {
118 memmove(rdatas, oldrdatas, used * sizeof(*rdatas));
119 memmove(lens, oldlens, used * sizeof(*lens));
130 result = fill_array(&used, &set, size, rdatas, lens);
144 if (size != used) {
146 newrdatas = isc_mem_get(mctx, used * sizeof(*rdatas));
149 newlens = isc_mem_get(mctx, used * sizeof(*lens));
152 memmove(newrdatas, rdatas, used * sizeof(*rdatas));
153 memmove(newlens, lens, used * sizeo
[all...]
H A Dxfrout.c156 INSIST(buf.used >= 1 &&
157 ((char *) buf.base)[buf.used - 1] == '\n');
158 buf.used--;
668 dns_tsigkey_t *tsigkey; /* Key used to create TSIG */
1261 isc_region_t used; local
1503 isc_buffer_usedregion(&xfr->txbuf, &used);
1505 (isc_uint16_t)used.length);
1507 region.length = 2 + used.length;
1510 used.length);
/bind-9.11.3/lib/isccc/
H A Dcc.c129 unsigned int used; local
139 used = (*buffer)->used;
149 len = (*buffer)->used - used;
158 isc_buffer_init(&b, (unsigned char *) (*buffer)->base + used, 4);
161 unsigned int used; local
171 used = (*buffer)->used;
181 len = (*buffer)->used
[all...]
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/
H A Dresperf.c461 isc_region_t used; local
470 isc_buffer_usedregion(lines, &used);
479 result = perf_dns_buildrequest(NULL, (isc_textregion_t *) &used,
H A Ddnsperf.c573 isc_region_t used; local
643 isc_buffer_usedregion(&lines, &used);
646 (isc_textregion_t *) &used,
/bind-9.11.3/lib/dns/
H A Djournal.c46 * transactions. The index entries are used as hints to
177 * These are used in the journal header to locate the beginning
284 * identification string is used rather than a binary magic
1015 isc_region_t used; local
1073 isc_buffer_usedregion(&buffer, &used);
1074 INSIST(used.length == size);
1076 j->x.pos[1].offset += used.length;
1081 CHECK(journal_write(j, used.base, used.length));
1641 j->it.xpos = 0; /* ...and haven't used an
[all...]
/bind-9.11.3/lib/isc/unix/
H A Dsocket.c203 * seen this with threads, this workaround is used only when enabling threads.
373 unsigned char overflow; /* used for MSG_TRUNC fake */
1323 * sock is used only when ISC_NET_BSD44MSGHDR and USE_CMSG are defined.
1324 * msg and dev are used only when ISC_NET_BSD44MSGHDR is defined.
1428 * the SEND constructor, which will use the used region of the buffer
1444 isc_region_t used; local
1496 isc_buffer_usedregion(buffer, &used);
1498 if (used.length > 0) {
1499 iov[iovcount].iov_base = (void *)(used.base
1501 iov[iovcount].iov_len = used
[all...]
/bind-9.11.3/lib/isc/win32/
H A Dsocket.c19 * The number of Completion Port Worker threads used is the total number
311 * used is the number of CPU's + 1.
375 * This is used to dump the contents of the sock structure
378 * it should only be used interactively.
951 * the SEND constructor, which will use the used region of the buffer
966 isc_region_t used; local
1021 isc_buffer_usedregion(buffer, &used);
1023 if (used.length > 0) {
1024 int uselen = (int)(used.length - skip_count);
1035 memmove(cpbuffer->buf,(used
[all...]

Completed in 48 milliseconds