Home
last modified time | relevance | path

Searched refs:obj_sp (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectCommands.cpp1286 static Status ParseUsageMaskFromArray(StructuredData::ObjectSP obj_sp, in ParseUsageMaskFromArray() argument
1295 if (!obj_sp) { in ParseUsageMaskFromArray()
1303 obj_sp->GetAsUnsignedInteger(); in ParseUsageMaskFromArray()
1316 StructuredData::Array *array_val = obj_sp->GetAsArray(); in ParseUsageMaskFromArray()
1415 StructuredData::ObjectSP obj_sp = opt_dict->GetValueForKey("groups"); in SetOptionsFromArray() local
1416 if (obj_sp) { in SetOptionsFromArray()
1417 error = ParseUsageMaskFromArray(obj_sp, counter, in SetOptionsFromArray()
1425 obj_sp = opt_dict->GetValueForKey("required"); in SetOptionsFromArray()
1426 if (obj_sp) { in SetOptionsFromArray()
1427 StructuredData::Boolean *boolean_val = obj_sp->GetAsBoolean(); in SetOptionsFromArray()
[all …]
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBStructuredData.cpp153 StructuredData::ObjectSP obj_sp = m_impl_up->GetObjectSP(); in GetKeys() local
154 if (!obj_sp) in GetKeys()
157 StructuredData::Dictionary *dict = obj_sp->GetAsDictionary(); in GetKeys()
H A DSBAttachInfo.cpp321 StructuredData::ObjectSP obj_sp = dict.m_impl_up->GetObjectSP(); in SetScriptedProcessDictionary() local
323 if (!obj_sp) in SetScriptedProcessDictionary()
327 std::make_shared<StructuredData::Dictionary>(obj_sp); in SetScriptedProcessDictionary()
H A DSBLaunchInfo.cpp377 StructuredData::ObjectSP obj_sp = dict.m_impl_up->GetObjectSP(); in SetScriptedProcessDictionary() local
379 if (!obj_sp) in SetScriptedProcessDictionary()
383 std::make_shared<StructuredData::Dictionary>(obj_sp); in SetScriptedProcessDictionary()
H A DSBThread.cpp916 StructuredData::ObjectSP obj_sp = args_data.m_impl_up->GetObjectSP(); in StepUsingScriptedThreadPlan() local
919 false, script_class_name, obj_sp, false, new_plan_status); in StepUsingScriptedThreadPlan()
H A DSBTarget.cpp1055 StructuredData::ObjectSP obj_sp = extra_args.m_impl_up->GetObjectSP(); in BreakpointCreateFromScript() local
1062 obj_sp, in BreakpointCreateFromScript()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStructuredData.h388 Dictionary(ObjectSP obj_sp) : Object(lldb::eStructuredDataTypeDictionary) {
389 if (!obj_sp || obj_sp->GetType() != lldb::eStructuredDataTypeDictionary) {
394 Dictionary *dict = obj_sp->GetAsDictionary();
431 Dictionary(ObjectSP obj_sp) Dictionary() argument