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

12

/external/lldb/include/lldb/Symbol/
H A DSymtab.h59 Symbol * FindSymbolWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t &start_idx);
60 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
61 uint32_t AppendSymbolIndexesWithTypeAndFlagsValue (lldb::SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t>& indexes, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
62 uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches, uint32_t start_idx = 0, uint32_t end_index = UINT32_MAX) const;
65 uint32_t AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, std::vector<uint32_t>& matches);
66 uint32_t AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& matches);
67 uint32_t AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regex, lldb::SymbolType symbol_type, std::vector<uint32_t>& indexes);
68 uint32_t AppendSymbolIndexesMatchingRegExAndType (const RegularExpression &regex, lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes);
69 size_t FindAllSymbolsWithNameAndType (const ConstString &name, lldb::SymbolType symbol_type, std::vector<uint32_t>& symbol_indexes);
70 size_t FindAllSymbolsWithNameAndType (const ConstString &name, lldb::SymbolType symbol_type, Debu
[all...]
/external/selinux/checkpolicy/
H A Dmodule_compiler.h29 int declare_symbol(uint32_t symbol_type,
43 int require_symbol(uint32_t symbol_type,
68 int is_id_in_scope(uint32_t symbol_type, hashtab_key_t id);
H A Dmodule_compiler.c127 int declare_symbol(uint32_t symbol_type, argument
138 retval = symtab_insert(policydbp, symbol_type, key, datum,
143 symtab[symbol_type].table,
147 if (symbol_type == SYM_LEVELS) {
159 if (ebitmap_set_bit(decl->declared.scope + symbol_type,
622 int require_symbol(uint32_t symbol_type, argument
633 retval = symtab_insert(policydbp, symbol_type, key, datum,
638 symtab[symbol_type].table,
642 if (symbol_type == SYM_LEVELS) {
651 if (is_id_in_scope(symbol_type, ke
1248 is_id_in_scope(uint32_t symbol_type, hashtab_key_t id) argument
[all...]
/external/lldb/source/Symbol/
H A DSymtab.cpp309 const SymbolType symbol_type = symbol->GetType(); local
310 if (symbol_type == eSymbolTypeCode || symbol_type == eSymbolTypeResolver)
482 Symtab::AppendSymbolIndexesWithType (SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_index) const argument
492 if (symbol_type == eSymbolTypeAny || m_symbols[i].GetType() == symbol_type)
500 Symtab::AppendSymbolIndexesWithTypeAndFlagsValue (SymbolType symbol_type, uint32_t flags_value, std::vector<uint32_t>& indexes, uint32_t start_idx, uint32_t end_index) const argument
510 if ((symbol_type == eSymbolTypeAny || m_symbols[i].GetType() == symbol_type) && m_symbols[i].GetFlags() == flags_value)
518 Symtab::AppendSymbolIndexesWithType (SymbolType symbol_type, Debu argument
673 AppendSymbolIndexesWithNameAndType(const ConstString& symbol_name, SymbolType symbol_type, std::vector<uint32_t>& indexes) argument
692 AppendSymbolIndexesWithNameAndType(const ConstString& symbol_name, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes) argument
712 AppendSymbolIndexesMatchingRegExAndType(const RegularExpression &regexp, SymbolType symbol_type, std::vector<uint32_t>& indexes) argument
736 AppendSymbolIndexesMatchingRegExAndType(const RegularExpression &regexp, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& indexes) argument
763 FindSymbolWithType(SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, uint32_t& start_idx) argument
783 FindAllSymbolsWithNameAndType(const ConstString &name, SymbolType symbol_type, std::vector<uint32_t>& symbol_indexes) argument
803 FindAllSymbolsWithNameAndType(const ConstString &name, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& symbol_indexes) argument
823 FindAllSymbolsMatchingRexExAndType(const RegularExpression &regex, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility, std::vector<uint32_t>& symbol_indexes) argument
832 FindFirstSymbolWithNameAndType(const ConstString &name, SymbolType symbol_type, Debug symbol_debug_type, Visibility symbol_visibility) argument
[all...]
H A DObjectFile.cpp395 const SymbolType symbol_type = symbol->GetType(); local
396 switch (symbol_type)
/external/toybox/kconfig/
H A Dlkc_proto.h24 P(sym_type_name,const char *,(enum symbol_type type));
26 P(sym_get_type,enum symbol_type,(struct symbol *sym));
H A Dlkc.h56 enum symbol_type stype;
H A Dexpr.h62 enum symbol_type { enum
75 enum symbol_type type;
H A Dsymbol.c78 enum symbol_type sym_get_type(struct symbol *sym)
80 enum symbol_type type = sym->type;
91 const char *sym_type_name(enum symbol_type type)
H A Dconf.c69 enum symbol_type type = sym_get_type(sym);
/external/lldb/include/lldb/Expression/
H A DClangExpressionDeclMap.h301 lldb::SymbolType symbol_type);
305 lldb::SymbolType symbol_type);
/external/lldb/include/lldb/Core/
H A DModule.h207 /// @param[in] symbol_type
211 /// symbols that match \a symbol_type.
219 lldb::SymbolType symbol_type = lldb::eSymbolTypeAny);
223 lldb::SymbolType symbol_type,
228 lldb::SymbolType symbol_type,
H A DModuleList.h390 lldb::SymbolType symbol_type,
396 lldb::SymbolType symbol_type,
/external/lldb/source/API/
H A DSBModule.cpp355 lldb::SymbolType symbol_type)
363 sb_symbol.SetSymbol(symtab->FindFirstSymbolWithNameAndType(ConstString(name), symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny));
370 SBModule::FindSymbols (const char *name, lldb::SymbolType symbol_type) argument
380 const size_t num_matches = symtab->FindAllSymbolsWithNameAndType(ConstString(name), symbol_type, matching_symbol_indexes);
354 FindSymbol(const char *name, lldb::SymbolType symbol_type) argument
H A DSBTarget.cpp2552 SBTarget::FindSymbols (const char *name, lldb::SymbolType symbol_type) argument
2562 symbol_type, local
/external/linux-tools-perf/src/tools/perf/util/
H A Dsymbol.c59 bool symbol_type__is_a(char symbol_type, enum map_type map_type) argument
61 symbol_type = toupper(symbol_type);
65 return symbol_type == 'T' || symbol_type == 'W';
67 return symbol_type == 'D';
463 char symbol_type; local
478 symbol_type = line[len];
489 symbol_type, start);
H A Dsymbol.h236 bool symbol_type__is_a(char symbol_type, enum map_type map_type);
/external/lldb/source/Core/
H A DModule.cpp1149 Module::FindFirstSymbolWithNameAndType (const ConstString &name, SymbolType symbol_type) argument
1154 symbol_type);
1160 return symtab->FindFirstSymbolWithNameAndType (name, symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny);
1204 Module::FindSymbolsWithNameAndType (const ConstString &name, SymbolType symbol_type, SymbolContextList &sc_list) argument
1213 symbol_type);
1222 symtab->FindAllSymbolsWithNameAndType (name, symbol_type, symbol_indexes);
1230 Module::FindSymbolsMatchingRegExAndType (const RegularExpression &regex, SymbolType symbol_type, SymbolContextList &sc_list) argument
1238 symbol_type);
1247 symtab->FindAllSymbolsMatchingRexExAndType (regex, symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny, symbol_indexes);
H A DModuleList.cpp514 SymbolType symbol_type,
525 (*pos)->FindSymbolsWithNameAndType (name, symbol_type, sc_list);
531 lldb::SymbolType symbol_type,
542 (*pos)->FindSymbolsMatchingRegExAndType (regex, symbol_type, sc_list);
513 FindSymbolsWithNameAndType(const ConstString &name, SymbolType symbol_type, SymbolContextList &sc_list, bool append) const argument
530 FindSymbolsMatchingRegExAndType(const RegularExpression &regex, lldb::SymbolType symbol_type, SymbolContextList &sc_list, bool append) const argument
/external/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1049 SymbolType symbol_type = eSymbolTypeInvalid; local
1055 symbol_type = eSymbolTypeAbsolute;
1058 symbol_type = eSymbolTypeUndefined;
1066 if (symbol_type != eSymbolTypeUndefined)
1078 symbol_type = eSymbolTypeData;
1083 symbol_type = eSymbolTypeCode;
1097 symbol_type = eSymbolTypeSourceFile;
1103 symbol_type = eSymbolTypeResolver;
1108 if (symbol_type == eSymbolTypeInvalid)
1119 symbol_type
[all...]
/external/selinux/libsepol/src/
H A Dlink.c76 uint32_t symbol_type; member in struct:missing_requirement
2016 req->symbol_type = i;
2065 req->symbol_type = SYM_CLASSES;
2095 if (req.symbol_type == SYM_CLASSES) {
2124 symtab_names[req.symbol_type],
2126 symbol_type][req.
2134 symtab_names[req.symbol_type],
2136 symbol_type][req.
2155 if (req->symbol_type == SYM_CLASSES) {
2174 symtab_names[req->symbol_type],
[all...]
H A Dmodule_to_cil.c471 static int is_id_in_scope_with_start(struct policydb *pdb, struct stack *decl_stack, int start, uint32_t symbol_type, char *id) argument
478 scope = hashtab_search(pdb->scope[symbol_type].table, id);
496 static int is_id_in_ancestor_scope(struct policydb *pdb, struct stack *decl_stack, char *type, uint32_t symbol_type) argument
500 return is_id_in_scope_with_start(pdb, decl_stack, start, symbol_type, type);
503 static int is_id_in_scope(struct policydb *pdb, struct stack *decl_stack, char *type, uint32_t symbol_type) argument
507 return is_id_in_scope_with_start(pdb, decl_stack, start, symbol_type, type);
/external/selinux/checkpolicy/test/
H A Ddispol.c348 static void display_id(policydb_t *p, FILE *fp, uint32_t symbol_type, argument
351 const char *id = p->sym_val_to_name[symbol_type][symbol_value];
H A Ddismod.c101 static void display_id(policydb_t * p, FILE * fp, uint32_t symbol_type, argument
104 char *id = p->sym_val_to_name[symbol_type][symbol_value];
106 (scope_datum_t *) hashtab_search(p->scope[symbol_type].table, id);
/external/lldb/source/Expression/
H A DClangExpressionDeclMap.cpp594 ClangExpressionDeclMap::GetSymbolAddress (Target &target, Process *process, const ConstString &name, lldb::SymbolType symbol_type) argument
598 target.GetImages().FindSymbolsWithNameAndType(name, symbol_type, sc_list);
671 ClangExpressionDeclMap::GetSymbolAddress (const ConstString &name, lldb::SymbolType symbol_type) argument
678 return GetSymbolAddress(m_parser_vars->m_exe_ctx.GetTargetRef(), m_parser_vars->m_exe_ctx.GetProcessPtr(), name, symbol_type);

Completed in 514 milliseconds

12