Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBStructuredData.cpp129 StructuredData::ObjectSP obj_sp = m_impl_up->GetObjectSP(); in GetKeys() local
130 if (!obj_sp) in GetKeys()
133 StructuredData::Dictionary *dict = obj_sp->GetAsDictionary(); in GetKeys()
H A DSBLaunchInfo.cpp363 StructuredData::ObjectSP obj_sp = dict.m_impl_up->GetObjectSP(); in SetScriptedProcessDictionary() local
365 if (!obj_sp) in SetScriptedProcessDictionary()
369 std::make_shared<StructuredData::Dictionary>(obj_sp); in SetScriptedProcessDictionary()
H A DSBThread.cpp920 StructuredData::ObjectSP obj_sp = args_data.m_impl_up->GetObjectSP(); in StepUsingScriptedThreadPlan() local
923 false, script_class_name, obj_sp, false, new_plan_status); in StepUsingScriptedThreadPlan()
H A DSBTarget.cpp1046 StructuredData::ObjectSP obj_sp = extra_args.m_impl_up->GetObjectSP(); in BreakpointCreateFromScript() local
1053 obj_sp, in BreakpointCreateFromScript()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DStructuredData.h372 Dictionary(ObjectSP obj_sp) : Object(lldb::eStructuredDataTypeDictionary) { in Dictionary() argument
373 if (!obj_sp || obj_sp->GetType() != lldb::eStructuredDataTypeDictionary) { in Dictionary()
378 Dictionary *dict = obj_sp->GetAsDictionary(); in Dictionary()