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

/external/checkpolicy/test/
H A Ddispol.c322 static void display_id(policydb_t *p, FILE *fp, uint32_t symbol_type, argument
325 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/Symbol/
H A DObjectFile.cpp395 const SymbolType symbol_type = symbol->GetType(); local
396 switch (symbol_type)
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...]
/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/checkpolicy/
H A Dmodule_compiler.c126 int declare_symbol(uint32_t symbol_type, argument
137 retval = symtab_insert(policydbp, symbol_type, key, datum,
142 symtab[symbol_type].table,
146 if (symbol_type == SYM_LEVELS) {
158 if (ebitmap_set_bit(decl->declared.scope + symbol_type,
621 int require_symbol(uint32_t symbol_type, argument
632 retval = symtab_insert(policydbp, symbol_type, key, datum,
637 symtab[symbol_type].table,
641 if (symbol_type == SYM_LEVELS) {
650 if (is_id_in_scope(symbol_type, ke
1247 is_id_in_scope(uint32_t symbol_type, hashtab_key_t id) argument
[all...]
/external/linux-tools-perf/perf-3.12.0/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);
/external/lldb/source/Core/
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
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);
/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);
H A DIRForTarget.cpp1601 Type *symbol_type = symbol->getType(); local
1607 Value *symbol_addr_ptr = ConstantExpr::getIntToPtr(symbol_addr_int, symbol_type);
/external/libsepol/src/
H A Dlink.c76 uint32_t symbol_type; member in struct:missing_requirement
2015 req->symbol_type = i;
2064 req->symbol_type = SYM_CLASSES;
2094 if (req.symbol_type == SYM_CLASSES) {
2123 symtab_names[req.symbol_type],
2125 symbol_type][req.
2133 symtab_names[req.symbol_type],
2135 symbol_type][req.
2154 if (req->symbol_type == SYM_CLASSES) {
2173 symtab_names[req->symbol_type],
[all...]
/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/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp851 const SymbolType symbol_type = symbol->GetType(); local
852 switch (symbol_type)
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlemon.c152 enum symbol_type { enum
166 enum symbol_type type; /* Symbols are all either TERMINALS or NTs */

Completed in 497 milliseconds