Home
last modified time | relevance | path

Searched refs:ignore_interceptors (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_rtl.cpp23 thr->ignore_interceptors = true; in CurrentStackTrace()
25 thr->ignore_interceptors = false; in CurrentStackTrace()
33 thr->ignore_interceptors = true; in PrintStackTrace()
35 thr->ignore_interceptors = false; in PrintStackTrace()
112 if (thr->ignore_interceptors) in MutexBeforeLock()
125 if (thr->ignore_interceptors) in MutexAfterLock()
138 if (thr->ignore_interceptors) in MutexBeforeUnlock()
149 if (thr->ignore_interceptors) in MutexDestroy()
H A Ddd_rtl.h30 bool ignore_interceptors; member
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cpp28 thr->ignore_interceptors++; in EnterSymbolizer()
35 thr->ignore_interceptors--; in ExitSymbolizer()
H A Dtsan_interceptors.h46 return !thr->is_inited || thr->ignore_interceptors || thr->in_ignored_lib; in MustIgnoreInterceptor()
H A Dtsan_interceptors_posix.cpp290 if (!thr_->ignore_interceptors) FuncEntry(thr, pc); in ScopedInterceptor()
303 if (!thr_->ignore_interceptors) { in ~ScopedInterceptor()
372 thr->ignore_interceptors++; in BlockingCall()
376 thr->ignore_interceptors--; in ~BlockingCall()
1206 thr->ignore_interceptors--; in Unlock()
2077 int ignore_interceptors = thr->ignore_interceptors; in CallUserSignalHandler() local
2089 thr->ignore_interceptors = 0; in CallUserSignalHandler()
2112 thr->ignore_interceptors = ignore_interceptors; in CallUserSignalHandler()
2468 ScopedIgnoreInterceptors ignore_interceptors; \
2474 ScopedIgnoreInterceptors ignore_interceptors; \
[all …]
H A Dtsan_rtl_thread.cpp179 thr->ignore_interceptors++; in ThreadStart()
224 thr->ignore_interceptors++; in ThreadFinish()
H A Dtsan_rtl.cpp466 cur_thread_init()->ignore_interceptors++; in BackgroundThread()
827 thr->ignore_interceptors++; in ForkBefore()
836 thr->ignore_interceptors--; in ForkAfter()
865 thr->ignore_interceptors++; in ForkChildAfter()
H A Dtsan_mman.cpp395 if (ctx == 0 || !ctx->initialized || thr->ignore_interceptors) in invoke_malloc_hook()
402 if (ctx == 0 || !ctx->initialized || thr->ignore_interceptors) in invoke_free_hook()
H A Dtsan_rtl.h163 int ignore_interceptors; member
392 cur_thread()->ignore_interceptors++; in ScopedIgnoreInterceptors()
398 cur_thread()->ignore_interceptors--; in ~ScopedIgnoreInterceptors()
H A Dtsan_interceptors_mac.cpp418 thr->ignore_interceptors++; in TSAN_INTERCEPTOR()
421 thr->ignore_interceptors--; in TSAN_INTERCEPTOR()
H A Dtsan_platform_mac.cpp79 dts->ignore_interceptors = 1; in InitializeThreadStateStorage()
H A Dtsan_platform_linux.cpp601 dead_thread_state->ignore_interceptors = 1; in cur_thread()
H A Dtsan_interface_atomic.cpp491 if (UNLIKELY(thr->ignore_sync || thr->ignore_interceptors)) \