Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dguarded_pool_allocator.cpp225 if (getThreadLocals()->RecursiveGuard) in allocate()
358 if (!getThreadLocals()->RecursiveGuard) { in deallocate()
389 PreviousRecursiveGuard = getThreadLocals()->RecursiveGuard; in preCrashReport()
390 getThreadLocals()->RecursiveGuard = true; in preCrashReport()
424 getThreadLocals()->RecursiveGuard = PreviousRecursiveGuard; in postCrashReportRecoverableOnly()
H A Dguarded_pool_allocator.h246 ScopedRecursiveGuard() { getThreadLocals()->RecursiveGuard = true; } in ScopedRecursiveGuard()
247 ~ScopedRecursiveGuard() { getThreadLocals()->RecursiveGuard = false; } in ~ScopedRecursiveGuard()