Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolver.cpp75 BreakpointResolverSP result_sp; in CreateFromStructuredData() local
79 return result_sp; in CreateFromStructuredData()
90 return result_sp; in CreateFromStructuredData()
97 return result_sp; in CreateFromStructuredData()
106 return result_sp; in CreateFromStructuredData()
115 return result_sp; in CreateFromStructuredData()
120 result_sp = BreakpointResolverFileLine::CreateFromStructuredData( in CreateFromStructuredData()
124 result_sp = BreakpointResolverAddress::CreateFromStructuredData( in CreateFromStructuredData()
128 result_sp = BreakpointResolverName::CreateFromStructuredData( in CreateFromStructuredData()
132 result_sp = BreakpointResolverFileRegex::CreateFromStructuredData( in CreateFromStructuredData()
[all …]
H A DBreakpoint.cpp126 BreakpointSP result_sp; in CreateFromStructuredData() local
128 return result_sp; in CreateFromStructuredData()
135 return result_sp; in CreateFromStructuredData()
144 return result_sp; in CreateFromStructuredData()
154 return result_sp; in CreateFromStructuredData()
171 return result_sp; in CreateFromStructuredData()
187 return result_sp; in CreateFromStructuredData()
195 result_sp = in CreateFromStructuredData()
198 if (result_sp && options_up) { in CreateFromStructuredData()
199 result_sp->m_options = *options_up; in CreateFromStructuredData()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DSearchFilter.cpp81 SearchFilterSP result_sp; in CreateFromStructuredData() local
85 return result_sp; in CreateFromStructuredData()
94 return result_sp; in CreateFromStructuredData()
101 return result_sp; in CreateFromStructuredData()
110 return result_sp; in CreateFromStructuredData()
115 result_sp = SearchFilterForUnconstrainedSearches::CreateFromStructuredData( in CreateFromStructuredData()
119 result_sp = SearchFilterByModule::CreateFromStructuredData( in CreateFromStructuredData()
123 result_sp = SearchFilterByModuleList::CreateFromStructuredData( in CreateFromStructuredData()
127 result_sp = SearchFilterByModuleListAndCU::CreateFromStructuredData( in CreateFromStructuredData()
138 return result_sp; in CreateFromStructuredData()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp925 ValueObjectSP result_sp; in EvaluateExpression() local
927 process.GetTarget().EvaluateExpression(expression, &frame, result_sp); in EvaluateExpression()
928 if (!result_sp) in EvaluateExpression()
933 return result_sp->GetError().ToError(); in EvaluateExpression()
935 result_sp = result_sp->GetQualifiedRepresentationIfAvailable( in EvaluateExpression()
936 result_sp->GetDynamicValueType(), /*synthValue=*/true); in EvaluateExpression()
937 if (!result_sp) in EvaluateExpression()
940 return result_sp; in EvaluateExpression()
1093 ValueObjectSP result_sp = *result_or_err; in DoExecute() local
1095 if (auto err = CopyExpressionResult(*result_sp, buffer, in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DLanguageRuntime.cpp94 StructuredData::ObjectSP result_sp; in SerializeToStructuredData() local
96 return result_sp; in SerializeToStructuredData()
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObject.cpp2747 ValueObjectSP result_sp; in GetQualifiedRepresentationIfAvailable() local
2752 result_sp = GetDynamicValue(dynValue); in GetQualifiedRepresentationIfAvailable()
2756 result_sp = GetStaticValue(); in GetQualifiedRepresentationIfAvailable()
2759 if (!result_sp) in GetQualifiedRepresentationIfAvailable()
2760 result_sp = GetSP(); in GetQualifiedRepresentationIfAvailable()
2761 assert(result_sp); in GetQualifiedRepresentationIfAvailable()
2763 bool is_synthetic = result_sp->IsSynthetic(); in GetQualifiedRepresentationIfAvailable()
2765 if (auto synth_sp = result_sp->GetSyntheticValue()) in GetQualifiedRepresentationIfAvailable()
2769 if (auto non_synth_sp = result_sp->GetNonSyntheticValue()) in GetQualifiedRepresentationIfAvailable()
2773 return result_sp; in GetQualifiedRepresentationIfAvailable()