Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/compiler-rt/lib/hwasan/
Dhwasan_allocation_functions.cpp25 struct DlsymAlloc : public DlSymAllocator<DlsymAlloc> { struct
76 if (DlsymAlloc::PointerIsMine(ptr)) in __sanitizer_free()
77 return DlsymAlloc::Free(ptr); in __sanitizer_free()
86 if (DlsymAlloc::PointerIsMine(ptr)) in __sanitizer_cfree()
87 return DlsymAlloc::Free(ptr); in __sanitizer_cfree()
114 if (DlsymAlloc::Use()) in __sanitizer_calloc()
115 return DlsymAlloc::Callocate(nmemb, size); in __sanitizer_calloc()
122 if (DlsymAlloc::Use() || DlsymAlloc::PointerIsMine(ptr)) in __sanitizer_realloc()
123 return DlsymAlloc::Realloc(ptr, size); in __sanitizer_realloc()
138 if (DlsymAlloc::Use()) in __sanitizer_malloc()
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/asan/
Dasan_malloc_linux.cpp33 struct DlsymAlloc : public DlSymAllocator<DlsymAlloc> { struct
50 if (DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR() argument
51 return DlsymAlloc::Free(ptr); in INTERCEPTOR()
58 if (DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR()
59 return DlsymAlloc::Free(ptr); in INTERCEPTOR()
66 if (DlsymAlloc::Use()) in INTERCEPTOR()
67 return DlsymAlloc::Allocate(size); in INTERCEPTOR()
74 if (DlsymAlloc::Use()) in INTERCEPTOR()
75 return DlsymAlloc::Callocate(nmemb, size); in INTERCEPTOR()
82 if (DlsymAlloc::Use() || DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR()
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/dfsan/
Ddfsan_interceptors.cpp32 struct DlsymAlloc : public DlSymAllocator<DlsymAlloc> { struct
52 if (DlsymAlloc::Use()) in INTERCEPTOR() argument
53 return DlsymAlloc::Callocate(nmemb, size); in INTERCEPTOR()
58 if (DlsymAlloc::Use() || DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR()
59 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
64 if (DlsymAlloc::Use()) in INTERCEPTOR()
65 return DlsymAlloc::Allocate(size); in INTERCEPTOR()
72 if (DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR()
73 return DlsymAlloc::Free(ptr); in INTERCEPTOR()
80 if (DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR()
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/lsan/
Dlsan_interceptors.cpp47 struct DlsymAlloc : DlSymAllocator<DlsymAlloc> { struct
72 if (DlsymAlloc::Use()) in INTERCEPTOR() argument
73 return DlsymAlloc::Allocate(size); in INTERCEPTOR()
80 if (DlsymAlloc::PointerIsMine(p)) in INTERCEPTOR()
81 return DlsymAlloc::Free(p); in INTERCEPTOR()
87 if (DlsymAlloc::Use()) in INTERCEPTOR()
88 return DlsymAlloc::Callocate(nmemb, size); in INTERCEPTOR()
95 if (DlsymAlloc::Use() || DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR()
96 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
Dsanitizer_malloc_mac.inc196 struct DlsymAlloc : public DlSymAllocator<DlsymAlloc> {
203 if (DlsymAlloc::Use())
204 return DlsymAlloc::Callocate(nmemb, size);
222 if (DlsymAlloc::PointerIsMine(ptr))
223 return DlsymAlloc::Free(ptr);
/openbsd/src/gnu/llvm/compiler-rt/lib/msan/
Dmsan_interceptors.cpp78 struct DlsymAlloc : public DlSymAllocator<DlsymAlloc> { struct
214 if (DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR()
215 return DlsymAlloc::Free(ptr); in INTERCEPTOR()
224 if (DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR()
225 return DlsymAlloc::Free(ptr); in INTERCEPTOR()
914 if (DlsymAlloc::Use()) in INTERCEPTOR()
915 return DlsymAlloc::Callocate(nmemb, size); in INTERCEPTOR()
920 if (DlsymAlloc::Use() || DlsymAlloc::PointerIsMine(ptr)) in INTERCEPTOR()
921 return DlsymAlloc::Realloc(ptr, size); in INTERCEPTOR()
932 if (DlsymAlloc::Use()) in INTERCEPTOR()
[all …]