Searched defs:value (Results 1 - 25 of 61) sorted by relevance

123

/bind-9.6-ESV-R11/lib/isc/win32/
H A Dresource.c38 isc_resource_setlimit(isc_resource_t resource, isc_resourcevalue_t value) { argument
46 if (value == ISC_RESOURCE_UNLIMITED)
49 rlim_value = min(value, WIN32_MAX_OPEN_FILES);
60 isc_resource_getlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument
65 *value = WIN32_MAX_OPEN_FILES;
70 isc_resource_getcurlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument
71 return (isc_resource_getlimit(resource, value));
H A Dthread.c76 isc_thread_key_setspecific(isc_thread_key_t key, void *value) { argument
77 return (TlsSetValue(key, value) ? 0 : GetLastError());
/bind-9.6-ESV-R11/lib/isc/tests/
H A Dsymtab_test.c33 undefine(char *key, unsigned int type, isc_symvalue_t value, void *arg) { argument
38 isc_mem_free(mctx, value.as_pointer);
52 isc_symvalue_t value; local
77 value.as_pointer = isc_mem_strdup(mctx, str);
78 ATF_REQUIRE(value.as_pointer != NULL);
79 result = isc_symtab_define(st, key, 1, value, policy);
82 undefine(key, 1, value, NULL);
94 value.as_pointer = isc_mem_strdup(mctx, str);
95 ATF_REQUIRE(value.as_pointer != NULL);
96 result = isc_symtab_define(st, key, 1, value, polic
[all...]
/bind-9.6-ESV-R11/lib/isc/unix/
H A Dresource.c105 isc_resource_setlimit(isc_resource_t resource, isc_resourcevalue_t value) { argument
116 if (value == ISC_RESOURCE_UNLIMITED)
137 if (value > rlim_max)
138 value = rlim_max;
140 rlim_value = value;
152 * maximum possible value is OPEN_MAX. BIND8 used to use
153 * sysconf(_SC_OPEN_MAX) for such a case, but this value is much
169 * possible value is the NR_OPEN defined in linux/fs.h.
200 isc_resource_getlimit(isc_resource_t resource, isc_resourcevalue_t *value) { argument
210 *value
217 isc_resource_getcurlimit(isc_resource_t resource, isc_resourcevalue_t *value) argument
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dexceptions.hpp49 not_found_error(const std::string& message, const T& value) throw();
59 const T& value)
62 m_value(value)
58 not_found_error(const std::string& message, const T& value) argument
H A Dtext.hpp100 //! \brief Converts a string to a boolean value.
143 T value; local
144 ss >> value; local
147 return value;
/bind-9.6-ESV-R11/bin/tests/
H A Dsym_test.c33 undefine_action(char *key, unsigned int type, isc_symvalue_t value, void *arg) argument
39 isc_mem_free(mctx, value.as_pointer);
47 isc_symvalue_t value; local
94 result = isc_symtab_lookup(st, key, 0, &value);
99 cp = value.as_pointer;
100 printf(", value == '%s'", cp);
107 value.as_pointer = isc_mem_strdup(mctx, cp);
108 result = isc_symtab_define(st, key, 1, value,
116 value, NULL);
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/tests/
H A Dsetenv.c104 mysetenv(const char *name, const char *value, int overwrite) { argument
112 buffer = (char *) malloc(strlen(name) + strlen(value) + 2);
117 strcat(buffer, value);
/bind-9.6-ESV-R11/lib/isccc/include/isccc/
H A Dsexpr.h59 } value; member in struct:isccc_sexpr
68 #define ISCCC_SEXPR_CAR(s) (s)->value.as_dottedpair.car
69 #define ISCCC_SEXPR_CDR(s) (s)->value.as_dottedpair.cdr
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dconfig.c45 const char *value; member in struct:var
98 PRE(var->value == NULL);
103 var->value = val;
105 var->value = var->default_value;
107 var->value = var->default_value;
109 POST(var->value != NULL);
139 const char *value; local
146 value = NULL;
147 for (var = vars; value == NULL && var->name != NULL; var++)
149 value
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dtest-program.hpp68 value(void) const function in struct:atf::atf_run::test_case_result
H A Drequirements.cpp161 return "Failed to get sysctl(hw.usermem64) value: " + std::string(e);
253 throw std::runtime_error("Invalid value '" + user + "' for property "
268 const std::string& value = (*iter).second; local
269 INV(!value.empty()); // Enforced by application/X-atf-tp parser.
272 failure_reason = check_arch(value);
274 failure_reason = check_config(value, config);
276 failure_reason = check_files(value);
278 failure_reason = check_machine(value);
280 failure_reason = check_memory(value);
282 failure_reason = check_progs(value);
[all...]
/bind-9.6-ESV-R11/contrib/dlz/drivers/
H A Dsdlz_helper.c498 char value[255]; local
517 value[i] = keystart[keylen + i];
518 if (value[i] == ' ' || value[i] == '\0') {
519 value[i] = '\0';
524 return isc_mem_strdup(mctx, value);
/bind-9.6-ESV-R11/lib/dns/
H A Dtime.c107 dns_time64_from32(isc_uint32_t value) { argument
120 if (isc_serial_gt(value, now))
121 t = start + (value - now);
123 t = start - (now - value);
129 dns_time32_totext(isc_uint32_t value, isc_buffer_t *target) { argument
130 return (dns_time64_totext(dns_time64_from32(value), target));
136 isc_int64_t value; local
140 #define RANGE(min, max, value) \
142 if (value < (min) || value > (ma
[all...]
H A Ddst_parse.c51 #define DST_AS_STR(t) ((t).value.as_textregion.base)
57 const int value; member in struct:parse_map
114 TAG_ALG(map[i].value) == alg)
115 return (map[i].value);
120 find_tag(const int value) { argument
126 else if (value == map[i].value)
370 token.value.as_ulong != (unsigned long) dst_key_alg(key))
477 /* XXXDCL return value should be checked for full filesystem */
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dlex.h138 isc_tokenvalue_t value; member in struct:isc_token
/bind-9.6-ESV-R11/lib/isc/
H A Dsymtab.c35 isc_symvalue_t value; member in struct:elt
114 elt->value,
171 isc_symvalue_t *value)
184 if (value != NULL)
185 *value = elt->value;
232 isc_symvalue_t value, isc_symexists_t exists_policy)
250 elt->value,
269 elt->value = value;
170 isc_symtab_lookup(isc_symtab_t *symtab, const char *key, unsigned int type, isc_symvalue_t *value) argument
231 isc_symtab_define(isc_symtab_t *symtab, const char *key, unsigned int type, isc_symvalue_t value, isc_symexists_t exists_policy) argument
[all...]
/bind-9.6-ESV-R11/lib/isccc/
H A Dalist.c47 #define CAR(s) (s)->value.as_dottedpair.car
48 #define CDR(s) (s)->value.as_dottedpair.cdr
83 if (strcmp(car->value.as_string, ALIST_TAG) != 0)
124 strcmp(caar->value.as_string, key) == 0)
147 strcmp(caar->value.as_string, key) == 0) {
159 isccc_alist_define(isccc_sexpr_t *alist, const char *key, isccc_sexpr_t *value) argument
171 kv = isccc_sexpr_cons(k, value);
186 CDR(kv) = value;
H A Dsymtab.c52 isccc_symvalue_t value; member in struct:elt
108 (symtab->undefine_action)(elt->key, elt->type, elt->value,
196 isccc_symvalue_t *value)
209 if (value != NULL)
210 *value = elt->value;
217 isccc_symvalue_t value, isccc_symexists_t exists_policy)
235 elt->value,
246 elt->value = value;
195 isccc_symtab_lookup(isccc_symtab_t *symtab, const char *key, unsigned int type, isccc_symvalue_t *value) argument
216 isccc_symtab_define(isccc_symtab_t *symtab, char *key, unsigned int type, isccc_symvalue_t value, isccc_symexists_t exists_policy) argument
[all...]
/bind-9.6-ESV-R11/bin/check/
H A Dnamed-checkconf.c117 const cfg_obj_t *value; local
135 value = cfg_listelt_value(element);
136 type = cfg_tuple_get(value, "type");
139 *obj = cfg_tuple_get(value, "mode");
/bind-9.6-ESV-R11/bin/win32/BINDInstall/
H A DVersionInfo.cpp267 CString CVersionInfo::QueryStringValue(CString value) argument
276 // This code page value is for American English. If you change the resources to be other than that
280 sprintf(queryString, "\\StringFileInfo\\%08X\\%s", codePage, value);
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/lib/
H A Dstrhash.c74 void *value; member in struct:strhash_entry
86 static strhash_entry_t *new_entry(const char *key, void *value);
131 (*proc)(bin->value);
141 idn__strhash_put(idn__strhash_t hash, const char *key, void *value) { argument
151 /* Entry exists. Replace the value. */
152 entry->value = value;
155 if ((entry = new_entry(key, value)) == NULL) {
188 *valuep = entry->value;
227 new_entry(const char *key, void *value) { argument
[all...]
/bind-9.6-ESV-R11/contrib/zkt/
H A Dlog.c220 ** lg_geterrcnt () -- returns the current value of the internal
230 ** returns the current value
232 long lg_seterrcnt (long value) argument
234 return lg_errcnt = value;
239 ** returns the current value
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dmap.c52 new_entry(const char *key, void *value, bool managed) argument
63 me->m_value = value;
182 const char *key, *value; local
188 if ((value = *ptr) == NULL) {
189 err = atf_libc_error(EINVAL, "List too short; no value for "
195 err = atf_map_insert(m, key, strdup(value), true);
351 atf_map_insert(atf_map_t *m, const char *key, void *value, bool managed) argument
359 me = new_entry(key, value, managed);
366 free(value);
376 me->m_value = value;
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dmacros_test.cpp136 const std::string element = get_config_var("value");
170 const std::string element = get_config_var("value");
352 std::cout << "Checking with a " << t->cond << " value\n";
430 const char *value; member in struct:test
445 for (t = &tests[0]; t->value != NULL; t++) {
447 config["value"] = t->value;
522 const char *value; member in struct:test
537 for (t = &tests[0]; t->value != NULL; t++) {
539 config["value"]
[all...]

Completed in 342 milliseconds

123