Home
last modified time | relevance | path

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

/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.cpp327 StructuredData::ObjectSP obj_sp = dict.m_impl_up->GetObjectSP(); in SetScriptedProcessDictionary() local
329 if (!obj_sp) in SetScriptedProcessDictionary()
333 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.cpp1048 StructuredData::ObjectSP obj_sp = extra_args.m_impl_up->GetObjectSP(); in BreakpointCreateFromScript() local
1055 obj_sp, in BreakpointCreateFromScript()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStructuredData.h388 Dictionary(ObjectSP obj_sp) : Object(lldb::eStructuredDataTypeDictionary) { in Dictionary() argument
389 if (!obj_sp || obj_sp->GetType() != lldb::eStructuredDataTypeDictionary) { in Dictionary()
394 Dictionary *dict = obj_sp->GetAsDictionary(); in Dictionary()