Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/
H A Dconfig.c901 const char *tmp_value; in svn_config_get_bool() local
924 const char *tmp_value; in svn_config_get_int64() local
926 if (tmp_value) in svn_config_get_int64()
949 const char *tmp_value; in svn_config_get_yes_no_ask() local
953 if (! tmp_value) in svn_config_get_yes_no_ask()
956 if (tmp_value && (0 == svn_cstring_casecmp(tmp_value, SVN_CONFIG_ASK))) in svn_config_get_yes_no_ask()
979 const char *tmp_value; in svn_config_get_tristate() local
983 if (! tmp_value) in svn_config_get_tristate()
1290 const char* tmp_value; in svn_config_get_server_setting_int() local
1295 if (tmp_value == NULL) in svn_config_get_server_setting_int()
[all …]
H A Dconfig_impl.h66 svn_stringbuf_t *tmp_value; member
H A Dhash.c602 const char *tmp_value = svn_hash__get_cstring(hash, key, NULL); in svn_hash__get_bool() local
603 svn_tristate_t value = svn_tristate__from_word(tmp_value); in svn_hash__get_bool()
H A Dconfig_file.c692 cfg->tmp_value = svn_stringbuf_create_empty(pool); in svn_config__shallow_copy()
/freebsd-13.1/sys/dev/isci/scil/
H A Dsci_pool.h178 type tmp_value; \
184 sci_pool_get((this_pool), tmp_value); \
185 if (tmp_value != (the_value)) \
186 sci_pool_put((this_pool), tmp_value); \
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp81 bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success); in SetOptionValue() local
83 ignore_breakpoints = tmp_value; in SetOptionValue()
93 bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success); in SetOptionValue() local
95 allow_jit = tmp_value; in SetOptionValue()
113 bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success); in SetOptionValue() local
115 unwind_on_error = tmp_value; in SetOptionValue()
149 bool tmp_value = OptionArgParser::ToBoolean(option_arg, true, &success); in SetOptionValue() local
151 auto_apply_fixits = tmp_value ? eLazyBoolYes : eLazyBoolNo; in SetOptionValue()
H A DCommandObjectProcess.cpp1466 bool tmp_value = OptionArgParser::ToBoolean(option, false, &success); in VerifyCommandOptionValue() local
1468 if (success && tmp_value) in VerifyCommandOptionValue()
1470 else if (success && !tmp_value) in VerifyCommandOptionValue()
H A DCommandObjectThread.cpp1355 bool tmp_value = in SetOptionValue() local
1358 m_from_expression = tmp_value; in SetOptionValue()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp337 Value tmp_value(m_value); in ResolveValue() local
338 scalar = tmp_value.ResolveValue(&exe_ctx); in ResolveValue()