Home
last modified time | relevance | path

Searched refs:tmp_value (Results 1 – 9 of 9) sorted by relevance

/freebsd-10-stable/contrib/subversion/subversion/libsvn_subr/
Dconfig.c95 cfg->tmp_value = svn_stringbuf_create_empty(result_pool); in svn_config_create2()
725 svn_stringbuf_set(cfg->tmp_value, x_default); in svn_config_get()
726 *valuep = cfg->tmp_value->data; in svn_config_get()
823 const char *tmp_value; in svn_config_get_bool() local
824 svn_config_get(cfg, &tmp_value, section, option, NULL); in svn_config_get_bool()
825 return get_bool(valuep, tmp_value, default_value, section, option); in svn_config_get_bool()
846 const char *tmp_value; in svn_config_get_int64() local
847 svn_config_get(cfg, &tmp_value, section, option, NULL); in svn_config_get_int64()
848 if (tmp_value) in svn_config_get_int64()
849 return svn_cstring_strtoi64(valuep, tmp_value, in svn_config_get_int64()
[all …]
Dconfig_impl.h66 svn_stringbuf_t *tmp_value; member
Dhash.c585 const char *tmp_value = svn_hash__get_cstring(hash, key, NULL); in svn_hash__get_bool() local
586 svn_tristate_t value = svn_tristate__from_word(tmp_value); in svn_hash__get_bool()
Dconfig_file.c513 cfg->tmp_value = svn_stringbuf_create_empty(pool); in svn_config__shallow_copy()
/freebsd-10-stable/sys/dev/isci/scil/
Dsci_pool.h176 type tmp_value; \
182 sci_pool_get((this_pool), tmp_value); \
183 if (tmp_value != (the_value)) \
184 sci_pool_put((this_pool), tmp_value); \
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Commands/
DCommandObjectExpression.cpp110 bool tmp_value = Args::StringToBoolean(option_arg, true, &success); in SetOptionValue() local
112 ignore_breakpoints = tmp_value; in SetOptionValue()
132 bool tmp_value = Args::StringToBoolean(option_arg, true, &success); in SetOptionValue() local
134 unwind_on_error = tmp_value; in SetOptionValue()
DCommandObjectProcess.cpp1636 bool tmp_value = Args::StringToBoolean (option.c_str(), false, &success); in VerifyCommandOptionValue() local
1638 if (success && tmp_value) in VerifyCommandOptionValue()
1640 else if (success && !tmp_value) in VerifyCommandOptionValue()
DCommandObjectThread.cpp1343 bool tmp_value = Args::StringToBoolean (option_arg, false, &success); in SetOptionValue() local
1345 m_from_expression = tmp_value; in SetOptionValue()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
DValueObject.cpp463 Value tmp_value(m_value); in ResolveValue() local
464 scalar = tmp_value.ResolveValue(&exe_ctx); in ResolveValue()