HomeSort by relevance Sort by last modified time
    Searched defs:stack_id (Results 1 - 9 of 9) sorted by null

  /external/compiler-rt/lib/lsan/
lsan_common_linux.cc 95 static uptr GetCallerPC(u32 stack_id, StackDepotReverseMap *map) {
96 CHECK(stack_id);
98 const uptr *trace = map->Get(stack_id, &size);
119 u32 stack_id = m.stack_trace_id(); local
121 if (stack_id > 0)
122 caller_pc = GetCallerPC(stack_id, param->stack_depot_reverse_map);
  /external/compiler-rt/lib/asan/
asan_globals.cc 51 u32 stack_id; member in struct:__asan::GlobalRegistrationSite
98 return grs.stack_id;
181 u32 stack_id = StackDepotPut(stack.trace, stack.size); local
186 GlobalRegistrationSite site = {stack_id, &globals[0], &globals[n - 1]};
190 Printf("=== ID %d; %p %p\n", stack_id, &globals[0], &globals[n - 1]);
asan_thread.h 40 stack_id(0),
45 u32 stack_id; member in class:__asan::AsanThreadContext
  /external/chromium_org/v8/src/third_party/vtune/
jitprofiling.h 194 unsigned int stack_id; member in struct:_iJIT_Method_NIDS
  /external/compiler-rt/lib/msan/
msan_allocator.cc 105 u32 stack_id = StackDepotPut(stack->trace, stack->size); local
106 CHECK(stack_id);
108 ChainedOriginDepotPut(stack_id, Origin::kHeapRoot, &id);
128 u32 stack_id = StackDepotPut(stack->trace, stack->size); local
129 CHECK(stack_id);
131 ChainedOriginDepotPut(stack_id, Origin::kHeapRoot, &id);
msan_report.cc 71 u32 stack_id = ChainedOriginDepotGet(o.id(), &prev_id); local
76 const char *so = GetStackOriginDescr(stack_id, &pc);
81 const uptr *trace = StackDepotGet(stack_id, &size);
89 const uptr *trace = StackDepotGet(stack_id, &size);
msan_interceptors.cc 846 u32 stack_id = StackDepotPut(stack.trace, stack.size); local
848 ChainedOriginDepotPut(stack_id, Origin::kHeapRoot, &id);
    [all...]
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.h 155 unsigned int stack_id; member in struct:_iJIT_Method_NIDS
  /external/lldb/source/Target/
Thread.cpp 160 Thread::ThreadEventData::ThreadEventData (const lldb::ThreadSP thread_sp, const StackID &stack_id) :
162 m_stack_id (stack_id)
207 StackID stack_id; local
210 stack_id = event_data->GetStackID();
211 return stack_id;
    [all...]

Completed in 3177 milliseconds