Home
last modified time | relevance | path

Searched refs:SearchFilterSP (Results 1 – 13 of 13) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DSearchFilter.h200 lldb::SearchFilterSP CreateCopy(lldb::TargetSP& target_sp);
202 static lldb::SearchFilterSP
274 virtual lldb::SearchFilterSP DoCreateCopy() = 0;
300 static lldb::SearchFilterSP
308 lldb::SearchFilterSP DoCreateCopy() override;
342 static lldb::SearchFilterSP
350 lldb::SearchFilterSP DoCreateCopy() override;
389 static lldb::SearchFilterSP
399 lldb::SearchFilterSP DoCreateCopy() override;
428 static lldb::SearchFilterSP
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DSearchFilter.cpp77 SearchFilterSP SearchFilter::CreateFromStructuredData( in CreateFromStructuredData()
81 SearchFilterSP result_sp; in CreateFromStructuredData()
164 lldb::SearchFilterSP SearchFilter::CreateCopy(lldb::TargetSP& target_sp) { in CreateCopy()
165 SearchFilterSP ret_sp = DoCreateCopy(); in CreateCopy()
384 SearchFilterSP SearchFilterForUnconstrainedSearches::DoCreateCopy() { in DoCreateCopy()
451 SearchFilterSP SearchFilterByModule::DoCreateCopy() { in DoCreateCopy()
455 SearchFilterSP SearchFilterByModule::CreateFromStructuredData( in CreateFromStructuredData()
581 lldb::SearchFilterSP SearchFilterByModuleList::DoCreateCopy() { in DoCreateCopy()
585 SearchFilterSP SearchFilterByModuleList::CreateFromStructuredData( in CreateFromStructuredData()
640 SearchFilterSP result_sp; in CreateFromStructuredData()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguageRuntime.h54 lldb::SearchFilterSP m_filter_sp;
56 lldb::SearchFilterSP DoCreateCopy() override;
168 virtual lldb::SearchFilterSP CreateExceptionSearchFilter() { in CreateExceptionSearchFilter()
H A DTarget.h749 lldb::BreakpointSP CreateBreakpoint(lldb::SearchFilterSP &filter_sp,
1440 lldb::SearchFilterSP
1443 lldb::SearchFilterSP
1446 lldb::SearchFilterSP
1556 lldb::SearchFilterSP m_search_filter_sp;
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DLanguageRuntime.cpp81 SearchFilterSP ExceptionSearchFilter::DoCreateCopy() { in DoCreateCopy()
82 return SearchFilterSP( in DoCreateCopy()
243 SearchFilterSP filter_sp( in CreateExceptionBreakpoint()
H A DTarget.cpp383 SearchFilterSP filter_sp(GetSearchFilterForModuleAndCUList( in CreateSourceRegexBreakpoint()
426 SearchFilterSP filter_sp; in CreateBreakpoint()
474 SearchFilterSP filter_sp( in CreateBreakpoint()
485 SearchFilterSP filter_sp( in CreateAddressInModuleBreakpoint()
572 SearchFilterSP
574 SearchFilterSP filter_sp; in GetSearchFilterForModule()
590 SearchFilterSP
592 SearchFilterSP filter_sp; in GetSearchFilterForModuleList()
608 SearchFilterSP Target::GetSearchFilterForModuleAndCUList( in GetSearchFilterForModuleAndCUList()
614 SearchFilterSP filter_sp; in GetSearchFilterForModuleAndCUList()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpoint.h524 lldb::SearchFilterSP GetSearchFilter() { return m_filter_sp; } in GetSearchFilter()
626 Breakpoint(Target &target, lldb::SearchFilterSP &filter_sp,
648 lldb::SearchFilterSP
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.h77 lldb::SearchFilterSP CreateExceptionSearchFilter() override;
H A DItaniumABILanguageRuntime.cpp544 lldb::SearchFilterSP ItaniumABILanguageRuntime::CreateExceptionSearchFilter() { in CreateExceptionSearchFilter()
565 SearchFilterSP filter_sp(CreateExceptionSearchFilter()); in CreateExceptionBreakpoint()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.h90 lldb::SearchFilterSP CreateExceptionSearchFilter() override;
H A DAppleObjCRuntime.cpp473 lldb::SearchFilterSP AppleObjCRuntime::CreateExceptionSearchFilter() { in CreateExceptionSearchFilter()
/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpoint.cpp44 Breakpoint::Breakpoint(Target &target, SearchFilterSP &filter_sp, in Breakpoint()
160 SearchFilterSP filter_sp; in CreateFromStructuredData()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h409 typedef std::shared_ptr<lldb_private::SearchFilter> SearchFilterSP; typedef