Searched refs:__asan_init (Results 1 - 8 of 8) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_android_stub.cc4 typeof(__asan_init) *__asan_preinit =__asan_init;
H A Dasan_init_version.h12 // This header defines a versioned __asan_init function to be called at the
33 #define __asan_init __asan_init_v4 macro
H A Dasan_preinit.cc12 // Call __asan_init at the very early stage of process startup.
18 // On Linux, we force __asan_init to be called before anyone else
24 void (*__local_asan_preinit)(void) = __asan_init;
27 // to __asan_init into the global list of C initializers.
30 __declspec(allocate(".CRT$XIB")) void (*__asan_preinit)() = __asan_init;
H A Dasan_win.cc31 __asan_init();
H A Dasan_dll_thunk.cc76 // after __asan_init, thus an empty implementation is sufficient.
90 // functions since it can be called before __asan_init, but that would lead to
199 // want to call it in the __asan_init interceptor.
205 // Manually wrap __asan_init as we need to initialize
207 void __asan_init() { function
210 // __asan_init is expected to be called by only one thread.
335 // We want to call __asan_init before C/C++ initializers/constructors are
343 __asan_init();
H A Dasan_mac.cc67 void __asan_init();
110 CHECK(dladdr((void*)((uptr)__asan_init), &info));
H A Dasan_rtl.cc713 __asan_init();
770 void __asan_init() { function in namespace:__asan
/external/compiler-rt/lib/asan/tests/
H A Dasan_noinst_test.cc43 // Make sure __asan_init is called before any test case is run.
45 AsanInitCaller() { __asan_init(); }

Completed in 917 milliseconds