Home
last modified time | relevance | path

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

/system/core/debuggerd/libdebuggerd/
Dgwp_asan.cpp104 constexpr size_t kMaxTraceLength = gwp_asan::AllocationMetadata::kMaxTraceLengthToCollect; variable
142 std::unique_ptr<uintptr_t[]> frames(new uintptr_t[kMaxTraceLength]); in AddCauseProtos()
146 __gwp_asan_get_allocation_trace(responsible_allocation_, frames.get(), kMaxTraceLength); in AddCauseProtos()
155 __gwp_asan_get_deallocation_trace(responsible_allocation_, frames.get(), kMaxTraceLength); in AddCauseProtos()
229 std::unique_ptr<uintptr_t[]> frames(new uintptr_t[kMaxTraceLength]); in DumpDeallocationTrace()
231 __gwp_asan_get_deallocation_trace(responsible_allocation_, frames.get(), kMaxTraceLength); in DumpDeallocationTrace()
256 std::unique_ptr<uintptr_t[]> frames(new uintptr_t[kMaxTraceLength]); in DumpAllocationTrace()
258 __gwp_asan_get_allocation_trace(responsible_allocation_, frames.get(), kMaxTraceLength); in DumpAllocationTrace()