/external/compiler-rt/test/asan/TestCases/ |
malloc_context_size.cc | 2 // RUN: %env_asan_opts=malloc_context_size=0:fast_unwind_on_malloc=0 not %run %t 2>&1 | FileCheck %s 3 // RUN: %env_asan_opts=malloc_context_size=0:fast_unwind_on_malloc=1 not %run %t 2>&1 | FileCheck %s 4 // RUN: %env_asan_opts=malloc_context_size=1:fast_unwind_on_malloc=0 not %run %t 2>&1 | FileCheck %s 5 // RUN: %env_asan_opts=malloc_context_size=1:fast_unwind_on_malloc=1 not %run %t 2>&1 | FileCheck %s 6 // RUN: %env_asan_opts=malloc_context_size=2 not %run %t 2>&1 | FileCheck %s --check-prefix=TWO 25 // TWO-NEXT: #1 0x{{.*}} in main {{.*}}malloc_context_size.cc
|
invalid-free.cc | 5 // RUN: %env_asan_opts=malloc_context_size=0:fast_unwind_on_malloc=0 not %run %t 2>&1 | FileCheck %s 6 // RUN: %env_asan_opts=malloc_context_size=0:fast_unwind_on_malloc=1 not %run %t 2>&1 | FileCheck %s
|
double-free.cc | 5 // RUN: %env_asan_opts=malloc_context_size=0:fast_unwind_on_malloc=0 not %run %t 2>&1 | FileCheck %s 6 // RUN: %env_asan_opts=malloc_context_size=0:fast_unwind_on_malloc=1 not %run %t 2>&1 | FileCheck %s
|
deep_stack_uaf.cc | 4 // RUN: %env_asan_opts=malloc_context_size=120:redzone=512 not %run %t 2>&1 | FileCheck %s
|
/external/compiler-rt/lib/asan/ |
asan_activation.cc | 27 int malloc_context_size; member in struct:__asan::AsanDeactivatedFlags 53 cf.malloc_context_size = malloc_context_size; 72 malloc_context_size = cf.malloc_context_size; 81 "malloc_context_size %d, alloc_dealloc_mismatch %d, " 84 poison_heap, malloc_context_size, 98 asan_deactivated_flags.malloc_context_size = GetMallocContextSize(); 128 SetMallocContextSize(asan_deactivated_flags.malloc_context_size);
|
asan_stack.cc | 20 static atomic_uint32_t malloc_context_size; member in namespace:__asan 23 atomic_store(&malloc_context_size, size, memory_order_release); 27 return atomic_load(&malloc_context_size, memory_order_acquire);
|
asan_activation_flags.inc | 31 COMMON_ACTIVATION_FLAG(int, malloc_context_size)
|
asan_flags.cc | 66 cf.malloc_context_size = kDefaultMallocContextSize; 140 CHECK_LE((uptr)common_flags()->malloc_context_size, kStackTraceMax);
|
asan_rtl.cc | 391 Printf("malloc_context_size=%zu\n", 392 (uptr)common_flags()->malloc_context_size); 421 SetMallocContextSize(common_flags()->malloc_context_size);
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
malloc_delete_mismatch.cc | 13 // RUN: %env_asan_opts=alloc_dealloc_mismatch=1:malloc_context_size=0:fast_unwind_on_malloc=0 not %run %t 2>&1 | FileCheck %s 14 // RUN: %env_asan_opts=alloc_dealloc_mismatch=1:malloc_context_size=0:fast_unwind_on_malloc=1 not %run %t 2>&1 | FileCheck %s
|
/external/compiler-rt/lib/lsan/ |
lsan.h | 38 GET_STACK_TRACE(__sanitizer::common_flags()->malloc_context_size, \
|
lsan.cc | 45 cf.malloc_context_size = 30;
|
/external/compiler-rt/lib/msan/ |
msan_flags.inc | 35 "Like malloc_context_size, but for uninit stores.")
|
msan.cc | 141 cf.malloc_context_size = 20;
|
msan.h | 276 GetStackTrace(&stack, common_flags()->malloc_context_size, \
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_flag_parser.cc | 112 if (common_flags_dont_use.malloc_context_size < 1) 113 common_flags_dont_use.malloc_context_size = 1;
|
sanitizer_flags.inc | 48 COMMON_FLAG(int, malloc_context_size, 1,
|
/external/compiler-rt/lib/asan/scripts/ |
asan_device_setup | 312 ASAN_OPTIONS=start_deactivated=1,malloc_context_size=0
|
/prebuilts/clang/host/darwin-x86/clang-2812033/bin/ |
asan_device_setup | 305 ASAN_OPTIONS=start_deactivated=1,alloc_dealloc_mismatch=0,malloc_context_size=0
|
/prebuilts/clang/host/darwin-x86/clang-2812033/lib64/clang/3.8/lib/linux/ |
libclang_rt.asan-mips-android.so | |
/prebuilts/clang/host/darwin-x86/clang-3289846/bin/ |
asan_device_setup | 303 ASAN_OPTIONS=start_deactivated=1,malloc_context_size=0
|
/prebuilts/clang/host/darwin-x86/clang-3362437/bin/ |
asan_device_setup | 303 ASAN_OPTIONS=start_deactivated=1,malloc_context_size=0
|
/prebuilts/clang/host/darwin-x86/clang-3859424/bin/ |
asan_device_setup | 303 ASAN_OPTIONS=start_deactivated=1,malloc_context_size=0
|
/prebuilts/clang/host/darwin-x86/clang-3957855/bin/ |
asan_device_setup | 303 ASAN_OPTIONS=start_deactivated=1,malloc_context_size=0
|
/prebuilts/clang/host/darwin-x86/clang-3960126/bin/ |
asan_device_setup | 303 ASAN_OPTIONS=start_deactivated=1,malloc_context_size=0
|