/external/chromium-trace/catapult/systrace/profile_chrome/third_party/ |
D | perf_to_tracing.py | 74 def __init__(self, stack_id, name, category): argument 75 self.stack_id = stack_id 86 if self.stack_id: 93 out_dict[self.stack_id] = node_dict 113 def __init__(self, stack_id, ts, cpu, tid, weight, samp_type, comm): argument 114 self.stack_id = stack_id 130 assert self.stack_id != 0 131 if self.stack_id: 132 ret['sf'] = self.stack_id # Stack frame id 187 new_node.parent_id = stack_frame.stack_id [all …]
|
/external/compiler-rt/lib/msan/ |
D | msan_origin.h | 89 u32 stack_id = ChainedOriginDepotGet(getChainedId(), &prev_id); in getNextChainedOrigin() local 90 if (stack) *stack = StackDepotGet(stack_id); in getNextChainedOrigin() 104 u32 stack_id = StackDepotPut(*stack); in CreateHeapOrigin() local 105 CHECK(stack_id); in CreateHeapOrigin() 106 CHECK((stack_id & kHeapIdMask) == stack_id); in CreateHeapOrigin() 107 return Origin(stack_id); in CreateHeapOrigin()
|
/external/compiler-rt/lib/lsan/ |
D | lsan_common_linux.cc | 94 static uptr GetCallerPC(u32 stack_id, StackDepotReverseMap *map) { in GetCallerPC() argument 95 CHECK(stack_id); in GetCallerPC() 96 StackTrace stack = map->Get(stack_id); in GetCallerPC() 118 u32 stack_id = m.stack_trace_id(); in ProcessPlatformSpecificAllocationsCb() local 120 if (stack_id > 0) in ProcessPlatformSpecificAllocationsCb() 121 caller_pc = GetCallerPC(stack_id, param->stack_depot_reverse_map); in ProcessPlatformSpecificAllocationsCb()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_ignoreset.cc | 23 void IgnoreSet::Add(u32 stack_id) { in Add() argument 27 if (stacks_[i] == stack_id) in Add() 30 stacks_[size_++] = stack_id; in Add()
|
D | tsan_ignoreset.h | 26 void Add(u32 stack_id);
|
D | tsan_rtl_report.cc | 104 ReportStack *SymbolizeStackId(u32 stack_id) { in SymbolizeStackId() argument 105 if (stack_id == 0) in SymbolizeStackId() 107 StackTrace stack = StackDepotGet(stack_id); in SymbolizeStackId() 359 void ScopedReport::AddSleep(u32 stack_id) { in AddSleep() argument 360 rep_->sleep = SymbolizeStackId(stack_id); in AddSleep()
|
D | tsan_rtl.h | 570 void AddSleep(u32 stack_id); 649 ReportStack *SymbolizeStackId(u32 stack_id);
|
/external/v8/src/third_party/vtune/ |
D | jitprofiling.cc | 226 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = (threadStack->CurrentStack)--; in iJIT_NotifyEvent() 253 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = ++(threadStack->CurrentStack) + 1; in iJIT_NotifyEvent() 255 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id > threadStack->TopStack) in iJIT_NotifyEvent() 256 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = (unsigned int)-1; in iJIT_NotifyEvent()
|
D | jitprofiling.h | 194 unsigned int stack_id; member
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
D | jitprofiling.c | 192 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent() 222 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent() 225 if (((piJIT_Method_NIDS) EventSpecificData)->stack_id in iJIT_NotifyEvent() 227 ((piJIT_Method_NIDS) EventSpecificData)->stack_id = in iJIT_NotifyEvent()
|
D | jitprofiling.h | 155 unsigned int stack_id; member
|
/external/compiler-rt/lib/asan/ |
D | asan_globals.cc | 53 u32 stack_id; member 101 return grs.stack_id; in FindRegistrationSite() 310 u32 stack_id = StackDepotPut(stack); in __asan_register_globals() local 315 GlobalRegistrationSite site = {stack_id, &globals[0], &globals[n - 1]}; in __asan_register_globals() 319 Printf("=== ID %d; %p %p\n", stack_id, &globals[0], &globals[n - 1]); in __asan_register_globals()
|
D | asan_thread.h | 43 destructor_iterations(GetPthreadDestructorIterations()), stack_id(0), in AsanThreadContext() 47 u32 stack_id; variable
|
D | asan_thread.cc | 38 stack_id = StackDepotPut(*args->stack); in OnCreated()
|
D | asan_report.cc | 617 StackDepotGet(context->stack_id).Print(); in DescribeThread()
|