Searched refs:TraceLength (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
H A Dbacktrace_linux_libc.cpp26 static void PrintBacktrace(uintptr_t *Trace, size_t TraceLength, argument
28 if (TraceLength == 0) {
34 backtrace_symbols(reinterpret_cast<void **>(Trace), TraceLength);
36 for (size_t i = 0; i < TraceLength; ++i) {
H A Dbacktrace_sanitizer_common.cpp47 static void PrintBacktrace(uintptr_t *Trace, size_t TraceLength, argument
51 StackTrace.size = TraceLength;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Doptions.h72 typedef void (*PrintBacktrace_t)(uintptr_t *TraceBuffer, size_t TraceLength,
H A Dguarded_pool_allocator.cpp47 void defaultPrintStackTrace(uintptr_t *Trace, size_t TraceLength, argument
49 if (TraceLength == 0)
52 for (size_t i = 0; i < TraceLength; ++i) {
512 size_t TraceLength = Backtrace(Trace, kMaximumStackFramesForCrashTrace); local
514 PrintBacktrace(Trace, TraceLength, Printf);

Completed in 105 milliseconds