/bind-9.11.3/lib/dns/rdata/generic/ |
H A D | avc_258.h | 20 isc_uint16_t offset; member in struct:dns_rdata_avc
|
H A D | hip_55.h | 27 isc_uint16_t offset; member in struct:dns_rdata_hip
|
H A D | opt_41.h | 29 isc_uint16_t offset; member in struct:dns_rdata_opt
|
H A D | spf_99.h | 25 isc_uint16_t offset; member in struct:dns_rdata_spf
|
H A D | txt_16.h | 26 isc_uint16_t offset; member in struct:dns_rdata_txt
|
/bind-9.11.3/lib/dns/rdata/in_1/ |
H A D | apl_42.h | 30 isc_uint16_t offset; member in struct:dns_rdata_in_apl
|
/bind-9.11.3/bin/tests/ |
H A D | backtrace_test.c | 34 unsigned long offset; local 48 result = isc_backtrace_getsymbol(tracebuf[i], &fname, &offset); 64 &offset);
|
/bind-9.11.3/lib/isc/ |
H A D | assertions.c | 116 unsigned long offset; local 120 &offset); 123 tracebuf[i], fname, offset);
|
/bind-9.11.3/lib/dns/ |
H A D | iptable.c | 93 int offset = ISC_RADIX_OFF(&pfx); local 94 if (node->data[offset] == NULL) { 95 node->data[offset] = pos ? &dns_iptable_pos
|
H A D | soa.c | 40 soa_get(dns_rdata_t *rdata, int offset) { argument 53 INSIST(offset >= 0 && offset <= 16); 54 return (decode_uint32(rdata->data + rdata->length - 20 + offset)); 112 soa_set(dns_rdata_t *rdata, isc_uint32_t val, int offset) { argument 115 INSIST(offset >= 0 && offset <= 16); 116 encode_uint32(val, rdata->data + rdata->length - 20 + offset);
|
H A D | compress.c | 70 if ((node->offset & 0x8000) != 0) 137 * If match is found return ISC_TRUE. prefix, suffix and offset are updated. 142 dns_name_t *prefix, isc_uint16_t *offset) 150 REQUIRE(offset != NULL); 196 *offset = (node->offset & 0x7fff); 209 const dns_name_t *prefix, isc_uint16_t offset) 231 if (offset >= 0x4000) 260 toffset = (isc_uint16_t)(offset + (length - tlength)); 281 node->offset 141 dns_compress_findglobal(dns_compress_t *cctx, const dns_name_t *name, dns_name_t *prefix, isc_uint16_t *offset) argument 208 dns_compress_add(dns_compress_t *cctx, const dns_name_t *name, const dns_name_t *prefix, isc_uint16_t offset) argument 296 dns_compress_rollback(dns_compress_t *cctx, isc_uint16_t offset) argument [all...] |
H A D | journal.c | 48 * serial number. Unused index entries have an "offset" 184 * XXXRTH Should offset be 8 bytes? 190 unsigned char offset[4]; /*%< Offset from beginning of file. */ member in struct:__anon154 245 isc_offset_t offset; member in struct:__anon159 248 #define POS_VALID(pos) ((pos).offset != 0) 249 #define POS_INVALIDATE(pos) ((pos).offset = 0, (pos).serial = 0) 292 #define JOURNAL_EMPTY(h) ((h)->begin.offset == (h)->end.offset) 308 isc_offset_t offset; /*%< Current file offset */ member in struct:dns_journal 384 journal_seek(dns_journal_t *j, isc_uint32_t offset) argument 969 isc_uint32_t offset; local 1170 isc_offset_t offset; local [all...] |
H A D | name.c | 219 unsigned int offset, count, length, nlabels; local 230 offset = 0; 233 while (offset != length) { 237 if (offsets != NULL && offsets[nlabels] != offset) 241 offset += count + 1; 243 if (offset > length) 250 if (nlabels != name->labels || offset != name->length) 1760 unsigned int offset, count, length, nlabels; local 1766 offset = 0; 1769 while (ISC_LIKELY(offset ! 1974 isc_uint16_t offset; local [all...] |
/bind-9.11.3/lib/isc/unix/ |
H A D | stdio.c | 45 isc_stdio_seek(FILE *f, off_t offset, int whence) { argument 49 r = fseeko(f, offset, whence); 51 r = fseek(f, offset, whence);
|
H A D | file.c | 659 int flags, int fd, off_t offset) 662 return (mmap(addr, len, prot, flags, fd, offset)); 673 lseek(fd, offset, SEEK_SET); 674 if (end - offset < (off_t) len) 675 len = end - offset; 658 isc_file_mmap(void *addr, size_t len, int prot, int flags, int fd, off_t offset) argument
|
/bind-9.11.3/lib/isc/win32/ |
H A D | stdio.c | 47 isc_stdio_seek(FILE *f, off_t offset, int whence) { argument 51 r = fseek(f, offset, whence); 53 r = _fseeki64(f, offset, whence);
|
H A D | file.c | 739 int flags, int fd, off_t offset) 750 lseek(fd, offset, SEEK_SET); 751 if (end - offset < (off_t) len) 752 len = end - offset; 738 isc_file_mmap(void *addr, size_t len, int prot, int flags, int fd, off_t offset) argument
|
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/ |
H A D | net.c | 123 unsigned int offset, int bufsize) 155 if (port != 0 && offset != 0) { 156 port += offset; 122 perf_net_opensocket(const isc_sockaddr_t *server, const isc_sockaddr_t *local, unsigned int offset, int bufsize) argument
|
H A D | dnsperf.c | 998 per_thread(isc_uint32_t total, isc_uint32_t nthreads, unsigned int offset) argument 1003 if (value % nthreads > offset) 1012 unsigned int offset, socket_offset, i; local 1027 offset = tinfo - threads; 1038 config->threads, offset); 1039 tinfo->max_qps = per_thread(config->max_qps, config->threads, offset); 1040 tinfo->nsocks = per_thread(config->clients, config->threads, offset); 1055 for (i = 0; i < offset; i++)
|
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/ |
H A D | nameprep_template.c | 78 int offset; local 83 offset = TABLE[IMAP[IMAP[idx0] + idx1]].tbl[idx2]; 84 if (offset == 0) 86 return (const char *)(DATA + offset); 127 int offset; local 132 offset = TABLE[IMAP[IMAP[idx0] + idx1]].tbl[idx2]; 133 return DATA[offset];
|
H A D | ucs4.c | 300 int offset; local 342 offset = 6 * (width - 1); 343 *utf8p++ = (v >> offset) | mask; 345 while (offset > 0) { 346 offset -= 6; 347 *utf8p++ = ((v >> offset) & 0x3f) | mask;
|
/bind-9.11.3/lib/dns/include/dns/ |
H A D | compress.h | 49 isc_uint16_t offset; member in struct:dns_compressnode 177 dns_name_t *prefix, isc_uint16_t *offset); 185 *\li 'offset' to point to an isc_uint16_t. 188 *\li 'prefix' and 'offset' are valid if ISC_TRUE is returned. 196 const dns_name_t *prefix, isc_uint16_t offset); 212 dns_compress_rollback(dns_compress_t *cctx, isc_uint16_t offset); 215 * Remove any compression pointers from global table >= offset.
|
/bind-9.11.3/lib/dns/tests/ |
H A D | rbt_serialize_test.c | 282 off_t offset; local 307 &offset); 354 off_t offset; local 376 &offset);
|
/bind-9.11.3/bin/named/ |
H A D | main.c | 195 unsigned long offset; local 200 &offset); 208 offset);
|
/bind-9.11.3/lib/isc/include/isc/ |
H A D | socket.h | 218 unsigned int offset; /*%< offset into buffer list */ member in struct:isc_socketevent
|