Searched refs:LibIgnore (Results 1 - 3 of 3) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libignore.h10 // LibIgnore allows to ignore all interceptors called from a particular set
11 // of dynamic libraries. LibIgnore can be initialized with several templates
27 class LibIgnore { class in namespace:__sanitizer
29 explicit LibIgnore(LinkerInitialized);
67 // Disallow copying of LibIgnore objects.
68 LibIgnore(const LibIgnore&); // not implemented
69 void operator = (const LibIgnore&); // not implemented
72 inline bool LibIgnore::IsIgnored(uptr pc) const {
H A Dsanitizer_libignore.cc21 LibIgnore::LibIgnore(LinkerInitialized) { function in class:__sanitizer::LibIgnore
24 void LibIgnore::AddIgnoredLibrary(const char *name_templ) {
38 void LibIgnore::OnLibraryLoaded(const char *name) {
96 void LibIgnore::OnLibraryUnloaded() {
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc237 static ALIGNED(64) char libignore_placeholder[sizeof(LibIgnore)];
238 static LibIgnore *libignore() {
239 return reinterpret_cast<LibIgnore*>(&libignore_placeholder[0]);

Completed in 161 milliseconds