/bind-9.11.3/lib/isc/win32/ |
H A D | entropy.c | 40 get_from_filesource(isc_entropysource_t *source, isc_uint32_t desired) { argument 41 isc_entropy_t *ent = source->ent; 43 HCRYPTPROV hcryptprov = source->sources.file.handle; 47 if (source->bad) 57 source->bad = ISC_TRUE; 73 * Poll each source, trying to get data from it to stuff into the entropy 82 isc_entropysource_t *source; local 136 * Poll each file source to see if we can read anything useful from 150 source = ent->nextsource; 152 * Remember the first source s 223 destroyfilesource(isc_entropyfilesource_t *source) argument 228 destroyusocketsource(isc_entropyusocketsource_t *source) argument 236 isc_entropysource_t *source; local [all...] |
/bind-9.11.3/lib/isc/unix/ |
H A D | entropy.c | 66 get_from_filesource(isc_entropysource_t *source, isc_uint32_t desired) { argument 67 isc_entropy_t *ent = source->ent; 69 int fd = source->sources.file.handle; 73 if (source->bad) 98 source->sources.file.handle = -1; 99 source->bad = ISC_TRUE; 106 get_from_usocketsource(isc_entropysource_t *source, isc_uint32_t desired) { argument 107 isc_entropy_t *ent = source->ent; 109 int fd = source->sources.usocket.handle; 112 size_t sz_to_recv = source 248 isc_entropysource_t *source; local 384 isc_entropysource_t *source; local 437 destroyfilesource(isc_entropyfilesource_t *source) argument 442 destroyusocketsource(isc_entropyusocketsource_t *source) argument 487 isc_entropysource_t *source; local [all...] |
/bind-9.11.3/bin/tests/system/inline/ns5/ |
H A D | named.conf.pre | 18 query-source address 10.53.0.5; 19 notify-source 10.53.0.5; 20 transfer-source 10.53.0.5;
|
H A D | named.conf.post | 18 query-source address 10.53.0.5; 19 notify-source 10.53.0.5; 20 transfer-source 10.53.0.5;
|
/bind-9.11.3/bin/tests/system/logfileconfig/ns1/ |
H A D | named.plainconf | 10 query-source address 10.53.0.1; 11 notify-source 10.53.0.1; 12 transfer-source 10.53.0.1;
|
H A D | named.dirconf | 12 query-source address 10.53.0.1; 13 notify-source 10.53.0.1; 14 transfer-source 10.53.0.1;
|
H A D | named.pipeconf | 12 query-source address 10.53.0.1; 13 notify-source 10.53.0.1; 14 transfer-source 10.53.0.1;
|
H A D | named.plain | 12 query-source address 10.53.0.1; 13 notify-source 10.53.0.1; 14 transfer-source 10.53.0.1;
|
H A D | named.symconf | 12 query-source address 10.53.0.1; 13 notify-source 10.53.0.1; 14 transfer-source 10.53.0.1;
|
/bind-9.11.3/bin/tests/system/rpzrecurse/ns2/ |
H A D | named.conf.header | 12 query-source address 10.53.0.2; 13 notify-source 10.53.0.2; 14 transfer-source 10.53.0.2;
|
/bind-9.11.3/lib/dns/include/dns/ |
H A D | rcode.h | 22 isc_result_t dns_rcode_fromtext(dns_rcode_t *rcodep, isc_textregion_t *source); 24 * Convert the text 'source' refers to into a DNS error value. 29 *\li 'source' is a valid text region. 55 isc_textregion_t *source); 57 * Convert the text 'source' refers to into a TSIG/TKEY error value. 62 *\li 'source' is a valid text region. 88 dns_hashalg_fromtext(unsigned char *hashalg, isc_textregion_t *source); 90 * Convert the text 'source' refers to into a has algorithm value. 95 *\li 'source' is a valid text region.
|
H A D | keyflags.h | 23 dns_keyflags_fromtext(dns_keyflags_t *flagsp, isc_textregion_t *source); 25 * Convert the text 'source' refers to into a DNSSEC KEY flags value. 35 *\li 'source' is a valid text region.
|
H A D | time.h | 30 dns_time64_fromtext(const char *source, isc_int64_t *target); 32 * Convert a date and time in YYYYMMDDHHMMSS text format at 'source' 38 dns_time32_fromtext(const char *source, isc_uint32_t *target);
|
H A D | ttl.h | 57 dns_counter_fromtext(isc_textregion_t *source, isc_uint32_t *ttl); 67 dns_ttl_fromtext(isc_textregion_t *source, isc_uint32_t *ttl);
|
/bind-9.11.3/lib/isc/ |
H A D | lex.c | 190 inputsource *source; local 193 source = isc_mem_get(lex->mctx, sizeof(*source)); 194 if (source == NULL) 196 source->result = ISC_R_SUCCESS; 197 source->is_file = is_file; 198 source->need_close = need_close; 199 source->at_eof = ISC_FALSE; 200 source->last_was_eol = lex->last_was_eol; 201 source 275 inputsource *source; local 316 pushback(inputsource *source, int c) argument 328 pushandgrow(isc_lex_t *lex, inputsource *source, int c) argument 352 inputsource *source; local 936 inputsource *source; local 959 inputsource *source; local 979 inputsource *source; local 992 inputsource *source; local 1005 inputsource *source; local 1023 inputsource *source; local 1037 inputsource *source; local [all...] |
H A D | base32.c | 35 str_totext(const char *source, isc_buffer_t *target); 48 base32_totext(isc_region_t *source, int wordlength, const char *wordbreak, argument 58 while (source->length > 0) { 59 buf[0] = base[((source->base[0]>>3)&0x1f)]; /* 5 + */ 60 if (source->length == 1) { 61 buf[1] = base[(source->base[0]<<2)&0x1c]; 67 buf[1] = base[((source->base[0]<<2)&0x1c)| /* 3 = 8 */ 68 ((source->base[1]>>6)&0x03)]; /* 2 + */ 69 buf[2] = base[((source->base[1]>>1)&0x1f)]; /* 5 + */ 70 if (source 113 isc_base32_totext(isc_region_t *source, int wordlength, const char *wordbreak, isc_buffer_t *target) argument 121 isc_base32hex_totext(isc_region_t *source, int wordlength, const char *wordbreak, isc_buffer_t *target) argument 129 isc_base32hexnp_totext(isc_region_t *source, int wordlength, const char *wordbreak, isc_buffer_t *target) argument 359 base32_decoderegion(isc_region_t *source, const char base[], isc_boolean_t pad, isc_buffer_t *target) argument 375 isc_base32_decoderegion(isc_region_t *source, isc_buffer_t *target) argument 380 isc_base32hex_decoderegion(isc_region_t *source, isc_buffer_t *target) argument 385 isc_base32hexnp_decoderegion(isc_region_t *source, isc_buffer_t *target) argument 390 str_totext(const char *source, isc_buffer_t *target) argument [all...] |
H A D | entropy.c | 14 * compiled via inclusion from the relevant OS source file, ie, 81 * pseudorandom data and they cannot provide a stronger random source, 140 isc_uint32_t total; /*%< entropy from this source */ 154 #define ENTROPY_SOURCETYPE_SAMPLE 1 /*%< Type is a sample source */ 155 #define ENTROPY_SOURCETYPE_FILE 2 /*%< Type is a file source */ 156 #define ENTROPY_SOURCETYPE_CALLBACK 3 /*%< Type is a callback source */ 157 #define ENTROPY_SOURCETYPE_USOCKET 4 /*%< Type is a Unix socket source */ 182 destroyfilesource(isc_entropyfilesource_t *source); 185 destroyusocketsource(isc_entropyusocketsource_t *source); 483 get_from_callback(isc_entropysource_t *source, unsigne argument 726 isc_entropysource_t *source; local 767 isc_entropysource_t *source; local 790 isc_entropysource_t *source; local 835 isc_entropysource_t *source; local 869 isc_entropysource_t *source; local 929 isc_entropysource_t *source; local 957 isc_entropysource_t *source; local 1027 isc_entropy_addsample(isc_entropysource_t *source, isc_uint32_t sample, isc_uint32_t extra) argument 1054 isc_entropy_addcallbacksample(isc_entropysource_t *source, isc_uint32_t sample, isc_uint32_t extra) argument 1159 kbdstart(isc_entropysource_t *source, void *arg, isc_boolean_t blocking) argument 1185 kbdstop(isc_entropysource_t *source, void *arg) argument 1196 kbdget(isc_entropysource_t *source, void *arg, isc_boolean_t blocking) argument 1230 isc_entropy_usebestsource(isc_entropy_t *ectx, isc_entropysource_t **source, const char *randomfile, int use_keyboard) argument [all...] |
H A D | base64.c | 34 str_totext(const char *source, isc_buffer_t *target); 44 isc_base64_totext(isc_region_t *source, int wordlength, argument 54 while (source->length > 2) { 55 buf[0] = base64[(source->base[0]>>2)&0x3f]; 56 buf[1] = base64[((source->base[0]<<4)&0x30)| 57 ((source->base[1]>>4)&0x0f)]; 58 buf[2] = base64[((source->base[1]<<2)&0x3c)| 59 ((source->base[2]>>6)&0x03)]; 60 buf[3] = base64[source->base[2]&0x3f]; 62 isc_region_consume(source, 218 str_totext(const char *source, isc_buffer_t *target) argument [all...] |
/bind-9.11.3/lib/isc/include/isc/ |
H A D | base32.h | 34 isc_base32_totext(isc_region_t *source, int wordlength, 37 isc_base32hex_totext(isc_region_t *source, int wordlength, 40 isc_base32hexnp_totext(isc_region_t *source, int wordlength, 52 *\li 'source' is a region containing binary data 59 * in source. The 'used' pointer in target will be advanced as 111 isc_base32_decoderegion(isc_region_t *source, isc_buffer_t *target); 113 isc_base32hex_decoderegion(isc_region_t *source, isc_buffer_t *target); 115 isc_base32hexnp_decoderegion(isc_region_t *source, isc_buffer_t *target); 121 *\li 'source' is a valid region. 127 *\li #ISC_R_BADBASE32 -- 'source' i [all...] |
H A D | string.h | 33 isc_string_touint64(char *source, char **endp, int base); 35 * Convert the string pointed to by 'source' to isc_uint64_t. 44 * On error 'endp' points to 'source'. 48 isc_string_copy(char *target, size_t size, const char *source); 50 * Copy the string pointed to by 'source' to 'target' which is a 56 * 'source' == NULL or points to a NUL terminated string. 67 * ISC_R_SUCCESS -- 'source' was successfully copied to 'target'. 68 * ISC_R_NOSPACE -- 'source' could not be copied since 'target' 73 isc_string_copy_truncate(char *target, size_t size, const char *source); 75 * Copy the string pointed to by 'source' t [all...] |
/bind-9.11.3/lib/isccc/ |
H A D | base64.c | 39 isccc_base64_encode(isccc_region_t *source, int wordlength, argument 46 sr.base = source->rstart; 47 sr.length = (unsigned int)(source->rend - source->rstart); 54 source->rstart = source->rend;
|
/bind-9.11.3/bin/tests/system/xfer/ns4/ |
H A D | named.conf.base | 12 query-source address 10.53.0.4; 13 notify-source 10.53.0.4; 14 transfer-source 10.53.0.4;
|
/bind-9.11.3/bin/tests/system/database/ns1/ |
H A D | named.conf1 | 23 query-source address 10.53.0.1; 24 notify-source 10.53.0.1; 25 transfer-source 10.53.0.1;
|
H A D | named.conf2 | 23 query-source address 10.53.0.1; 24 notify-source 10.53.0.1; 25 transfer-source 10.53.0.1;
|
/bind-9.11.3/bin/tests/system/tkey/ns1/ |
H A D | named.conf.in | 14 query-source address 10.53.0.1; 15 notify-source 10.53.0.1; 16 transfer-source 10.53.0.1;
|