Home
last modified time | relevance | path

Searched defs:DlsymAlloc (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocation_functions.cpp24 struct DlsymAlloc : public DlSymAllocator<DlsymAlloc> { struct
25 static bool UseImpl() { return !hwasan_inited; } in UseImpl()
26 static void OnAllocate(const void *ptr, uptr size) { in OnAllocate()
33 static void OnFree(const void *ptr, uptr size) { in OnFree()
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cpp33 struct DlsymAlloc : public DlSymAllocator<DlsymAlloc> { struct
50 if (DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_malloc_linux.cpp33 struct DlsymAlloc : public DlSymAllocator<DlsymAlloc> { struct
38 if (DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_interceptors.cpp32 struct DlsymAlloc : public DlSymAllocator<DlsymAlloc> { struct
52 if (DlsymAlloc::Use()) in INTERCEPTOR() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp47 struct DlsymAlloc : DlSymAllocator<DlsymAlloc> { struct
48 static bool UseImpl() { return lsan_init_is_running; } in UseImpl()
72 if (DlsymAlloc::Use()) in INTERCEPTOR() argument
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp81 struct DlsymAlloc : public DlSymAllocator<DlsymAlloc> { struct
82 static bool UseImpl() { return !msan_inited; } in UseImpl()