/external/chromium_org/tools/deep_memory_profiler/lib/ |
D | symbol.py | 107 def __init__(self, symbol_type, symbol_data_sources): argument 108 self._symbol_type = symbol_type 129 def update(self, symbol_type, bucket_set, symbol_finder, cache_f): argument 150 self._load(cache_f, symbol_type) 153 address for address in bucket_set.iter_addresses(symbol_type) 154 if address not in self._symbol_mapping_caches[symbol_type]) 167 self._symbol_mapping_caches[symbol_type][address] = stripped_symbol 170 def lookup(self, symbol_type, address): argument 181 return self._symbol_mapping_caches[symbol_type].get(address) 183 def _load(self, cache_f, symbol_type): argument [all …]
|
D | bucket.py | 182 def iter_addresses(self, symbol_type): argument 183 if symbol_type in [FUNCTION_SYMBOLS, SOURCEFILE_SYMBOLS]:
|
/external/lldb/include/lldb/Symbol/ |
D | Symtab.h | 59 …Symbol * FindSymbolWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Visibility … 60 …uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, std::vector<uint32_t>& inde… 61 …uint32_t AppendSymbolIndexesWithTypeAndFlagsValue (lldb::SymbolType symbol_type, uint32_t flags… 62 …uint32_t AppendSymbolIndexesWithType (lldb::SymbolType symbol_type, Debug symbol_debug_type, Vi… 65 …dexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, std::vector<ui… 66 …dexesWithNameAndType (const ConstString& symbol_name, lldb::SymbolType symbol_type, Debug symbol_d… 67 …MatchingRegExAndType (const RegularExpression ®ex, lldb::SymbolType symbol_type, std::vector<ui… 68 …MatchingRegExAndType (const RegularExpression ®ex, lldb::SymbolType symbol_type, Debug symbol_d… 69 …ndAllSymbolsWithNameAndType (const ConstString &name, lldb::SymbolType symbol_type, std::vector<ui… 70 …ndAllSymbolsWithNameAndType (const ConstString &name, lldb::SymbolType symbol_type, Debug symbol_d… [all …]
|
/external/chromium_org/tools/binary_size/ |
D | explain_binary_size_delta.py | 64 for symbol_name, symbol_type, symbol_size, file_path in symbols: 66 symbol_type = '@' # hack to categorize these separately 71 key = (file_path, symbol_type) 167 file_path, symbol_type, symbol_name, size1, size2 = item 179 for file_path, symbol_type, symbol_name, size1, size2 in section.symbols: 186 bucket.append((symbol_name, symbol_type, size1, size2)) 214 for file_path, symbol_type, symbol_name, size1, size2 in unchanged: 257 for symbol_name, symbol_type, size1, size2 in \ 291 for symbol_name, symbol_type, size1, size2 in \ 296 (DeltaStr(size2), symbol_name, symbol_type, size2)) [all …]
|
D | run_binary_size_analysis.py | 75 def SymbolTypeToHuman(symbol_type): argument 82 'v': 'weak symbol'}[symbol_type] 103 for symbol_type, symbol_bucket in old_children.iteritems(): 110 for symbol_type, symbol_bucket in old_children.iteritems(): 121 AddSymbolIntoFileNode(current_bucket, symbol_type, 140 def AddSymbolIntoFileNode(node, symbol_type, symbol_name, symbol_size): argument 146 node = _MkChild(node, symbol_type) 148 node[NODE_SYMBOL_TYPE_KEY] = symbol_type 159 node[NODE_SYMBOL_TYPE_KEY] = symbol_type 172 for symbol_name, symbol_type, symbol_size, file_path in symbols: [all …]
|
/external/lldb/source/Symbol/ |
D | Symtab.cpp | 309 const SymbolType symbol_type = symbol->GetType(); in InitNameIndexes() local 310 if (symbol_type == eSymbolTypeCode || symbol_type == eSymbolTypeResolver) in InitNameIndexes() 482 Symtab::AppendSymbolIndexesWithType (SymbolType symbol_type, std::vector<uint32_t>& indexes, uint32… in AppendSymbolIndexesWithType() argument 492 if (symbol_type == eSymbolTypeAny || m_symbols[i].GetType() == symbol_type) in AppendSymbolIndexesWithType() 500 Symtab::AppendSymbolIndexesWithTypeAndFlagsValue (SymbolType symbol_type, uint32_t flags_value, std… in AppendSymbolIndexesWithTypeAndFlagsValue() argument 510 …if ((symbol_type == eSymbolTypeAny || m_symbols[i].GetType() == symbol_type) && m_symbols[i].GetFl… in AppendSymbolIndexesWithTypeAndFlagsValue() 518 Symtab::AppendSymbolIndexesWithType (SymbolType symbol_type, Debug symbol_debug_type, Visibility sy… in AppendSymbolIndexesWithType() argument 528 if (symbol_type == eSymbolTypeAny || m_symbols[i].GetType() == symbol_type) in AppendSymbolIndexesWithType() 673 Symtab::AppendSymbolIndexesWithNameAndType (const ConstString& symbol_name, SymbolType symbol_type,… in AppendSymbolIndexesWithNameAndType() argument 682 if (symbol_type == eSymbolTypeAny || m_symbols[*pos].GetType() == symbol_type) in AppendSymbolIndexesWithNameAndType() [all …]
|
/external/chromium_org/tools/deep_memory_profiler/tests/ |
D | dmprof_test.py | 30 def iter_addresses(self, symbol_type): # pylint: disable=W0613 argument 109 def add(self, symbol_type, address, symbol): argument 110 self._symbol_caches[symbol_type][address] = symbol 112 def lookup(self, symbol_type, address): argument 113 symbol = self._symbol_caches[symbol_type].get(address)
|
/external/checkpolicy/ |
D | module_compiler.h | 29 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);
|
D | module_compiler.c | 126 int declare_symbol(uint32_t symbol_type, in declare_symbol() argument 137 retval = symtab_insert(policydbp, symbol_type, key, datum, in declare_symbol() 142 symtab[symbol_type].table, in declare_symbol() 146 if (symbol_type == SYM_LEVELS) { in declare_symbol() 158 if (ebitmap_set_bit(decl->declared.scope + symbol_type, in declare_symbol() 621 int require_symbol(uint32_t symbol_type, in require_symbol() argument 632 retval = symtab_insert(policydbp, symbol_type, key, datum, in require_symbol() 637 symtab[symbol_type].table, in require_symbol() 641 if (symbol_type == SYM_LEVELS) { in require_symbol() 650 if (is_id_in_scope(symbol_type, key)) { in require_symbol() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | 2008-03-07-APIntBug.ll | 12 …%struct.symbol_type = type <{ [2 x %struct.LIST], %struct.FIRST_UNION, %struct.SECOND_UNION, %stru… 23 …%tmp11651166 = bitcast %struct.head_type* %tmp1165 to %struct.symbol_type* ; <%struct.symbol_type… 24 …%tmp1167 = getelementptr %struct.symbol_type* %tmp11651166, i32 0, i32 3 ; <%struct.rec**> [#uses… 28 …%tmp11701171 = bitcast %struct.head_type* %tmp1170 to %struct.symbol_type* ; <%struct.symbol_type… 29 …%tmp1172 = getelementptr %struct.symbol_type* %tmp11701171, i32 0, i32 3 ; <%struct.rec**> [#uses…
|
/external/chromium_org/tools/binary_size/template/ |
D | D3SymbolTreeMap.js | 103 for (var symbol_type in D3SymbolTreeMap._NM_SYMBOL_TYPE_DESCRIPTIONS) { 104 D3SymbolTreeMap._NM_SYMBOL_TYPES += symbol_type; 684 symbol_type = D3SymbolTreeMap._NM_SYMBOL_TYPES.charAt(x); 685 var stats = datum.symbol_stats[symbol_type]; 692 var tempcolor = D3SymbolTreeMap.getColorForType(symbol_type); 782 symbol_type = D3SymbolTreeMap._NM_SYMBOL_TYPES.charAt(x); 783 var stats = datum.symbol_stats[symbol_type]; 825 symbol_type = D3SymbolTreeMap._NM_SYMBOL_TYPES.charAt(x); 826 var stats = datum.symbol_stats[symbol_type]; 832 symbol_type));
|
/external/lldb/include/lldb/Core/ |
D | Module.h | 219 lldb::SymbolType symbol_type = lldb::eSymbolTypeAny); 223 lldb::SymbolType symbol_type, 228 lldb::SymbolType symbol_type,
|
D | ModuleList.h | 390 lldb::SymbolType symbol_type, 396 lldb::SymbolType symbol_type,
|
/external/lldb/source/Plugins/ObjectFile/ELF/ |
D | ObjectFileELF.cpp | 1049 SymbolType symbol_type = eSymbolTypeInvalid; in ParseSymbols() local 1055 symbol_type = eSymbolTypeAbsolute; in ParseSymbols() 1058 symbol_type = eSymbolTypeUndefined; in ParseSymbols() 1066 if (symbol_type != eSymbolTypeUndefined) in ParseSymbols() 1078 symbol_type = eSymbolTypeData; in ParseSymbols() 1083 symbol_type = eSymbolTypeCode; in ParseSymbols() 1097 symbol_type = eSymbolTypeSourceFile; in ParseSymbols() 1103 symbol_type = eSymbolTypeResolver; in ParseSymbols() 1108 if (symbol_type == eSymbolTypeInvalid) in ParseSymbols() 1119 symbol_type = eSymbolTypeCode; in ParseSymbols() [all …]
|
/external/lldb/include/lldb/Expression/ |
D | ClangExpressionDeclMap.h | 301 lldb::SymbolType symbol_type); 305 lldb::SymbolType symbol_type);
|
/external/lldb/source/API/ |
D | SBModule.cpp | 355 lldb::SymbolType symbol_type) in FindSymbol() argument 363 …ol.SetSymbol(symtab->FindFirstSymbolWithNameAndType(ConstString(name), symbol_type, Symtab::eDebug… in FindSymbol() 370 SBModule::FindSymbols (const char *name, lldb::SymbolType symbol_type) in FindSymbols() argument 380 …num_matches = symtab->FindAllSymbolsWithNameAndType(ConstString(name), symbol_type, matching_symbo… in FindSymbols()
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
D | vdso_support.h | 91 int symbol_type, SymbolInfo *info_out) const;
|
D | elf_mem_image.h | 110 int symbol_type, SymbolInfo *info_out) const;
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
D | vdso_support.h | 91 int symbol_type, SymbolInfo *info_out) const;
|
D | elf_mem_image.h | 110 int symbol_type, SymbolInfo *info_out) const;
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
D | symbol.c | 59 bool symbol_type__is_a(char symbol_type, enum map_type map_type) in symbol_type__is_a() argument 61 symbol_type = toupper(symbol_type); in symbol_type__is_a() 65 return symbol_type == 'T' || symbol_type == 'W'; in symbol_type__is_a() 67 return symbol_type == 'D'; in symbol_type__is_a() 463 char symbol_type; in kallsyms__parse() local 478 symbol_type = line[len]; in kallsyms__parse() 489 symbol_type, start); in kallsyms__parse()
|
/external/lldb/source/Core/ |
D | Module.cpp | 1149 Module::FindFirstSymbolWithNameAndType (const ConstString &name, SymbolType symbol_type) in FindFirstSymbolWithNameAndType() argument 1154 symbol_type); in FindFirstSymbolWithNameAndType() 1160 …return symtab->FindFirstSymbolWithNameAndType (name, symbol_type, Symtab::eDebugAny, Symtab::eVisi… in FindFirstSymbolWithNameAndType() 1204 Module::FindSymbolsWithNameAndType (const ConstString &name, SymbolType symbol_type, SymbolContextL… in FindSymbolsWithNameAndType() argument 1213 symbol_type); in FindSymbolsWithNameAndType() 1222 symtab->FindAllSymbolsWithNameAndType (name, symbol_type, symbol_indexes); in FindSymbolsWithNameAndType() 1230 Module::FindSymbolsMatchingRegExAndType (const RegularExpression ®ex, SymbolType symbol_type, Sy… in FindSymbolsMatchingRegExAndType() argument 1238 symbol_type); in FindSymbolsMatchingRegExAndType() 1247 …symtab->FindAllSymbolsMatchingRexExAndType (regex, symbol_type, Symtab::eDebugAny, Symtab::eVisibi… in FindSymbolsMatchingRegExAndType()
|
D | ModuleList.cpp | 514 SymbolType symbol_type, in FindSymbolsWithNameAndType() argument 525 (*pos)->FindSymbolsWithNameAndType (name, symbol_type, sc_list); in FindSymbolsWithNameAndType() 531 lldb::SymbolType symbol_type, in FindSymbolsMatchingRegExAndType() argument 542 (*pos)->FindSymbolsMatchingRegExAndType (regex, symbol_type, sc_list); in FindSymbolsMatchingRegExAndType()
|
/external/chromium_org/tools/find_runtime_symbols/ |
D | find_runtime_symbols.py | 172 def find_runtime_symbols(symbol_type, symbols_in_process, addresses): argument 173 return _INTERNAL_FINDERS[symbol_type](symbols_in_process, addresses)
|
/external/libsepol/src/ |
D | link.c | 76 uint32_t symbol_type; member 2015 req->symbol_type = i; in is_decl_requires_met() 2064 req->symbol_type = SYM_CLASSES; in is_decl_requires_met() 2094 if (req.symbol_type == SYM_CLASSES) { in debug_requirements() 2123 symtab_names[req.symbol_type], in debug_requirements() 2125 symbol_type][req. in debug_requirements() 2133 symtab_names[req.symbol_type], in debug_requirements() 2135 symbol_type][req. in debug_requirements() 2154 if (req->symbol_type == SYM_CLASSES) { in print_missing_requirements() 2173 symtab_names[req->symbol_type], in print_missing_requirements() [all …]
|