HomeSort by relevance Sort by last modified time
    Searched refs:__asan_init (Results 1 - 11 of 11) sorted by null

  /frameworks/av/media/libmedia/
MediaUtils.h 22 extern "C" void __asan_init(void) __attribute__((weak));
25 return &__asan_init != 0;
  /external/compiler-rt/lib/asan/
asan_preinit.cc 12 // Call __asan_init at the very early stage of process startup.
24 void (*__local_asan_preinit)(void) = __asan_init;
asan_win_dll_thunk.cc 75 // after __asan_init, thus an empty implementation is sufficient.
89 // functions since it can be called before __asan_init, but that would lead to
198 // want to call it in the __asan_init interceptor.
204 // Manually wrap __asan_init as we need to initialize
206 void __asan_init() { function
209 // __asan_init is expected to be called by only one thread.
212 fn = (fntype)getRealProcAddressOrDie("__asan_init");
423 // We want to call __asan_init before C/C++ initializers/constructors are
431 __asan_init();
asan_interface_internal.h 30 SANITIZER_INTERFACE_ATTRIBUTE void __asan_init();
asan_win.cc 36 __asan_init();
292 // the floor, so we can't install our handler inside __asan_init.
asan_rtl.cc 641 void __asan_init() { function in namespace:__asan
  /external/vboot_reference/scripts/image_signing/
ensure_not_ASAN.sh 31 grep -q __asan_init; then
  /external/minijail/
util.h 72 void __asan_init(void) __attribute__((weak));
76 return &__asan_init != 0;
  /external/honggfuzz/libhfuzz/
instrument.c 243 void __asan_init(void) __attribute__((weak));
244 if (__asan_init) {
245 __asan_init();
  /external/swiftshader/third_party/subzero/runtime/
szrt_asan.c 96 void __asan_init(int, void **, int *);
169 void __asan_init(int n_rzs, void **rzs, int *rz_sizes) { function
  /external/compiler-rt/lib/asan/tests/
asan_noinst_test.cc 34 // Make sure __asan_init is called before any test case is run.
37 __asan_init();

Completed in 251 milliseconds