Home
last modified time | relevance | path

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

/freebsd/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/contrib/llvm-project/lldb/source/Core/
H A DSearchFilter.cpp77 SearchFilterSP SearchFilter::CreateFromStructuredData( in CreateFromStructuredData()
81 SearchFilterSP result_sp; in CreateFromStructuredData()
168 lldb::SearchFilterSP SearchFilter::CreateCopy(lldb::TargetSP& target_sp) { in CreateCopy()
169 SearchFilterSP ret_sp = DoCreateCopy(); in CreateCopy()
359 SearchFilterSP SearchFilterForUnconstrainedSearches::CreateFromStructuredData( in CreateFromStructuredData()
388 SearchFilterSP SearchFilterForUnconstrainedSearches::DoCreateCopy() { in DoCreateCopy()
455 SearchFilterSP SearchFilterByModule::DoCreateCopy() { in DoCreateCopy()
459 SearchFilterSP SearchFilterByModule::CreateFromStructuredData( in CreateFromStructuredData()
587 lldb::SearchFilterSP SearchFilterByModuleList::DoCreateCopy() { in DoCreateCopy()
591 SearchFilterSP SearchFilterByModuleList::CreateFromStructuredData( in CreateFromStructuredData()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguageRuntime.h54 lldb::SearchFilterSP m_filter_sp;
56 lldb::SearchFilterSP DoCreateCopy() override;
173 virtual lldb::SearchFilterSP CreateExceptionSearchFilter() { in CreateExceptionSearchFilter()
H A DTarget.h792 lldb::BreakpointSP CreateBreakpoint(lldb::SearchFilterSP &filter_sp,
1508 lldb::SearchFilterSP
1511 lldb::SearchFilterSP
1514 lldb::SearchFilterSP
1625 lldb::SearchFilterSP m_search_filter_sp;
/freebsd/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.cpp469 SearchFilterSP filter_sp(GetSearchFilterForModuleAndCUList( in CreateSourceRegexBreakpoint()
512 SearchFilterSP filter_sp; in CreateBreakpoint()
560 SearchFilterSP filter_sp( in CreateBreakpoint()
571 SearchFilterSP filter_sp( in CreateAddressInModuleBreakpoint()
586 SearchFilterSP filter_sp(GetSearchFilterForModuleAndCUList( in CreateBreakpoint()
612 SearchFilterSP filter_sp(GetSearchFilterForModuleAndCUList( in CreateBreakpoint()
637 SearchFilterSP filter_sp(GetSearchFilterForModuleAndCUList( in CreateBreakpoint()
658 SearchFilterSP
660 SearchFilterSP filter_sp; in GetSearchFilterForModule()
676 SearchFilterSP
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpoint.h522 lldb::SearchFilterSP GetSearchFilter() { return m_filter_sp; } in GetSearchFilter()
626 Breakpoint(Target &target, lldb::SearchFilterSP &filter_sp,
647 lldb::SearchFilterSP
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.h77 lldb::SearchFilterSP CreateExceptionSearchFilter() override;
H A DItaniumABILanguageRuntime.cpp528 lldb::SearchFilterSP ItaniumABILanguageRuntime::CreateExceptionSearchFilter() { in CreateExceptionSearchFilter()
549 SearchFilterSP filter_sp(CreateExceptionSearchFilter()); in CreateExceptionBreakpoint()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.h90 lldb::SearchFilterSP CreateExceptionSearchFilter() override;
H A DAppleObjCRuntime.cpp479 lldb::SearchFilterSP AppleObjCRuntime::CreateExceptionSearchFilter() { in CreateExceptionSearchFilter()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpoint.cpp46 Breakpoint::Breakpoint(Target &target, SearchFilterSP &filter_sp, in Breakpoint()
160 SearchFilterSP filter_sp; in CreateFromStructuredData()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h425 typedef std::shared_ptr<lldb_private::SearchFilter> SearchFilterSP; typedef