Lines Matching defs:trace
57 static void CopyTrace(SymbolizedStack *first_frame, void **trace,
62 trace[i++] = (void *)frame->info.address;
100 int __tsan_get_report_stack(void *report, uptr idx, void **trace,
105 if (stack) CopyTrace(stack->frames, trace, trace_size);
111 int *size, int *write, int *atomic, void **trace,
121 if (mop->stack) CopyTrace(mop->stack->frames, trace, trace_size);
128 int *fd, int *suppressable, void **trace,
140 if (loc->stack) CopyTrace(loc->stack->frames, trace, trace_size);
156 int *destroyed, void **trace, uptr trace_size) {
163 if (mutex->stack) CopyTrace(mutex->stack->frames, trace, trace_size);
170 void **trace, uptr trace_size) {
179 if (thread->stack) CopyTrace(thread->stack->frames, trace, trace_size);
244 int __tsan_get_alloc_stack(uptr addr, uptr *trace, uptr size, int *thread_id,
262 for (uptr i = 0; i < size; i++) trace[i] = stack.trace[stack.size - i - 1];