Home
last modified time | relevance | path

Searched refs:FunctionNameType (Results 1 – 25 of 26) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolverName.h27 lldb::FunctionNameType name_type_mask,
35 lldb::FunctionNameType name_type_mask,
42 lldb::FunctionNameType name_type_mask,
91 lldb::FunctionNameType name_type_mask);
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp28 const char *name_cstr, FunctionNameType name_type_mask, in BreakpointResolverName()
49 FunctionNameType name_type_mask, LanguageType language, lldb::addr_t offset, in BreakpointResolverName()
61 FunctionNameType name_type_mask, LanguageType language, lldb::addr_t offset, in BreakpointResolverName()
157 std::vector<FunctionNameType> name_masks; in CreateFromStructuredData()
167 std::underlying_type<FunctionNameType>::type>(i); in CreateFromStructuredData()
174 name_masks.push_back(static_cast<FunctionNameType>(*maybe_fnt)); in CreateFromStructuredData()
217 FunctionNameType name_type_mask) { in AddNameLookup()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h337 lldb::FunctionNameType name_type_mask,
343 lldb::FunctionNameType name_type_mask,
919 LookupInfo(ConstString name, lldb::FunctionNameType name_type_mask,
930 lldb::FunctionNameType GetNameTypeMask() const { return m_name_type_mask; } in GetNameTypeMask()
932 void SetNameTypeMask(lldb::FunctionNameType mask) { in SetNameTypeMask()
956 lldb::FunctionNameType m_name_type_mask = lldb::eFunctionNameTypeNone;
H A DModuleList.h286 void FindFunctions(ConstString name, lldb::FunctionNameType name_type_mask,
292 lldb::FunctionNameType name_type_mask,
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h202 lldb::FunctionNameType m_type;
205 MethodNameVariant(ConstString name, lldb::FunctionNameType type) in MethodNameVariant()
208 lldb::FunctionNameType GetType() const { return m_type; } in GetType()
311 virtual std::pair<lldb::FunctionNameType, std::optional<ConstString>>
H A DTarget.h754 lldb::FunctionNameType func_name_type_mask, lldb::LanguageType language,
778 size_t num_names, lldb::FunctionNameType func_name_type_mask,
786 lldb::FunctionNameType func_name_type_mask,
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymtab.h278 std::map<lldb::FunctionNameType, UniqueCStringMap<uint32_t>>
287 GetNameToSymbolIndexMap(lldb::FunctionNameType type) { in GetNameToSymbolIndexMap()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.h61 std::pair<lldb::FunctionNameType, std::optional<ConstString>>
H A DCPlusPlusLanguage.cpp75 std::pair<FunctionNameType, std::optional<ConstString>>
80 FunctionNameType func_name_type = eFunctionNameTypeNone; in GetFunctionNameInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.h145 std::pair<lldb::FunctionNameType, std::optional<ConstString>>
H A DObjCLanguage.cpp225 std::pair<FunctionNameType, std::optional<ConstString>>
227 FunctionNameType func_name_type = eFunctionNameTypeNone; in GetFunctionNameInfo()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFIndex.cpp31 FunctionNameType name_type_mask = lookup_info.GetNameTypeMask(); in ProcessFunctionDIE()
H A DManualDWARFIndex.cpp477 FunctionNameType name_type_mask = lookup_info.GetNameTypeMask(); in GetFunctions()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-enumerations.h784 FLAGS_ENUM(FunctionNameType){ in FLAGS_ENUM() argument
805 LLDB_MARK_AS_BITMASK_ENUM(FunctionNameType)
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBTarget.cpp791 lldb::FunctionNameType name_type_mask = eFunctionNameTypeAuto; in BreakpointCreateByName()
822 FunctionNameType mask = static_cast<FunctionNameType>(name_type_mask); in BreakpointCreateByName()
866 FunctionNameType mask = static_cast<FunctionNameType>(name_type_mask); in BreakpointCreateByNames()
1725 FunctionNameType mask = static_cast<FunctionNameType>(name_type_mask); in FindFunctions()
H A DSBModule.cpp397 FunctionNameType type = static_cast<FunctionNameType>(name_type_mask); in FindFunctions()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp645 FunctionNameType name_type_mask, in LookupInfo()
829 FunctionNameType name_type_mask, in FindFunctions()
843 FunctionNameType name_type_mask, in FindFunctions()
H A DModuleList.cpp442 FunctionNameType name_type_mask, in FindFunctions()
470 lldb::FunctionNameType name_type_mask, in FindFunctionSymbols()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolFileOnDemand.cpp393 FunctionNameType name_type_mask = lookup_info.GetNameTypeMask(); in FindFunctions()
H A DSymtab.cpp1139 for (lldb::FunctionNameType type : in FindFunctionSymbols()
1343 GetNameToSymbolIndexMap((lldb::FunctionNameType)type); in Decode()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp543 lldb::FunctionNameType m_func_name_type_mask = eFunctionNameTypeNone;
655 FunctionNameType name_type_mask = m_options.m_func_name_type_mask; in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp582 FunctionNameType func_name_type_mask, LanguageType language, in CreateBreakpoint()
606 FunctionNameType func_name_type_mask, in CreateBreakpoint()
632 FunctionNameType func_name_type_mask, in CreateBreakpoint()
/freebsd/contrib/llvm-project/lldb/docs/
H A Dpython_api_enums.rst997 FunctionNameType section in Enumerators
995 .. _FunctionNameType: global() target
1009 BasicTypeFunctionNameType global() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp1308 FunctionNameType name_type_mask = lookup_info.GetNameTypeMask(); in FindFunctions()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.cpp1676 FunctionNameType name_type_mask = lookup_info.GetNameTypeMask(); in FindFunctions()

12