Home
last modified time | relevance | path

Searched refs:properties_sp (Results 1 – 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
HDUserSettingsController.cpp37 OptionValuePropertiesSP properties_sp(GetValueProperties()); in GetPropertyValue() local
38 if (properties_sp) in GetPropertyValue()
39 return properties_sp->GetSubValue(exe_ctx, path, will_modify, error); in GetPropertyValue()
47 OptionValuePropertiesSP properties_sp(GetValueProperties()); in SetPropertyValue() local
48 if (properties_sp) in SetPropertyValue()
49 return properties_sp->SetSubValue(exe_ctx, op, path, value); in SetPropertyValue()
57 OptionValuePropertiesSP properties_sp(GetValueProperties()); in DumpAllPropertyValues() local
58 if (properties_sp) in DumpAllPropertyValues()
59 return properties_sp->DumpValue(exe_ctx, strm, dump_mask); in DumpAllPropertyValues()
66 OptionValuePropertiesSP properties_sp(GetValueProperties()); in DumpAllDescriptions() local
[all …]
HDPluginManager.cpp2433 lldb::OptionValuePropertiesSP properties_sp; in GetSettingForPlugin() local
2439 properties_sp = in GetSettingForPlugin()
2441 return properties_sp; in GetSettingForPlugin()
2447 const lldb::OptionValuePropertiesSP &properties_sp, in CreateSettingForPlugin() argument
2451 if (properties_sp) { in CreateSettingForPlugin()
2456 plugin_type_properties_sp->AppendProperty(properties_sp->GetName(), in CreateSettingForPlugin()
2458 properties_sp); in CreateSettingForPlugin()
2481 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp, in CreateSettingForDynamicLoaderPlugin() argument
2485 ConstString("Settings for dynamic loader plug-ins"), properties_sp, in CreateSettingForDynamicLoaderPlugin()
2498 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp, in CreateSettingForPlatformPlugin() argument
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDPluginManager.h431 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
438 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
445 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
452 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
459 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
467 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
475 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
HDCommandCompletions.cpp293 lldb::OptionValuePropertiesSP properties_sp( in SettingsNames() local
295 if (properties_sp) { in SettingsNames()
297 properties_sp->DumpValue(nullptr, strm, OptionValue::eDumpOptionName); in SettingsNames()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
HDTarget.cpp2276 TargetPropertiesSP properties_sp(Target::GetGlobalProperties()); in GetDefaultExecutableSearchPaths() local
2277 if (properties_sp) in GetDefaultExecutableSearchPaths()
2278 return properties_sp->GetExecutableSearchPaths(); in GetDefaultExecutableSearchPaths()
2283 TargetPropertiesSP properties_sp(Target::GetGlobalProperties()); in GetDefaultDebugFileSearchPaths() local
2284 if (properties_sp) in GetDefaultDebugFileSearchPaths()
2285 return properties_sp->GetDebugFileSearchPaths(); in GetDefaultDebugFileSearchPaths()
2290 TargetPropertiesSP properties_sp(Target::GetGlobalProperties()); in GetDefaultArchitecture() local
2291 if (properties_sp) in GetDefaultArchitecture()
2292 return properties_sp->GetDefaultArchitecture(); in GetDefaultArchitecture()
2297 TargetPropertiesSP properties_sp(Target::GetGlobalProperties()); in SetDefaultArchitecture() local
[all …]