Home
last modified time | relevance | path

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

/freebsd-src/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-src/contrib/llvm-project/clang/lib/Basic/
H A DStack.cpp69 CRC.RunSafelyOnThread([&] { in runWithSufficientStackSpaceSlow()
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp99 CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(parseModelFile); }, in onBodySynthesis()
/freebsd-src/contrib/llvm-project/llvm/lib/Support/
H A DCrashRecoveryContext.cpp512 bool CrashRecoveryContext::RunSafelyOnThread(function_ref<void()> Fn, in RunSafelyOnThread() function in CrashRecoveryContext
/freebsd-src/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp261 llvm::CrashRecoveryContext().RunSafelyOnThread([&]() { in visitModuleFile()
/freebsd-src/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInstance.cpp1282 bool Crashed = !llvm::CrashRecoveryContext().RunSafelyOnThread(