Home
last modified time | relevance | path

Searched refs:SCUDO_PREFIX (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dwrappers_c.inc9 #ifndef SCUDO_PREFIX
10 #error "Define SCUDO_PREFIX prior to including this file!"
66 INTERFACE WEAK void SCUDO_PREFIX(free)(void *ptr) {
109 INTERFACE WEAK void *SCUDO_PREFIX(malloc)(size_t size) {
220 INTERFACE WEAK void *SCUDO_PREFIX(valloc)(size_t size) {
228 INTERFACE WEAK int SCUDO_PREFIX(malloc_iterate)(
237 INTERFACE WEAK void SCUDO_PREFIX(malloc_disable)() {
241 void SCUDO_PREFIX(malloc_postinit)() {
243 pthread_atfork(SCUDO_PREFIX(malloc_disable), SCUDO_PREFIX(malloc_enable),
244 SCUDO_PREFIX(malloc_enable));
[all …]
H A Dwrappers_c_bionic.cpp25 #define SCUDO_PREFIX(name) CONCATENATE(scudo_, name) macro
28 extern "C" void SCUDO_PREFIX(malloc_postinit)();
30 static scudo::Allocator<scudo::Config, SCUDO_PREFIX(malloc_postinit)>
36 #undef SCUDO_PREFIX
H A Dwrappers_c.cpp24 #define SCUDO_PREFIX(name) name macro
31 scudo::Allocator<scudo::Config, SCUDO_PREFIX(malloc_postinit)> SCUDO_ALLOCATOR;
36 #undef SCUDO_PREFIX