Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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.cpp117 uintptr_t UncompressedBuffer[AllocationMetadata::kMaxTraceLengthToCollect]; in __gwp_asan_get_allocation_trace()
121 AllocationMetadata::kMaxTraceLengthToCollect); in __gwp_asan_get_allocation_trace()
141 uintptr_t UncompressedBuffer[AllocationMetadata::kMaxTraceLengthToCollect]; in __gwp_asan_get_deallocation_trace()
145 AllocationMetadata::kMaxTraceLengthToCollect); in __gwp_asan_get_deallocation_trace()
H A Dcommon.h70 static constexpr size_t kMaxTraceLengthToCollect = 128; member
/llvm-project-15.0.7/compiler-rt/lib/gwp_asan/tests/
H A Dbacktrace.cpp95 EXPECT_EQ(gwp_asan::AllocationMetadata::kMaxTraceLengthToCollect, in TEST()