Searched refs:PoisonShadow (Results 1 – 7 of 7) sorted by relevance
/external/compiler-rt/lib/asan/ |
D | asan_poisoning.cc | 34 void PoisonShadow(uptr addr, uptr size, u8 value) { in PoisonShadow() function 297 PoisonShadow(addr, aligned_size, in PoisonAlignedStackMemory() 370 PoisonShadow(a, b1 - a, 0); in __sanitizer_annotate_contiguous_container() 371 PoisonShadow(b2, c - b2, kAsanContiguousContainerOOBMagic); in __sanitizer_annotate_contiguous_container()
|
D | asan_allocator.cc | 141 PoisonShadow(m->Beg(), in Recycle() 177 PoisonShadow(p, size, kAsanHeapLeftRedzoneMagic); in OnMap() 184 PoisonShadow(p, size, 0); in OnUnmap() 385 PoisonShadow((uptr)allocated, allocated_size, kAsanHeapLeftRedzoneMagic); in Allocate() 428 PoisonShadow(user_beg, size_rounded_down_to_granularity, 0); in Allocate() 489 PoisonShadow(m->Beg(), in QuarantineChunk()
|
D | asan_fake_stack.cc | 41 PoisonShadow(ptr, size, static_cast<u8>(magic)); in SetShadow() 81 PoisonShadow(reinterpret_cast<uptr>(this), RequiredSize(stack_size_log()), in PoisonAll()
|
D | asan_poisoning.h | 27 void PoisonShadow(uptr addr, uptr size, u8 value);
|
D | asan_thread.cc | 277 PoisonShadow(stack_bottom_, stack_top_ - stack_bottom_, 0); in ClearShadowForThreadStackAndTLS() 279 PoisonShadow(tls_begin_, tls_end_ - tls_begin_, 0); in ClearShadowForThreadStackAndTLS()
|
D | asan_rtl.cc | 107 PoisonShadow(ptr, size, kAsanInternalHeapMagic); in OnLowLevelAllocate() 630 PoisonShadow(bottom, top - bottom, 0); in __asan_handle_no_return()
|
D | asan_interceptors.cc | 338 PoisonShadow(bottom, ssize, 0); in ClearShadowMemoryForContextStack()
|