/openbsd/gnu/llvm/lldb/source/DataFormatters/ |
H A D | TypeCategory.cpp | 110 TypeFilterImpl::SharedPointer filter_sp; in Get() local 111 m_filter_cont.Get(candidates, filter_sp); in Get() 116 if (!filter_sp.get() && !synth_sp.get()) in Get() 118 else if (!filter_sp.get() && synth_sp.get()) in Get() 120 else if (filter_sp.get() && !synth_sp.get()) in Get() 124 pick_synth = filter_sp->GetRevision() <= synth_sp->GetRevision(); in Get() 131 entry = filter_sp; in Get()
|
H A D | FormattersHelpers.cpp | 91 TypeFilterImplSP filter_sp(new TypeFilterImpl(flags)); in AddFilter() local 93 filter_sp->AddExpressionPath(child); in AddFilter() 96 category_sp->AddTypeFilter(type_name.GetStringRef(), match_type, filter_sp); in AddFilter()
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | Target.cpp | 384 SearchFilterSP filter_sp; in CreateBreakpoint() local 432 SearchFilterSP filter_sp( in CreateBreakpoint() local 443 SearchFilterSP filter_sp( in CreateAddressInModuleBreakpoint() local 532 SearchFilterSP filter_sp; in GetSearchFilterForModule() local 545 return filter_sp; in GetSearchFilterForModule() 550 SearchFilterSP filter_sp; in GetSearchFilterForModuleList() local 563 return filter_sp; in GetSearchFilterForModuleList() 572 SearchFilterSP filter_sp; in GetSearchFilterForModuleAndCUList() local 583 return filter_sp; in GetSearchFilterForModuleAndCUList() 625 SearchFilterSP filter_sp; in CreateScriptedBreakpoint() local [all …]
|
H A D | LanguageRuntime.cpp | 243 SearchFilterSP filter_sp( in CreateExceptionBreakpoint() local 248 target.CreateBreakpoint(filter_sp, resolver_sp, is_internal, hardware, in CreateExceptionBreakpoint()
|
/openbsd/gnu/llvm/lldb/include/lldb/DataFormatters/ |
H A D | TypeCategory.h | 247 lldb::TypeFilterImplSP filter_sp) { in AddTypeFilter() argument 248 m_filter_cont.Add(type_sp, filter_sp); in AddTypeFilter() 252 lldb::TypeFilterImplSP filter_sp) { in AddTypeFilter() argument 255 filter_sp); in AddTypeFilter()
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBTypeCategory.cpp | 190 TypeFilterImplSP filter_sp = in GetFilterForType() local 193 return lldb::SBTypeFilter(filter_sp); in GetFilterForType() 263 TypeFilterImplSP filter_sp = in GetFilterAtIndex() local 266 return lldb::SBTypeFilter(filter_sp); in GetFilterAtIndex()
|
H A D | SBValue.cpp | 526 TypeFilterImplSP filter_sp = in GetTypeFilter() local 528 filter.SetSP(filter_sp); in GetTypeFilter()
|
/openbsd/gnu/llvm/lldb/source/Breakpoint/ |
H A D | Breakpoint.cpp | 49 Breakpoint::Breakpoint(Target &target, SearchFilterSP &filter_sp, in Breakpoint() argument 53 m_filter_sp(filter_sp), m_resolver_sp(resolver_sp), m_options(true), in Breakpoint() 165 SearchFilterSP filter_sp; in CreateFromStructuredData() local 167 filter_sp = in CreateFromStructuredData() 170 filter_sp = SearchFilter::CreateFromStructuredData(target_sp, *filter_dict, in CreateFromStructuredData() 200 result_sp = target.CreateBreakpoint(filter_sp, resolver_sp, false, in CreateFromStructuredData()
|
/openbsd/gnu/llvm/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
H A D | ItaniumABILanguageRuntime.cpp | 468 SearchFilterSP filter_sp(CreateExceptionSearchFilter()); in CreateExceptionBreakpoint() local 471 return target.CreateBreakpoint(filter_sp, exception_resolver_sp, is_internal, in CreateExceptionBreakpoint()
|
/openbsd/gnu/llvm/lldb/include/lldb/Breakpoint/ |
H A D | Breakpoint.h | 628 Breakpoint(Target &target, lldb::SearchFilterSP &filter_sp,
|
/openbsd/gnu/llvm/lldb/include/lldb/Target/ |
H A D | Target.h | 726 lldb::BreakpointSP CreateBreakpoint(lldb::SearchFilterSP &filter_sp,
|