Home
last modified time | relevance | path

Searched refs:sym_type (Results 1 – 9 of 9) sorted by relevance

/external/libabigail/src/
Dabg-symtab-reader.cc294 const int sym_type = GELF_ST_TYPE(sym->st_info); in load_() local
295 if (!(sym_type == STT_FUNC in load_()
296 || sym_type == STT_GNU_IFUNC in load_()
300 || (sym_type == STT_OBJECT && sym->st_shndx != SHN_ABS) in load_()
301 || sym_type == STT_TLS)) in load_()
Dabg-suppression-priv.h872 elf_symbol::type sym_type) in is_elf_symbol_suppressed() argument
874 if (elf_symbol_is_function(sym_type)) in is_elf_symbol_suppressed()
877 else if (elf_symbol_is_variable(sym_type)) in is_elf_symbol_suppressed()
Dabg-dwarf-reader.cc823 elf_symbol::type sym_type; in lookup_symbol_from_sysv_hash_tab() local
841 sym_type = stt_to_elf_symbol_type(GELF_ST_TYPE(symbol.st_info)); in lookup_symbol_from_sysv_hash_tab()
855 sym_type, in lookup_symbol_from_sysv_hash_tab()
1103 elf_symbol::type sym_type; in lookup_symbol_from_gnu_hash_tab() local
1137 sym_type = stt_to_elf_symbol_type(GELF_ST_TYPE(symbol.st_info)); in lookup_symbol_from_gnu_hash_tab()
1151 sym_type, sym_binding, in lookup_symbol_from_gnu_hash_tab()
1293 elf_symbol::type sym_type = in lookup_symbol_from_symtab() local
1308 name_str, sym_type, in lookup_symbol_from_symtab()
/external/selinux/libsepol/tests/
Dtest-common.c31 void test_sym_presence(policydb_t * p, const char *id, int sym_type, unsigned int scope_type, unsig… in test_sym_presence() argument
37 if (!hashtab_search(p->symtab[sym_type].table, id)) { in test_sym_presence()
38 fprintf(stderr, "symbol %s not found in table %d\n", id, sym_type); in test_sym_presence()
42 scope = hashtab_search(p->scope[sym_type].table, id); in test_sym_presence()
Dtest-common.h37 extern void test_sym_presence(policydb_t * p, const char *id, int sym_type, unsigned int scope_type…
/external/perfetto/src/kallsyms/
Dkernel_symbol_map.cc75 char sym_type = '\0'; in ForEachSym() local
109 sym_type = c; in ForEachSym()
122 fn(sym_addr, sym_type, sym_name); in ForEachSym()
124 sym_type = '\0'; in ForEachSym()
/external/llvm-project/lldb/source/Core/
DModule.cpp877 SymbolType sym_type = sc.symbol->GetType(); in FindFunctions() local
878 if (sc.symbol && (sym_type == eSymbolTypeCode || in FindFunctions()
879 sym_type == eSymbolTypeResolver)) in FindFunctions()
899 SymbolType sym_type = sc.symbol->GetType(); in FindFunctions() local
901 (sym_type == eSymbolTypeCode || in FindFunctions()
902 sym_type == eSymbolTypeResolver)) { in FindFunctions()
/external/python/pycparser/utils/benchmark/inputs/
Dtccgen.c.ppout3560 int sym_type, sym_bind, info, other, t;
3592 sym_type = 2;
3594 sym_type = 0;
3596 sym_type = 1;
3611 info = ((((sym_bind)) << 4) + (((sym_type)) & 0xf));
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntimeV2.cpp378 SymbolType sym_type = lldb::eSymbolTypeData) { in ExtractRuntimeGlobalSymbol() argument