Lines Matching +refs:val +refs:value

469 putuint8(isc_buffer_t **b, isc_uint8_t val);
543 * No value available. *aclp == NULL.
566 * nest_level value of 2.
637 * No value available. *rbtp == NULL.
1092 isc_boolean_t value;
1107 value = cfg_obj_asboolean(cfg_tuple_get(obj, "value"));
1108 CHECK(dns_resolver_setmustbesecure(resolver, name, value));
1594 const cfg_obj_t *value;
1605 value = cfg_listelt_value(element);
1606 str = cfg_obj_asstring(value);
3362 isc_resourcevalue_t value;
3363 value = cfg_obj_asuint64(obj);
3364 if (value > SIZE_MAX) {
3371 value, (unsigned long)SIZE_MAX);
3372 value = SIZE_MAX;
3374 max_acache_size = (size_t) value;
3515 isc_resourcevalue_t value;
3516 value = cfg_obj_asuint64(obj);
3517 if (value > SIZE_MAX) {
3524 value, (unsigned long)SIZE_MAX);
3525 value = SIZE_MAX;
3527 max_cache_size = (size_t) value;
4970 isc_uint32_t val = cfg_obj_asuint32(portobj);
4971 if (val > ISC_UINT16_MAX) {
4973 "port '%u' out of range", val);
4976 port = (in_port_t) val;
5008 isc_uint32_t val = cfg_obj_asuint32(portobj);
5009 if (val > ISC_UINT16_MAX) {
5013 val);
5016 myport = (in_port_t) val;
5061 isc_uint32_t val = cfg_obj_asuint32(portobj);
5062 if (val > ISC_UINT16_MAX) {
5064 "port '%u' out of range", val);
5067 port = (in_port_t) val;
5072 * DSCP value for forwarded requests.
5080 "dscp value '%u' is out of range",
6220 * Replace the current value of '*field', a dynamically allocated
6222 * null-terminated string pointed to by 'value', or NULL.
6225 setstring(ns_server_t *server, char **field, const char *value) {
6228 if (value != NULL) {
6229 copy = isc_mem_strdup(server->mctx, value);
6244 * Replace the current value of '*field', a dynamically allocated
6246 * or NULL if whether 'obj' is a string or void value, respectively.
6263 isc_resourcevalue_t value;
6272 value = ISC_RESOURCE_UNLIMITED;
6275 value = defaultvalue;
6278 value = cfg_obj_asuint64(obj);
6280 result = isc_resource_setlimit(resourceid, value);
6285 description, value, isc_result_totext(result));
8213 * Set the default value of the query logging flag depending
9256 * NOTE: the token value for string tokens always uses the same pointer
9257 * value. Multiple calls to this function on the same lexer will always
9258 * return either that value (lex->data) or NULL. It is necessary to copy
9295 return (token.value.as_textregion.base);
9594 isc_boolean_t value;
9604 value = server->log_queries ? ISC_FALSE : ISC_TRUE;
9607 value = ISC_TRUE;
9610 value = ISC_FALSE;
9615 if (server->log_queries == value)
9618 server->log_queries = value;
9690 "port value '%u' is out of range",
9703 "dscp value '%u' is out of range",
11294 DE_CONST(&zl->value.list, list);
11966 DE_CONST(&zl->value.list, list);
13178 putuint8(isc_buffer_t **b, isc_uint8_t val) {
13185 isc_buffer_putuint8(*b, val);