Searched refs:symbol_type (Results 1 - 16 of 16) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymtab.h54 Symbol *FindSymbolWithType(lldb::SymbolType symbol_type,
63 uint32_t AppendSymbolIndexesWithType(lldb::SymbolType symbol_type,
68 lldb::SymbolType symbol_type, uint32_t flags_value,
71 uint32_t AppendSymbolIndexesWithType(lldb::SymbolType symbol_type,
84 lldb::SymbolType symbol_type,
87 lldb::SymbolType symbol_type,
93 lldb::SymbolType symbol_type,
96 const RegularExpression &regex, lldb::SymbolType symbol_type,
100 lldb::SymbolType symbol_type,
103 lldb::SymbolType symbol_type,
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DSymtab.cpp440 uint32_t Symtab::AppendSymbolIndexesWithType(SymbolType symbol_type, argument
451 if (symbol_type == eSymbolTypeAny || m_symbols[i].GetType() == symbol_type)
459 SymbolType symbol_type, uint32_t flags_value,
469 if ((symbol_type == eSymbolTypeAny ||
470 m_symbols[i].GetType() == symbol_type) &&
478 uint32_t Symtab::AppendSymbolIndexesWithType(SymbolType symbol_type, argument
491 if (symbol_type == eSymbolTypeAny ||
492 m_symbols[i].GetType() == symbol_type) {
636 SymbolType symbol_type,
458 AppendSymbolIndexesWithTypeAndFlagsValue( SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t> &indexes, uint32_t start_idx, uint32_t end_index) const argument
635 AppendSymbolIndexesWithNameAndType(ConstString symbol_name, SymbolType symbol_type, std::vector<uint32_t> &indexes) argument
653 AppendSymbolIndexesWithNameAndType( ConstString symbol_name, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t> &indexes) argument
673 AppendSymbolIndexesMatchingRegExAndType( const RegularExpression &regexp, SymbolType symbol_type, std::vector<uint32_t> &indexes) argument
694 AppendSymbolIndexesMatchingRegExAndType( const RegularExpression &regexp, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t> &indexes) argument
719 FindSymbolWithType(SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t &start_idx) argument
739 FindAllSymbolsWithNameAndType(ConstString name, SymbolType symbol_type, std::vector<uint32_t> &symbol_indexes) argument
758 FindAllSymbolsWithNameAndType( ConstString name, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t> &symbol_indexes) argument
778 FindAllSymbolsMatchingRexExAndType( const RegularExpression &regex, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t> &symbol_indexes) argument
788 FindFirstSymbolWithNameAndType(ConstString name, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility) argument
[all...]
H A DObjectFile.cpp401 const SymbolType symbol_type = symbol->GetType(); local
402 switch (symbol_type) {
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.h52 lldb::SymbolType symbol_type) const;
H A DJITLoaderGDB.cpp464 SymbolType symbol_type) const {
468 module_list.FindSymbolsWithNameAndType(name, symbol_type, target_symbols);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleList.h338 lldb::SymbolType symbol_type,
342 lldb::SymbolType symbol_type,
H A DModule.h238 /// \param[in] symbol_type
242 /// symbols that match \a symbol_type.
249 lldb::SymbolType symbol_type = lldb::eSymbolTypeAny);
252 lldb::SymbolType symbol_type,
256 lldb::SymbolType symbol_type,
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.h242 ConstString name, lldb::SymbolType symbol_type,
246 lldb::SymbolType symbol_type);
H A DClangExpressionDeclMap.cpp483 lldb::SymbolType symbol_type,
488 module->FindSymbolsWithNameAndType(name, symbol_type, sc_list);
490 target.GetImages().FindSymbolsWithNameAndType(name, symbol_type, sc_list);
535 symbol_type, reexport_module_sp.get());
581 lldb::SymbolType symbol_type) {
589 symbol_type);
480 GetSymbolAddress(Target &target, Process *process, ConstString name, lldb::SymbolType symbol_type, lldb_private::Module *module) argument
580 GetSymbolAddress(ConstString name, lldb::SymbolType symbol_type) argument
H A DIRForTarget.cpp1291 Type *symbol_type = symbol->getType(); local
1296 ConstantExpr::getIntToPtr(symbol_addr_int, symbol_type);
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBModule.cpp317 lldb::SymbolType symbol_type) {
319 (const char *, lldb::SymbolType), name, symbol_type);
327 ConstString(name), symbol_type, Symtab::eDebugAny,
334 lldb::SymbolType symbol_type) {
336 (const char *, lldb::SymbolType), name, symbol_type);
344 symtab->FindAllSymbolsWithNameAndType(ConstString(name), symbol_type, local
316 FindSymbol(const char *name, lldb::SymbolType symbol_type) argument
333 FindSymbols(const char *name, lldb::SymbolType symbol_type) argument
H A DSBTarget.cpp2289 lldb::SymbolType symbol_type) {
2291 (const char *, lldb::SymbolType), name, symbol_type);
2298 ConstString(name), symbol_type, *sb_sc_list); local
2288 FindSymbols(const char *name, lldb::SymbolType symbol_type) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp1314 SymbolType symbol_type) {
1318 name.AsCString(), symbol_type);
1321 name, symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny);
1354 SymbolType symbol_type,
1362 name.AsCString(), symbol_type);
1365 symtab->FindAllSymbolsWithNameAndType(name, symbol_type, symbol_indexes);
1371 SymbolType symbol_type,
1380 regex.GetText().str().c_str(), symbol_type);
1384 regex, symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny,
1313 FindFirstSymbolWithNameAndType(ConstString name, SymbolType symbol_type) argument
1353 FindSymbolsWithNameAndType(ConstString name, SymbolType symbol_type, SymbolContextList &sc_list) argument
1370 FindSymbolsMatchingRegExAndType(const RegularExpression &regex, SymbolType symbol_type, SymbolContextList &sc_list) argument
H A DModuleList.cpp458 SymbolType symbol_type,
463 (*pos)->FindSymbolsWithNameAndType(name, symbol_type, sc_list);
467 const RegularExpression &regex, lldb::SymbolType symbol_type,
472 (*pos)->FindSymbolsMatchingRegExAndType(regex, symbol_type, sc_list);
457 FindSymbolsWithNameAndType(ConstString name, SymbolType symbol_type, SymbolContextList &sc_list) const argument
466 FindSymbolsMatchingRegExAndType( const RegularExpression &regex, lldb::SymbolType symbol_type, SymbolContextList &sc_list) const argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp2007 SymbolType symbol_type = eSymbolTypeInvalid; local
2012 symbol_type = eSymbolTypeAbsolute;
2015 symbol_type = eSymbolTypeUndefined;
2024 if (symbol_type != eSymbolTypeUndefined) {
2034 symbol_type = eSymbolTypeData;
2039 symbol_type = eSymbolTypeCode;
2053 symbol_type = eSymbolTypeSourceFile;
2059 symbol_type = eSymbolTypeResolver;
2064 if (symbol_type == eSymbolTypeInvalid && symbol.getType() != STT_SECTION) {
2070 symbol_type
[all...]
/freebsd-13-stable/sys/kern/
H A Dlink_elf.c1415 symbol_type(elf_file_t ef, Elf_Size r_info) function
1437 if ((symbol_type(ef, (iter)->r_info) == \

Completed in 229 milliseconds