/bind-9.11.3/lib/isc/include/isc/ |
H A D | resource.h | 24 isc_resource_setlimit(isc_resource_t resource, isc_resourcevalue_t value); 29 *\li If 'value' exceeds the maximum possible on the operating system, 45 isc_resource_getlimit(isc_resource_t resource, isc_resourcevalue_t *value); 50 *\li 'value' is set to the maximum limit. 52 *\li #ISC_RESOURCE_UNLIMITED is the maximum value of isc_resourcevalue_t. 54 *\li On many (all?) Unix systems, RLIM_INFINITY is a valid value that is 58 *\li The current ISC libdns configuration file parser assigns a value 76 isc_resource_getcurlimit(isc_resource_t resource, isc_resourcevalue_t *value);
|
H A D | symtab.h | 22 * be specified when looking up, defining, or undefining. A type value of 23 * 0 means "match any type"; any other value will only match the given 26 * It's possible that a client will attempt to define a <key, type, value> 31 *\li #isc_symexists_replace Replace the old value with the new. The 33 * with the old <key, type, value> tuple. 54 * value, the hash table is reallocated with size doubled, in order to 85 /*% Symbol table value. */ 94 isc_symvalue_t value, void *userarg); 98 isc_symexists_replace = 1, /*%< Replace the old value with the new */ 117 isc_symvalue_t *value); [all...] |
/bind-9.11.3/lib/isc/win32/ |
H A D | resource.c | 29 isc_resource_setlimit(isc_resource_t resource, isc_resourcevalue_t value) { argument 37 if (value == ISC_RESOURCE_UNLIMITED) 40 rlim_value = min(value, WIN32_MAX_OPEN_FILES); 51 isc_resource_getlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument 56 *value = WIN32_MAX_OPEN_FILES; 61 isc_resource_getcurlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument 62 return (isc_resource_getlimit(resource, value));
|
/bind-9.11.3/lib/dns/include/dns/ |
H A D | time.h | 46 dns_time64_totext(isc_int64_t value, isc_buffer_t *target); 53 dns_time32_totext(isc_uint32_t value, isc_buffer_t *target); 55 * Like dns_time64_totext, but for a 32-bit cyclic time value. 57 * are congruent with 'value' modulo 2^32, the one closest to the 62 dns_time64_from32(isc_uint32_t value); 64 * Covert a 32-bit cyclic time value into a 64 bit time stamp.
|
/bind-9.11.3/lib/isc/tests/ |
H A D | symtab_test.c | 25 undefine(char *key, unsigned int type, isc_symvalue_t value, void *arg) { argument 30 isc_mem_free(mctx, value.as_pointer); 44 isc_symvalue_t value; local 69 value.as_pointer = isc_mem_strdup(mctx, str); 70 ATF_REQUIRE(value.as_pointer != NULL); 71 result = isc_symtab_define(st, key, 1, value, policy); 74 undefine(key, 1, value, NULL); 86 value.as_pointer = isc_mem_strdup(mctx, str); 87 ATF_REQUIRE(value.as_pointer != NULL); 88 result = isc_symtab_define(st, key, 1, value, polic [all...] |
H A D | queue_test.c | 26 int value; member in struct:item 33 item_init(item_t *item, int value) { argument 34 item->value = value; 79 ATF_CHECK_EQ(p->value, 1); 108 ATF_CHECK_EQ(p->value, 1); 112 ATF_CHECK_EQ(p->value, 2); 116 ATF_CHECK_EQ(p->value, 4); 120 ATF_CHECK_EQ(p->value, 5);
|
H A D | heap_test.c | 24 unsigned int value; member in struct:e 33 return (ISC_TF(e1->value < e2->value));
|
/bind-9.11.3/bin/tests/system/ |
H A D | digcomp.pl | 41 $value = $4; 44 $value = lc($value); 53 if ($entry{"$name ; $class.$type ; $value"} ne "") { 54 $line = $entry{"$name ; $class.$type ; $value"}; 57 $entry{"$name ; $class.$type ; $value"} = $_; 77 $value = $4; 80 $value = lc($value); 86 if ($entry{"$name ; $class.$type ; $value"} n [all...] |
/bind-9.11.3/lib/dns/rdata/generic/ |
H A D | caa_257.h | 20 unsigned char *value; member in struct:dns_rdata_caa
|
/bind-9.11.3/lib/dns/ |
H A D | time.c | 98 dns_time64_from32(isc_uint32_t value) { argument 111 if (isc_serial_gt(value, now)) 112 t = start + (value - now); 114 t = start - (now - value); 120 dns_time32_totext(isc_uint32_t value, isc_buffer_t *target) { argument 121 return (dns_time64_totext(dns_time64_from32(value), target)); 127 isc_int64_t value; local 131 #define RANGE(min, max, value) \ 133 if (value < (min) || value > (ma [all...] |
H A D | rcode.c | 167 unsigned int value; member in struct:tbl 182 unsigned int value; member in struct:keyflag 286 *valuep = table[i].value; 294 dns_mnemonic_totext(unsigned int value, isc_buffer_t *target, argument 300 if (table[i].value == value) { 305 snprintf(buf, sizeof(buf), "%u", value); 311 unsigned int value; local 312 RETERR(dns_mnemonic_fromtext(&value, source, rcodes, 0xffff)); 313 *rcodep = value; 324 unsigned int value; local 337 unsigned int value; local 350 unsigned int value; local 378 unsigned int value; local 391 unsigned int value; local 402 unsigned int value, mask; local 446 unsigned int value; local [all...] |
/bind-9.11.3/lib/isccc/include/isccc/ |
H A D | symtab.h | 37 * defining, or undefining. A type value of 0 means "match any type"; 38 * any other value will only match the given type. 41 * value> tuple when a tuple with the given key and type already 46 *\li isccc_symexists_replace Replace the old value with the new. The 48 * with the old <key, type, value> tuple. 86 isccc_symvalue_t value, void *userarg); 90 isccc_symvalue_t value, 111 isccc_symvalue_t *value); 115 isccc_symvalue_t value, isccc_symexists_t exists_policy);
|
H A D | sexpr.h | 50 } value; member in struct:isccc_sexpr 59 #define ISCCC_SEXPR_CAR(s) (s)->value.as_dottedpair.car 60 #define ISCCC_SEXPR_CDR(s) (s)->value.as_dottedpair.cdr
|
/bind-9.11.3/contrib/idn/idnkit-1.0-src/include/idn/ |
H A D | strhash.h | 66 * Hash value free proc. 68 typedef void (*idn__strhash_freeproc_t)(void *value); 82 * If 'proc' is not NULL, it is called for each value in the 97 idn__strhash_put(idn__strhash_t hash, const char *key, void *value);
|
/bind-9.11.3/lib/isccc/ |
H A D | sexpr.c | 38 #define CAR(s) (s)->value.as_dottedpair.car 39 #define CDR(s) (s)->value.as_dottedpair.cdr 68 sexpr->value.as_string = strdup(str); 69 if (sexpr->value.as_string == NULL) { 94 sexpr->value.as_region.rstart = malloc(region_size + 1); 95 if (sexpr->value.as_region.rstart == NULL) { 99 sexpr->value.as_region.rend = sexpr->value.as_region.rstart + 101 memmove(sexpr->value.as_region.rstart, region->rstart, region_size); 105 sexpr->value [all...] |
/bind-9.11.3/unit/atf-src/tools/ |
H A D | exceptions.hpp | 45 not_found_error(const std::string& message, const T& value) throw(); 55 const T& value) 58 m_value(value) 54 not_found_error(const std::string& message, const T& value) argument
|
/bind-9.11.3/bin/tests/ |
H A D | sym_test.c | 25 undefine_action(char *key, unsigned int type, isc_symvalue_t value, void *arg) argument 31 isc_mem_free(mctx, value.as_pointer); 39 isc_symvalue_t value; local 86 result = isc_symtab_lookup(st, key, 0, &value); 91 cp = value.as_pointer; 92 printf(", value == '%s'", cp); 99 value.as_pointer = isc_mem_strdup(mctx, cp); 100 result = isc_symtab_define(st, key, 1, value, 108 value, NULL);
|
H A D | lex_test.c | 33 (int)tokenp->value.as_region.length, 34 tokenp->value.as_region.base); 37 fprintf(stream, "NUMBER %lu", tokenp->value.as_ulong); 41 (int)tokenp->value.as_region.length, 42 tokenp->value.as_region.base); 54 fprintf(stream, "SPECIAL %c", tokenp->value.as_char);
|
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/tests/ |
H A D | setenv.h | 59 int mysetenv(const char *name, const char *value, int overwrite);
|
/bind-9.11.3/lib/isc/unix/ |
H A D | resource.c | 96 isc_resource_setlimit(isc_resource_t resource, isc_resourcevalue_t value) { argument 107 if (value == ISC_RESOURCE_UNLIMITED) 128 if (value > rlim_max) 129 value = rlim_max; 131 rlim_value = value; 143 * maximum possible value is OPEN_MAX. BIND8 used to use 144 * sysconf(_SC_OPEN_MAX) for such a case, but this value is much 160 * possible value is the NR_OPEN defined in linux/fs.h. 191 isc_resource_getlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument 201 *value 208 isc_resource_getcurlimit(isc_resource_t resource, isc_resourcevalue_t *value) argument [all...] |
/bind-9.11.3/bin/tools/ |
H A D | named-rrchecker.c | 186 rdclass = (dns_rdataclass_t) token.value.as_ulong; 187 if (token.value.as_ulong > 0xffffu) { 188 fatal("class value too big %lu", 189 token.value.as_ulong); 192 fatal("class %lu is a meta value", 193 token.value.as_ulong); 197 &token.value.as_textregion); 203 fatal("class %.*s(%d) is a meta value", 204 (int)token.value.as_textregion.length, 205 token.value [all...] |
/bind-9.11.3/unit/atf-src/atf-sh/ |
H A D | atf-check.cpp | 71 int value; member in struct:__anon328::status_check 77 value(p_value) 94 std::string value; member in struct:__anon328::output_check 100 value(p_value) 169 const int value = atf::text::to_type< int >(str); local 170 if (value < 0 || value > 255) 172 return value; 237 int value; local 246 value [all...] |
/bind-9.11.3/contrib/queryperf/utils/ |
H A D | gen-data-queryperf.py | 68 for option, value in optlist: 73 num = int(value) 75 maxsize = int(value) 77 percent_random = float(value) 79 tld = str(value) 81 zone_file = str(value)
|
/bind-9.11.3/lib/dns/tests/ |
H A D | rdatasetstats_test.c | 58 checkit1(dns_rdatastatstype_t which, isc_uint64_t value, void *arg) { argument 76 type, (unsigned)value); 79 ATF_REQUIRE_EQ(value, 1); 81 ATF_REQUIRE_EQ(value, 0); 85 checkit2(dns_rdatastatstype_t which, isc_uint64_t value, void *arg) { argument 103 type, (unsigned)value); 106 ATF_REQUIRE_EQ(value, 0); 108 ATF_REQUIRE_EQ(value, 1);
|
/bind-9.11.3/unit/atf-src/atf-c++/detail/ |
H A D | text.hpp | 96 //! \brief Converts a string to a boolean value. 139 T value; local 140 ss >> value; local 143 return value;
|