| /freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/symbolizer/ |
| H A D | sanitizer_wrappers.cc | 48 struct GetTypes; 51 struct GetTypes<R(Args...)> { struct 65 GetTypes<__VA_ARGS__>::Result __interceptor_##Function( \ 66 GetTypes<__VA_ARGS__>::Arg<0>::Type) __attribute__((weak)); \ 67 GetTypes<__VA_ARGS__>::Result Function( \ 68 GetTypes<__VA_ARGS__>::Arg<0>::Type arg0) { \ 73 GetTypes<__VA_ARGS__>::Result __interceptor_##Function( \ 74 GetTypes<__VA_ARGS__>::Arg<0>::Type, \ 75 GetTypes<__VA_ARGS__>::Arg<1>::Type) __attribute__((weak)); \ 76 GetTypes<__VA_ARGS__>::Result Function( \ [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFIndex.h | 41 virtual void GetTypes(ConstString name, DIEArray &offsets) = 0; 42 virtual void GetTypes(const DWARFDeclContext &context, DIEArray &offsets) = 0;
|
| H A D | DebugNamesDWARFIndex.cpp | 192 void DebugNamesDWARFIndex::GetTypes(ConstString name, DIEArray &offsets) { in GetTypes() function in DebugNamesDWARFIndex 193 m_fallback.GetTypes(name, offsets); in GetTypes() 202 void DebugNamesDWARFIndex::GetTypes(const DWARFDeclContext &context, in GetTypes() function in DebugNamesDWARFIndex 204 m_fallback.GetTypes(context, offsets); in GetTypes()
|
| H A D | ManualDWARFIndex.h | 34 void GetTypes(ConstString name, DIEArray &offsets) override; 35 void GetTypes(const DWARFDeclContext &context, DIEArray &offsets) override;
|
| H A D | AppleDWARFIndex.h | 43 void GetTypes(ConstString name, DIEArray &offsets) override; 44 void GetTypes(const DWARFDeclContext &context, DIEArray &offsets) override;
|
| H A D | DebugNamesDWARFIndex.h | 35 void GetTypes(ConstString name, DIEArray &offsets) override; 36 void GetTypes(const DWARFDeclContext &context, DIEArray &offsets) override;
|
| H A D | AppleDWARFIndex.cpp | 98 void AppleDWARFIndex::GetTypes(ConstString name, DIEArray &offsets) { in GetTypes() function in AppleDWARFIndex 103 void AppleDWARFIndex::GetTypes(const DWARFDeclContext &context, in GetTypes() function in AppleDWARFIndex
|
| H A D | ManualDWARFIndex.cpp | 392 void ManualDWARFIndex::GetTypes(ConstString name, DIEArray &offsets) { in GetTypes() function in ManualDWARFIndex 397 void ManualDWARFIndex::GetTypes(const DWARFDeclContext &context, in GetTypes() function in ManualDWARFIndex
|
| H A D | SymbolFileDWARF.h | 207 size_t GetTypes(lldb_private::SymbolContextScope *sc_scope, 430 void GetTypes(const DWARFDIE &die, dw_offset_t min_die_offset,
|
| H A D | SymbolFileDWARF.cpp | 271 void SymbolFileDWARF::GetTypes(const DWARFDIE &die, dw_offset_t min_die_offset, in GetTypes() function in SymbolFileDWARF 337 GetTypes(child_die, min_die_offset, max_die_offset, type_mask, type_set); in GetTypes() 342 size_t SymbolFileDWARF::GetTypes(SymbolContextScope *sc_scope, in GetTypes() function in SymbolFileDWARF 358 GetTypes(dwarf_cu->DIE(), dwarf_cu->GetOffset(), in GetTypes() 367 GetTypes(dwarf_cu->DIE(), 0, UINT32_MAX, type_mask, type_set); in GetTypes() 2478 m_index->GetTypes(name, die_offsets); in FindTypes() 2556 m_index->GetTypes(name, die_offsets); in FindTypes() 2952 m_index->GetTypes(dwarf_decl_ctx, die_offsets); in FindDefinitionTypeForDWARFDeclContext()
|
| H A D | SymbolFileDWARFDebugMap.cpp | 1054 size_t SymbolFileDWARFDebugMap::GetTypes(SymbolContextScope *sc_scope, in GetTypes() function in SymbolFileDWARFDebugMap 1072 oso_dwarf->GetTypes(sc_scope, type_mask, type_list); in GetTypes() 1076 oso_dwarf->GetTypes(sc_scope, type_mask, type_list); in GetTypes()
|
| H A D | SymbolFileDWARFDebugMap.h | 127 size_t GetTypes(lldb_private::SymbolContextScope *sc_scope,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBCompileUnit.cpp | 135 lldb::SBTypeList SBCompileUnit::GetTypes(uint32_t type_mask) { in GetTypes() function in SBCompileUnit 151 vendor->GetTypes(m_opaque_ptr, type_class, type_list); in GetTypes()
|
| H A D | SBModule.cpp | 483 lldb::SBTypeList SBModule::GetTypes(uint32_t type_mask) { in GetTypes() function in SBModule 495 vendor->GetTypes(NULL, type_class, type_list); in GetTypes()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBCompileUnit.h | 65 lldb::SBTypeList GetTypes(uint32_t type_mask = lldb::eTypeClassAny);
|
| H A D | SBModule.h | 254 lldb::SBTypeList GetTypes(uint32_t type_mask = lldb::eTypeClassAny);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/ |
| H A D | SymbolFileSymtab.h | 85 size_t GetTypes(lldb_private::SymbolContextScope *sc_scope,
|
| H A D | SymbolFileSymtab.cpp | 48 size_t SymbolFileSymtab::GetTypes(SymbolContextScope *sc_scope, in GetTypes() function in SymbolFileSymtab
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.h | 102 size_t GetTypes(SymbolContextScope *sc_scope, lldb::TypeClass type_mask, in GetTypes() function
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | SymbolVendor.h | 125 virtual size_t GetTypes(SymbolContextScope *sc_scope,
|
| H A D | SymbolFile.h | 210 virtual size_t GetTypes(lldb_private::SymbolContextScope *sc_scope,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/ |
| H A D | SymbolVendor.cpp | 343 size_t SymbolVendor::GetTypes(SymbolContextScope *sc_scope, TypeClass type_mask, in GetTypes() function in SymbolVendor 349 return m_sym_file_ap->GetTypes(sc_scope, type_mask, type_list); in GetTypes()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.h | 154 size_t GetTypes(lldb_private::SymbolContextScope *sc_scope,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.h | 130 size_t GetTypes(SymbolContextScope *sc_scope, lldb::TypeClass type_mask,
|
| H A D | SymbolFileNativePDB.cpp | 1545 size_t SymbolFileNativePDB::GetTypes(lldb_private::SymbolContextScope *sc_scope, in GetTypes() function in SymbolFileNativePDB
|