Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/platform_specific/
H A Dguarded_pool_allocator_tls.h22 : RandomState(0xacd979ce), NextSampleCounter(0), RecursiveGuard(false) {} in ThreadLocalPackedVariables()
38 bool RecursiveGuard : 1; member
/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dguarded_pool_allocator.cpp228 if (getThreadLocals()->RecursiveGuard) in allocate()
361 if (!getThreadLocals()->RecursiveGuard) { in deallocate()
392 PreviousRecursiveGuard = getThreadLocals()->RecursiveGuard; in preCrashReport()
393 getThreadLocals()->RecursiveGuard = true; in preCrashReport()
427 getThreadLocals()->RecursiveGuard = PreviousRecursiveGuard; in postCrashReportRecoverableOnly()
H A Dguarded_pool_allocator.h246 ScopedRecursiveGuard() { getThreadLocals()->RecursiveGuard = true; }
247 ~ScopedRecursiveGuard() { getThreadLocals()->RecursiveGuard = false; }