Searched defs:length (Results 1 - 25 of 106) sorted by relevance

12345

/bind-9.11.3/lib/isc/
H A Dbufferlist.c24 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 Dnull_10.h18 isc_uint16_t length; member in struct:dns_rdata_null
H A Dopenpgpkey_61.h15 isc_uint16_t length; member in struct:dns_rdata_openpgpkey
H A Davc_258.h18 isc_uint16_t length; member in struct:dns_rdata_avc
H A Dcert_37.h21 isc_uint16_t length; member in struct:dns_rdata_cert
H A Dds_43.h22 isc_uint16_t length; member in struct:dns_rdata_ds
H A Dsshfp_44.h22 isc_uint16_t length; member in struct:dns_rdata_sshfp
H A Dtlsa_52.h23 isc_uint16_t length; member in struct:dns_rdata_tlsa
H A Dopt_41.h19 isc_uint16_t length; member in struct:dns_rdata_opt_opcode
27 isc_uint16_t length; member in struct:dns_rdata_opt
H A Dspf_99.h15 isc_uint8_t length; member in struct:dns_rdata_spf_string
H A Dtxt_16.h16 isc_uint8_t length; member in struct:dns_rdata_txt_string
/bind-9.11.3/lib/dns/rdata/in_1/
H A Ddhcid_49.h19 unsigned int length; member in struct:dns_rdata_in_dhcid
H A Dapl_42.h19 isc_uint8_t length; member in struct:dns_rdata_apl_ent
/bind-9.11.3/lib/isc/include/isc/
H A Dregion.h21 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 Dsockaddr.h33 unsigned int length; /* XXXRTH beginning? */ member in struct:isc_sockaddr
/bind-9.11.3/lib/isc/unix/include/isc/
H A Ddir.h36 unsigned int length; member in struct:isc_direntry
/bind-9.11.3/lib/isc/win32/include/isc/
H A Ddir.h28 unsigned int length; member in struct:__anon296
/bind-9.11.3/lib/lwres/include/lwres/
H A Dlwbuffer.h49 * 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 Dlwpacket.h23 /*! 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 Ddir.h25 unsigned int length; member in struct:direntry
/bind-9.11.3/bin/tests/system/rndc/
H A Dgencheck.c50 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 Ddebug.c221 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 Dentropy_test.c25 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 Dnsec3_test.c69 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 Dlwbuffer.c42 * /------------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...]

Completed in 23 milliseconds

12345