Home
last modified time | relevance | path

Searched refs:options_dict (Results 1 – 12 of 12) sorted by relevance

/freebsd-14-stable/contrib/llvm-project/lldb/source/Breakpoint/
HDBreakpointOptions.cpp61 const StructuredData::Dictionary &options_dict, Status &error) { in CreateFromStructuredData() argument
64 bool success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
69 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
86 success = options_dict.GetValueForKeyAsArray(GetKey(OptionNames::UserSource), in CreateFromStructuredData()
219 Target &target, const StructuredData::Dictionary &options_dict, in CreateFromStructuredData() argument
230 if (key && options_dict.HasKey(key)) { in CreateFromStructuredData()
231 success = options_dict.GetValueForKeyAsBoolean(key, enabled); in CreateFromStructuredData()
240 if (key && options_dict.HasKey(key)) { in CreateFromStructuredData()
241 success = options_dict.GetValueForKeyAsBoolean(key, one_shot); in CreateFromStructuredData()
250 if (key && options_dict.HasKey(key)) { in CreateFromStructuredData()
[all …]
HDBreakpointResolverFileLine.cpp34 const StructuredData::Dictionary &options_dict, Status &error) { in CreateFromStructuredData() argument
45 success = options_dict.GetValueForKeyAsString(GetKey(OptionNames::FileName), in CreateFromStructuredData()
52 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
60 options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Column), column); in CreateFromStructuredData()
66 success = options_dict.GetValueForKeyAsBoolean(GetKey(OptionNames::Inlines), in CreateFromStructuredData()
73 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
80 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
HDBreakpointResolverFileRegex.cpp30 const StructuredData::Dictionary &options_dict, Status &error) { in CreateFromStructuredData() argument
34 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
43 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
53 success = options_dict.GetValueForKeyAsArray( in CreateFromStructuredData()
HDBreakpointResolverAddress.cpp34 const StructuredData::Dictionary &options_dict, Status &error) { in CreateFromStructuredData() argument
40 success = options_dict.GetValueForKeyAsInteger( in CreateFromStructuredData()
48 success = options_dict.HasKey(GetKey(OptionNames::ModuleName)); in CreateFromStructuredData()
50 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
HDBreakpointResolverName.cpp90 const StructuredData::Dictionary &options_dict, Status &error) { in CreateFromStructuredData() argument
93 bool success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
106 options_dict.GetValueForKeyAsInteger(GetKey(OptionNames::Offset), offset); in CreateFromStructuredData()
113 success = options_dict.GetValueForKeyAsBoolean( in CreateFromStructuredData()
121 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
129 success = options_dict.GetValueForKeyAsArray( in CreateFromStructuredData()
136 success = options_dict.GetValueForKeyAsArray( in CreateFromStructuredData()
HDBreakpointResolverScripted.cpp62 const StructuredData::Dictionary &options_dict, Status &error) { in CreateFromStructuredData() argument
66 success = options_dict.GetValueForKeyAsString( in CreateFromStructuredData()
78 if (options_dict.GetValueForKeyAsDictionary(GetKey(OptionNames::ScriptArgs), in CreateFromStructuredData()
HDBreakpoint.cpp173 StructuredData::Dictionary *options_dict; in CreateFromStructuredData() local
176 BreakpointOptions::GetSerializationKey(), options_dict); in CreateFromStructuredData()
179 target, *options_dict, create_error); in CreateFromStructuredData()
/freebsd-14-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
HDBreakpointResolverFileRegex.h31 CreateFromStructuredData(const StructuredData::Dictionary &options_dict,
HDBreakpointResolverScripted.h34 CreateFromStructuredData(const StructuredData::Dictionary &options_dict,
HDBreakpointResolverAddress.h34 CreateFromStructuredData(const StructuredData::Dictionary &options_dict,
HDBreakpointOptions.h58 CreateFromStructuredData(const StructuredData::Dictionary &options_dict,
/freebsd-14-stable/contrib/llvm-project/lldb/source/Commands/
HDCommandObjectCommands.cpp1713 StructuredData::Dictionary *options_dict in CommandObjectScriptingObjectParsed() local
1716 if (options_dict) { in CommandObjectScriptingObjectParsed()
1717 m_options_error = m_options.SetOptionsFromArray(*(options_dict)); in CommandObjectScriptingObjectParsed()