HomeSort by relevance Sort by last modified time
    Searched refs:StacktraceEntry (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/tools/android/heap_profiler/
heap_profiler.h 30 typedef struct StacktraceEntry {
41 struct StacktraceEntry* next;
42 } StacktraceEntry;
45 // a give code path (identified by the corresponding StacktraceEntry).
51 StacktraceEntry* st; // NULL == free entry.
63 StacktraceEntry* stack_traces; // Start of the StacktraceEntry pool.
heap_profiler.c 76 static StacktraceEntry stack_traces[ST_ENTRIES_MAX];
77 static StacktraceEntry* stack_traces_freelist;
78 static StacktraceEntry* stack_traces_ht[ST_HASHTABLE_BUCKETS];
81 static StacktraceEntry* record_stacktrace(uintptr_t* frames, uint32_t depth) {
93 StacktraceEntry* st = stack_traces_ht[slot];
128 static void free_stacktrace(StacktraceEntry* st) {
134 StacktraceEntry** prev = &stack_traces_ht[slot];
172 uintptr_t start, uintptr_t end, StacktraceEntry* st, uint32_t flags) {
260 StacktraceEntry* st = alloc->st;
316 // Now update the StackTraceEntry the Alloc was pointing to, eventuall
    [all...]
heap_profiler_integrationtest.cc 69 bool StackTraceContains(const StacktraceEntry* s, AllocatorFn fn) {
83 const StacktraceEntry* LookupStackTrace(size_t size, AllocatorFn fn) {
86 const StacktraceEntry* st = &stats->stack_traces[i];
108 const StacktraceEntry* st1 = LookupStackTrace(kSize1, inner_fn);
109 const StacktraceEntry* st2 = LookupStackTrace(kSize2, inner_fn);
110 const StacktraceEntry* st3 = LookupStackTrace(kSize3, inner_fn);
heap_dump.c 149 sizeof(StacktraceEntry);
181 StacktraceEntry st;
heap_profiler_unittest.cc 62 std::map<StacktraceEntry*, uintptr_t> stacktrace_bytes_by_alloc;
73 StacktraceEntry* st = &stats_.stack_traces[i];

Completed in 1672 milliseconds