Home
last modified time | relevance | path

Searched refs:InterceptorContext (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp1094 struct InterceptorContext { struct
1098 InterceptorContext() in InterceptorContext() function
1103 static ALIGNED(64) char interceptor_placeholder[sizeof(InterceptorContext)];
1104 InterceptorContext *interceptor_ctx() { in interceptor_ctx()
1105 return reinterpret_cast<InterceptorContext*>(&interceptor_placeholder[0]); in interceptor_ctx()
1609 new(interceptor_ctx()) InterceptorContext(); in InitializeInterceptors()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp190 struct InterceptorContext { struct
202 InterceptorContext() : libignore(LINKER_INITIALIZED), atexit_mu(MutexTypeAtExit), AtExitStack() {} in InterceptorContext() function
205 static ALIGNED(64) char interceptor_placeholder[sizeof(InterceptorContext)];
206 InterceptorContext *interceptor_ctx() { in interceptor_ctx()
207 return reinterpret_cast<InterceptorContext*>(&interceptor_placeholder[0]); in interceptor_ctx()
2734 new(interceptor_ctx()) InterceptorContext(); in InitializeInterceptors()