Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp1275 struct InterceptorContext { struct
1279 InterceptorContext() in InterceptorContext() argument
1284 alignas(64) static char interceptor_placeholder[sizeof(InterceptorContext)];
1285 InterceptorContext *interceptor_ctx() { in interceptor_ctx()
1286 return reinterpret_cast<InterceptorContext*>(&interceptor_placeholder[0]); in interceptor_ctx()
1793 new(interceptor_ctx()) InterceptorContext(); in InitializeInterceptors()
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp211 struct InterceptorContext { struct
223 InterceptorContext() : libignore(LINKER_INITIALIZED), atexit_mu(MutexTypeAtExit), AtExitStack() {} in InterceptorContext() argument
226 alignas(64) static char interceptor_placeholder[sizeof(InterceptorContext)];
227 InterceptorContext *interceptor_ctx() { in interceptor_ctx()
228 return reinterpret_cast<InterceptorContext*>(&interceptor_placeholder[0]); in interceptor_ctx()
2972 new(interceptor_ctx()) InterceptorContext(); in InitializeInterceptors()