/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 | 185 def iter_addresses(self, symbol_type): argument 186 if symbol_type in [FUNCTION_SYMBOLS, SOURCEFILE_SYMBOLS]:
|
/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/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/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/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 2009 req->symbol_type = i; in is_decl_requires_met() 2058 req->symbol_type = SYM_CLASSES; in is_decl_requires_met() 2088 if (req.symbol_type == SYM_CLASSES) { in debug_requirements() 2117 symtab_names[req.symbol_type], in debug_requirements() 2119 symbol_type][req. in debug_requirements() 2127 symtab_names[req.symbol_type], in debug_requirements() 2129 symbol_type][req. in debug_requirements() 2148 if (req->symbol_type == SYM_CLASSES) { in print_missing_requirements() 2167 symtab_names[req->symbol_type], in print_missing_requirements() [all …]
|
/external/checkpolicy/test/ |
D | dispol.c | 322 static void display_id(policydb_t *p, FILE *fp, uint32_t symbol_type, in display_id() argument 325 char *id = p->sym_val_to_name[symbol_type][symbol_value]; in display_id()
|
D | dismod.c | 101 static void display_id(policydb_t * p, FILE * fp, uint32_t symbol_type, in display_id() argument 104 char *id = p->sym_val_to_name[symbol_type][symbol_value]; in display_id() 106 (scope_datum_t *) hashtab_search(p->scope[symbol_type].table, id); in display_id()
|
/external/linux-tools-perf/util/ |
D | symbol.c | 81 bool symbol_type__is_a(char symbol_type, enum map_type map_type) in symbol_type__is_a() argument 85 return symbol_type == 'T' || symbol_type == 'W'; in symbol_type__is_a() 87 return symbol_type == 'D' || symbol_type == 'd'; in symbol_type__is_a() 464 char symbol_type; in kallsyms__parse() local 479 symbol_type = toupper(line[len]); in kallsyms__parse() 500 prev_symbol_type = symbol_type; in kallsyms__parse()
|
D | symbol.h | 267 bool symbol_type__is_a(char symbol_type, enum map_type map_type);
|
/external/chromium_org/third_party/sqlite/src/tool/ |
D | lemon.c | 152 enum symbol_type { enum 166 enum symbol_type type; /* Symbols are all either TERMINALS or NTs */
|