Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h95 bool RunSafelyOnThread(function_ref<void()>, unsigned RequestedStackSize = 0);
96 bool RunSafelyOnThread(void (*Fn)(void*), void *UserData,
98 return RunSafelyOnThread([&]() { Fn(UserData); }, RequestedStackSize);
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp101 CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(parseModelFile); }, in onBodySynthesis()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DCrashRecoveryContext.cpp404 bool CrashRecoveryContext::RunSafelyOnThread(function_ref<void()> Fn, in RunSafelyOnThread() function in CrashRecoveryContext
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp256 llvm::CrashRecoveryContext().RunSafelyOnThread([&]() { in visitModuleFile()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInstance.cpp1134 CRC.RunSafelyOnThread(