Lines Matching refs:stack

99     BufferedStackTrace stack;  in NsanAllocate()  local
100 GET_FATAL_STACK_TRACE_IF_EMPTY(&stack); in NsanAllocate()
101 ReportAllocationSizeTooBig(size, max_malloc_size, &stack); in NsanAllocate()
106 BufferedStackTrace stack; in NsanAllocate() local
107 GET_FATAL_STACK_TRACE_IF_EMPTY(&stack); in NsanAllocate()
108 ReportRssLimitExceeded(&stack); in NsanAllocate()
124 BufferedStackTrace stack; in NsanAllocate() local
125 GET_FATAL_STACK_TRACE_IF_EMPTY(&stack); in NsanAllocate()
126 ReportOutOfMemory(size, &stack); in NsanAllocate()
182 BufferedStackTrace stack; in NsanCalloc() local
183 GET_FATAL_STACK_TRACE_IF_EMPTY(&stack); in NsanCalloc()
184 ReportCallocOverflow(nmemb, size, &stack); in NsanCalloc()
239 BufferedStackTrace stack; in nsan_reallocarray() local
240 GET_FATAL_STACK_TRACE_IF_EMPTY(&stack); in nsan_reallocarray()
241 ReportReallocArrayOverflow(nmemb, size, &stack); in nsan_reallocarray()
256 BufferedStackTrace stack; in nsan_pvalloc() local
257 GET_FATAL_STACK_TRACE_IF_EMPTY(&stack); in nsan_pvalloc()
258 ReportPvallocOverflow(size, &stack); in nsan_pvalloc()
270 BufferedStackTrace stack; in nsan_aligned_alloc() local
271 GET_FATAL_STACK_TRACE_IF_EMPTY(&stack); in nsan_aligned_alloc()
272 ReportInvalidAlignedAllocAlignment(size, alignment, &stack); in nsan_aligned_alloc()
282 BufferedStackTrace stack; in nsan_memalign() local
283 GET_FATAL_STACK_TRACE_IF_EMPTY(&stack); in nsan_memalign()
284 ReportInvalidAllocationAlignment(alignment, &stack); in nsan_memalign()
293 BufferedStackTrace stack; in nsan_posix_memalign() local
294 ReportInvalidPosixMemalignAlignment(alignment, &stack); in nsan_posix_memalign()