/bind-9.11.3/lib/isc/ |
H A D | bufferlist.c | 24 unsigned int length; local 28 length = 0; 32 length += isc_buffer_usedlength(buffer); 36 return (length); 42 unsigned int length; local 46 length = 0; 50 length += isc_buffer_availablelength(buffer); 54 return (length);
|
/bind-9.11.3/lib/dns/rdata/generic/ |
H A D | null_10.h | 18 isc_uint16_t length; member in struct:dns_rdata_null
|
H A D | openpgpkey_61.h | 15 isc_uint16_t length; member in struct:dns_rdata_openpgpkey
|
H A D | avc_258.h | 18 isc_uint16_t length; member in struct:dns_rdata_avc
|
H A D | cert_37.h | 21 isc_uint16_t length; member in struct:dns_rdata_cert
|
H A D | ds_43.h | 22 isc_uint16_t length; member in struct:dns_rdata_ds
|
H A D | sshfp_44.h | 22 isc_uint16_t length; member in struct:dns_rdata_sshfp
|
H A D | tlsa_52.h | 23 isc_uint16_t length; member in struct:dns_rdata_tlsa
|
H A D | opt_41.h | 19 isc_uint16_t length; member in struct:dns_rdata_opt_opcode 27 isc_uint16_t length; member in struct:dns_rdata_opt
|
H A D | spf_99.h | 15 isc_uint8_t length; member in struct:dns_rdata_spf_string
|
H A D | txt_16.h | 16 isc_uint8_t length; member in struct:dns_rdata_txt_string
|
/bind-9.11.3/lib/dns/rdata/in_1/ |
H A D | dhcid_49.h | 19 unsigned int length; member in struct:dns_rdata_in_dhcid
|
H A D | apl_42.h | 19 isc_uint8_t length; member in struct:dns_rdata_apl_ent
|
/bind-9.11.3/lib/isc/include/isc/ |
H A D | region.h | 21 unsigned int length; member in struct:isc_region 26 unsigned int length; member in struct:isc_textregion 34 unsigned int length; member in struct:isc_constregion 39 unsigned int length; member in struct:isc_consttextregion 52 INSIST(_r->length >= _l); \ 54 _r->length -= _l; \ 61 INSIST(_r->length >= _l); \ 63 _r->length -= _l; \ 70 INSIST(_r->length >= _l); \ 72 _r->length [all...] |
H A D | sockaddr.h | 33 unsigned int length; /* XXXRTH beginning? */ member in struct:isc_sockaddr
|
/bind-9.11.3/lib/isc/unix/include/isc/ |
H A D | dir.h | 36 unsigned int length; member in struct:isc_direntry
|
/bind-9.11.3/lib/isc/win32/include/isc/ |
H A D | dir.h | 28 unsigned int length; member in struct:__anon296
|
/bind-9.11.3/lib/lwres/include/lwres/ |
H A D | lwbuffer.h | 49 * e == length of buffer. 51 * a-e == entire (length) of buffer. 61 * length > 0 63 * base is a valid pointer to length bytes of memory 65 * 0 <= used <= length 118 * Get the length of the used region of buffer "b" 123 * Get the length of the available region of buffer "b" 125 #define LWRES_BUFFER_AVAILABLECOUNT(b) ((b)->length - (b)->used) 143 unsigned int length; member in struct:lwres_buffer 154 lwres_buffer_init(lwres_buffer_t *b, void *base, unsigned int length); [all...] |
H A D | lwpacket.h | 23 /*! The overall packet length, including the 29 lwres_uint32_t length; member in struct:lwres_lwpacket 96 /*! The length of the authentication data. 105 #define LWRES_LWPACKET_LENGTH (4 * 5 + 2 * 4) /*%< Overall length. */ 116 * "authlen" and one of "length - authlen - sizeof(lwres_lwpacket_t)".
|
/bind-9.11.3/contrib/dlz/modules/filesystem/ |
H A D | dir.h | 25 unsigned int length; member in struct:direntry
|
/bind-9.11.3/bin/tests/system/rndc/ |
H A D | gencheck.c | 50 size_t length; local 54 length = 0; 73 length += count; 79 printf("%lu\n", (unsigned long)length);
|
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/ |
H A D | debug.c | 221 idn__debug_hexdata(const char *s, int length, int maxbytes) { argument 231 while (length > 0 && i < maxbytes) { 238 length--; 252 idn__debug_hexdump(const char *s, int length) { argument 257 while (length-- > 0) {
|
/bind-9.11.3/bin/tests/ |
H A D | entropy_test.c | 25 hex_dump(const char *msg, void *data, unsigned int length) { argument 32 printf("DUMP of %d bytes: %s\n\t", length, msg); 33 for (len = 0; len < length; len++) {
|
/bind-9.11.3/lib/dns/tests/ |
H A D | nsec3_test.c | 69 size_t length; local 98 length = strlen(params->expected_salt); 99 ATF_REQUIRE(length < sizeof(salt) - 1); /* prevent buffer overwrite */ 100 ATF_REQUIRE(length > 0U); /* prevent length underflow */ 102 result = dns_nsec3param_salttotext(&nsec3param, salt, length - 1); 106 params->nsec3param_text, (unsigned long)(length - 1), 108 result = dns_nsec3param_salttotext(&nsec3param, salt, length); 112 params->nsec3param_text, (unsigned long)length, 114 result = dns_nsec3param_salttotext(&nsec3param, salt, length [all...] |
/bind-9.11.3/lib/lwres/ |
H A D | lwbuffer.c | 42 * /------------entire length---------------\\ 53 * e == length of buffer. 55 * a-e == entire length of buffer. 63 * with the memory region of size length bytes starting at location base. 98 * respectively. lwres_buffer_putmem() copies length bytes of memory at 99 * base to b. Conversely, lwres_buffer_getmem() copies length bytes of 112 lwres_buffer_init(lwres_buffer_t *b, void *base, unsigned int length) argument 115 * Make 'b' refer to the 'length'-byte region starting at base. 122 b->length = length; 324 lwres_buffer_putmem(lwres_buffer_t *b, const unsigned char *base, unsigned int length) argument 339 lwres_buffer_getmem(lwres_buffer_t *b, unsigned char *base, unsigned int length) argument [all...] |