Home
last modified time | relevance | path

Searched refs:kMaxTraceLengthToCollect (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dcommon.cpp38 constexpr size_t AllocationMetadata::kMaxTraceLengthToCollect; member in gwp_asan::AllocationMetadata
62 uintptr_t UncompressedBuffer[kMaxTraceLengthToCollect]; in RecordBacktrace()
64 Backtrace(UncompressedBuffer, kMaxTraceLengthToCollect); in RecordBacktrace()
68 if (BacktraceLength > kMaxTraceLengthToCollect) in RecordBacktrace()
69 BacktraceLength = kMaxTraceLengthToCollect; in RecordBacktrace()
H A Dcrash_handler.cpp125 uintptr_t UncompressedBuffer[AllocationMetadata::kMaxTraceLengthToCollect]; in __gwp_asan_get_allocation_trace()
129 AllocationMetadata::kMaxTraceLengthToCollect); in __gwp_asan_get_allocation_trace()
149 uintptr_t UncompressedBuffer[AllocationMetadata::kMaxTraceLengthToCollect]; in __gwp_asan_get_deallocation_trace()
153 AllocationMetadata::kMaxTraceLengthToCollect); in __gwp_asan_get_deallocation_trace()
H A Dcommon.h70 static constexpr size_t kMaxTraceLengthToCollect = 128; member