Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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
/openbsd-src/gnu/llvm/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.h237 ScopedRecursiveGuard() { getThreadLocals()->RecursiveGuard = true; } in ScopedRecursiveGuard()
238 ~ScopedRecursiveGuard() { getThreadLocals()->RecursiveGuard = false; } in ~ScopedRecursiveGuard()