OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PoisonShadow
(Results
1 - 7
of
7
) sorted by null
/external/compiler-rt/lib/asan/
asan_poisoning.h
27
void
PoisonShadow
(uptr addr, uptr size, u8 value);
36
// Fast versions of
PoisonShadow
and PoisonShadowPartialRightRedzone that
asan_poisoning.cc
34
void
PoisonShadow
(uptr addr, uptr size, u8 value) {
297
PoisonShadow
(addr, aligned_size,
370
PoisonShadow
(a, b1 - a, 0);
371
PoisonShadow
(b2, c - b2, kAsanContiguousContainerOOBMagic);
asan_fake_stack.cc
29
// For small size classes inline
PoisonShadow
for better performance.
41
PoisonShadow
(ptr, size, static_cast<u8>(magic));
81
PoisonShadow
(reinterpret_cast<uptr>(this), RequiredSize(stack_size_log()),
asan_thread.cc
208
PoisonShadow
(stack_bottom_, stack_top_ - stack_bottom_, 0);
210
PoisonShadow
(tls_begin_, tls_end_ - tls_begin_, 0);
asan_allocator.cc
141
PoisonShadow
(m->Beg(),
177
PoisonShadow
(p, size, kAsanHeapLeftRedzoneMagic);
184
PoisonShadow
(p, size, 0);
385
PoisonShadow
((uptr)allocated, allocated_size, kAsanHeapLeftRedzoneMagic);
428
PoisonShadow
(user_beg, size_rounded_down_to_granularity, 0);
490
PoisonShadow
(m->Beg(),
asan_rtl.cc
107
PoisonShadow
(ptr, size, kAsanInternalHeapMagic);
612
PoisonShadow
(bottom, top - bottom, 0);
asan_interceptors.cc
318
PoisonShadow
(bottom, ssize, 0);
Completed in 95 milliseconds