HomeSort by relevance Sort by last modified time
    Searched refs:symbol_type (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/tools/deep_memory_profiler/lib/
symbol.py 103 def __init__(self, symbol_type, symbol_data_sources):
104 self._symbol_type = symbol_type
125 def update(self, symbol_type, bucket_set, symbol_finder, cache_f):
139 symbol_type: A type of symbols to update. It should be one of
146 self._load(cache_f, symbol_type)
149 address for address in bucket_set.iter_addresses(symbol_type)
150 if address not in self._symbol_mapping_caches[symbol_type])
163 self._symbol_mapping_caches[symbol_type][address] = stripped_symbol
166 def lookup(self, symbol_type, address):
170 symbol_type: A type of symbols to update. It should be one o
    [all...]
  /sdk/emulator/qtools/
coverage.cpp 22 class MyFrame : public StackFrame<symbol_type> {
40 const symbol_type *syma, *symb;
43 syma = static_cast<symbol_type const *>(a);
44 symb = static_cast<symbol_type const *>(b);
61 const symbol_type *syma, *symb;
63 syma = static_cast<symbol_type const *>(a);
64 symb = static_cast<symbol_type const *>(b);
96 symbol_type *function;
122 symbol_type *syms = trace->GetSymbols(&nsyms);
125 qsort(syms, nsyms, sizeof(symbol_type), cmp_sym_names)
    [all...]
parse_options-inl.h 18 typedef TraceReaderType::symbol_type symbol_type; typedef
22 symbol_type *kernel_sym;
23 symbol_type *library_sym;
28 inline bool IsValidEvent(BBEvent *event, symbol_type *sym)
53 inline symbol_type *GetSymbol(TraceReaderType *trace, int pid, uint32_t addr,
56 symbol_type *sym = trace->LookupFunction(pid, addr, time);
79 inline bool IsIncludedProcedure(symbol_type *sym)
88 inline bool IsExcludedProcedure(symbol_type *sym)
101 symbol_type **sym_ptr
    [all...]
profile_trace.cpp 26 const symbol_type *syma, *symb;
29 syma = static_cast<symbol_type const *>(a);
30 symb = static_cast<symbol_type const *>(b);
62 symbol_type dummy;
65 symbol_type *prev_sym = &dummy;
68 symbol_type *sym;
95 symbol_type *syms = trace->GetSymbols(&nsyms);
98 qsort(syms, nsyms, sizeof(symbol_type), cmp_sym_elapsed);
102 symbol_type *sym = syms;
callstack.h 19 // SYM is the symbol_type from the TraceReader<> template class. To
32 typedef SYM symbol_type; typedef in class:StackFrame
39 symbol_type *function; // the symbol for the function we entered
50 typedef typename FRAME::symbol_type symbol_type; typedef in class:CallStack
51 typedef typename FRAME::symbol_type::region_type region_type;
57 void updateStack(BBEvent *event, symbol_type *function);
79 Action getAction(BBEvent *event, symbol_type *function);
80 void doMethodAction(BBEvent *event, symbol_type *function);
82 void doSimplePush(symbol_type *function, uint32_t addr
    [all...]
trace_reader.h 44 } symbol_type; typedef in class:TraceReader
56 symbol_type *LookupFunctionByName(char *name) {
86 symbol_type *symbols;
195 symbol_type *current_method_sym;
206 symbol_type *LookupFunction(int pid, uint32_t addr, uint64_t time);
207 symbol_type *GetSymbols(int *num_syms);
215 symbol_type **psym,
234 void demangle_names(int nfuncs, symbol_type *functions);
243 symbol_type *FindFunction(uint32_t addr, int nsyms,
244 symbol_type *symbols, bool exact_match)
    [all...]
bb_dump.cpp 36 symbol_type *sym;
q2g.cpp 53 symbol_type *sym;
61 symbol_type *prev_sym = NULL;
q2dm.cpp 25 class MyFrame : public StackFrame<symbol_type> {
42 void push(symbol_type *sym) {
49 symbol_type* pop() {
66 symbol_type *frames[kNumStackFrames];
110 symbol_type *sym = fstack->pop();
171 symbol_type *function;
stack_dump.cpp 21 class MyFrame : public StackFrame<symbol_type> {
39 if (function->flags & symbol_type::kIsVectorTable)
120 symbol_type *function;
check_trace.cpp 38 symbol_type *sym;
dump_regions.cpp 34 symbol_type *dummy_sym;
bb2sym.cpp 15 symbol_type *sym;
78 symbol_type *sym;
read_trace.cpp 63 symbol_type *sym;
78 symbol_type *vm_sym = sym->vm_sym;
profile_pid.cpp 57 symbol_type *dummy_sym;
check_stack.cpp 18 typedef CallStack<StackFrame<symbol_type> > CallStackType;
109 symbol_type *function;
111 symbol_type *sym;
  /external/checkpolicy/
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);
module_compiler.c 126 int declare_symbol(uint32_t symbol_type,
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,
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, key))
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
vdso_support.h 91 int symbol_type, SymbolInfo *info_out) const;
elf_mem_image.h 110 int symbol_type, SymbolInfo *info_out) const;
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
vdso_support.h 91 int symbol_type, SymbolInfo *info_out) const;
elf_mem_image.h 110 int symbol_type, SymbolInfo *info_out) const;
  /external/chromium_org/tools/deep_memory_profiler/tests/
dmprof_test.py 30 def iter_addresses(self, symbol_type): # pylint: disable=W0613
109 def add(self, symbol_type, address, symbol):
110 self._symbol_caches[symbol_type][address] = symbol
112 def lookup(self, symbol_type, address):
113 symbol = self._symbol_caches[symbol_type].get(address)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
cs46xx_dsp_spos.h 71 int symbol_type; member in struct:dsp_symbol_entry
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
cs46xx_dsp_spos.h 71 int symbol_type; member in struct:dsp_symbol_entry

Completed in 267 milliseconds

1 2