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.cpp1249 struct InterceptorContext { struct
1253 InterceptorContext() in InterceptorContext() argument
1258 alignas(64) static char interceptor_placeholder[sizeof(InterceptorContext)];
1259 InterceptorContext *interceptor_ctx() { in interceptor_ctx()
1260 return reinterpret_cast<InterceptorContext*>(&interceptor_placeholder[0]); in interceptor_ctx()
1767 new(interceptor_ctx()) InterceptorContext(); in InitializeInterceptors()
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp208 struct InterceptorContext { struct
220 InterceptorContext() : libignore(LINKER_INITIALIZED), atexit_mu(MutexTypeAtExit), AtExitStack() {} in InterceptorContext() argument
223 alignas(64) static char interceptor_placeholder[sizeof(InterceptorContext)];
224 InterceptorContext *interceptor_ctx() { in interceptor_ctx()
225 return reinterpret_cast<InterceptorContext*>(&interceptor_placeholder[0]); in interceptor_ctx()
2893 new(interceptor_ctx()) InterceptorContext(); in InitializeInterceptors()