Home
last modified time | relevance | path

Searched refs:RunSafelyOnThread (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h94 bool RunSafelyOnThread(function_ref<void()>, unsigned RequestedStackSize = 0);
95 bool RunSafelyOnThread(void (*Fn)(void*), void *UserData,
97 return RunSafelyOnThread([&]() { Fn(UserData); }, RequestedStackSize);
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DStack.cpp69 CRC.RunSafelyOnThread([&] { in runWithSufficientStackSpaceSlow()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCrashRecoveryContext.cpp512 bool CrashRecoveryContext::RunSafelyOnThread(function_ref<void()> Fn, in RunSafelyOnThread() function in CrashRecoveryContext
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp1282 bool Crashed = !llvm::CrashRecoveryContext().RunSafelyOnThread(