Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/clang/lib/Basic/
H A DStack.cpp69 CRC.RunSafelyOnThread([&] { in runWithSufficientStackSpaceSlow()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp100 CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(parseModelFile); }, in onBodySynthesis()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DCrashRecoveryContext.cpp509 bool CrashRecoveryContext::RunSafelyOnThread(function_ref<void()> Fn, in RunSafelyOnThread() function in CrashRecoveryContext
/openbsd-src/gnu/llvm/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp260 llvm::CrashRecoveryContext().RunSafelyOnThread([&]() { in visitModuleFile()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DCompilerInstance.cpp1255 bool Crashed = !llvm::CrashRecoveryContext().RunSafelyOnThread(
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp9285 return CRC.RunSafelyOnThread(Fn, Size); in RunSafely()