Searched refs:free_stack (Results 1 – 8 of 8) sorted by relevance
/external/compiler-rt/lib/asan/ |
D | asan_report.h | 57 BufferedStackTrace *free_stack); 58 void ReportDoubleFree(uptr addr, BufferedStackTrace *free_stack); 59 void ReportFreeNotMalloced(uptr addr, BufferedStackTrace *free_stack); 60 void ReportAllocTypeMismatch(uptr addr, BufferedStackTrace *free_stack,
|
D | asan_report.cc | 562 StackTrace free_stack = chunk.GetFreeStack(); in DescribeHeapAddress() local 563 free_stack.Print(); in DescribeHeapAddress() 799 void ReportDoubleFree(uptr addr, BufferedStackTrace *free_stack) { in ReportDoubleFree() argument 810 CHECK_GT(free_stack->size, 0); in ReportDoubleFree() 812 GET_STACK_TRACE_FATAL(free_stack->trace[0], free_stack->top_frame_bp); in ReportDoubleFree() 819 BufferedStackTrace *free_stack) { in ReportNewDeleteSizeMismatch() argument 833 CHECK_GT(free_stack->size, 0); in ReportNewDeleteSizeMismatch() 835 GET_STACK_TRACE_FATAL(free_stack->trace[0], free_stack->top_frame_bp); in ReportNewDeleteSizeMismatch() 843 void ReportFreeNotMalloced(uptr addr, BufferedStackTrace *free_stack) { in ReportFreeNotMalloced() argument 853 CHECK_GT(free_stack->size, 0); in ReportFreeNotMalloced() [all …]
|
/external/llvm-project/compiler-rt/lib/asan/ |
D | asan_report.h | 54 BufferedStackTrace *free_stack); 55 void ReportDoubleFree(uptr addr, BufferedStackTrace *free_stack); 56 void ReportFreeNotMalloced(uptr addr, BufferedStackTrace *free_stack); 57 void ReportAllocTypeMismatch(uptr addr, BufferedStackTrace *free_stack,
|
D | asan_report.cpp | 220 void ReportDoubleFree(uptr addr, BufferedStackTrace *free_stack) { in ReportDoubleFree() argument 222 ErrorDoubleFree error(GetCurrentTidOrInvalid(), free_stack, addr); in ReportDoubleFree() 228 BufferedStackTrace *free_stack) { in ReportNewDeleteTypeMismatch() argument 230 ErrorNewDeleteTypeMismatch error(GetCurrentTidOrInvalid(), free_stack, addr, in ReportNewDeleteTypeMismatch() 235 void ReportFreeNotMalloced(uptr addr, BufferedStackTrace *free_stack) { in ReportFreeNotMalloced() argument 237 ErrorFreeNotMalloced error(GetCurrentTidOrInvalid(), free_stack, addr); in ReportFreeNotMalloced() 241 void ReportAllocTypeMismatch(uptr addr, BufferedStackTrace *free_stack, in ReportAllocTypeMismatch() argument 245 ErrorAllocTypeMismatch error(GetCurrentTidOrInvalid(), free_stack, addr, in ReportAllocTypeMismatch()
|
D | asan_errors.cpp | 92 CHECK_GT(free_stack->size, 0); in Print() 94 GET_STACK_TRACE_FATAL(free_stack->trace[0], free_stack->top_frame_bp); in Print() 111 CHECK_GT(free_stack->size, 0); in Print() 113 GET_STACK_TRACE_FATAL(free_stack->trace[0], free_stack->top_frame_bp); in Print()
|
D | asan_errors.h | 82 const BufferedStackTrace *free_stack; member 91 free_stack(stack), in ErrorNewDeleteTypeMismatch() 100 const BufferedStackTrace *free_stack; member 106 free_stack(stack), in ErrorFreeNotMalloced()
|
D | asan_descriptions.cpp | 425 StackTrace free_stack = GetStackTraceFromId(free_stack_id); in Print() local 426 free_stack.Print(); in Print()
|
/external/pcre/dist2/src/ |
D | pcre2_jit_compile.c | 3085 static SLJIT_INLINE void free_stack(compiler_common *common, int size) in free_stack() function 9580 free_stack(common, callout_arg_size); in compile_callout_matchingpath() 9676 free_stack(common, 1); in compile_assert_matchingpath() 9782 free_stack(common, extrasize); in compile_assert_matchingpath() 9899 free_stack(common, 1); in compile_assert_matchingpath() 9903 free_stack(common, extrasize); in compile_assert_matchingpath() 9911 free_stack(common, framesize + extrasize - 1); in compile_assert_matchingpath() 9915 free_stack(common, framesize + extrasize); in compile_assert_matchingpath() 10001 free_stack(common, 1); in compile_assert_matchingpath() 10005 free_stack(common, extrasize); in compile_assert_matchingpath() [all …]
|