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
22
void
PoisonShadow
(uptr addr, uptr size, u8 value);
31
// Fast versions of
PoisonShadow
and PoisonShadowPartialRightRedzone that
asan_fake_stack.cc
87
PoisonShadow
(mem, ClassMmapSize(i), 0);
136
PoisonShadow
(ptr, size, 0);
156
PoisonShadow
(ptr, size, kAsanStackAfterReturnMagic);
asan_poisoning.cc
20
void
PoisonShadow
(uptr addr, uptr size, u8 value) {
226
PoisonShadow
(addr, aligned_size,
asan_thread.cc
159
PoisonShadow
(stack_bottom_, stack_top_ - stack_bottom_, 0);
161
PoisonShadow
(tls_begin_, tls_end_ - tls_begin_, 0);
asan_allocator2.cc
35
PoisonShadow
(p, size, kAsanHeapLeftRedzoneMagic);
42
PoisonShadow
(p, size, 0);
276
PoisonShadow
(m->Beg(),
405
PoisonShadow
(user_beg, size_rounded_down_to_granularity, 0);
475
PoisonShadow
(m->Beg(),
asan_rtl.cc
237
PoisonShadow
(ptr, size, kAsanInternalHeapMagic);
430
PoisonShadow
(bottom, top - bottom, 0);
asan_interceptors.cc
198
PoisonShadow
(bottom, ssize, 0);
Completed in 32 milliseconds