Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h92 bool RunSafelyOnThread(function_ref<void()>, unsigned RequestedStackSize = 0);
93 bool RunSafelyOnThread(void (*Fn)(void*), void *UserData,
95 return RunSafelyOnThread([&]() { Fn(UserData); }, RequestedStackSize);
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp103 CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(parseModelFile); }, in onBodySynthesis()
/minix3/external/bsd/llvm/dist/llvm/lib/Support/
H A DCrashRecoveryContext.cpp368 bool CrashRecoveryContext::RunSafelyOnThread(function_ref<void()> Fn, in RunSafelyOnThread() function in CrashRecoveryContext
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/
H A DCompilerInstance.cpp975 CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(CreateModuleAction); }, in compileModuleImpl()
/minix3/external/bsd/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp7029 return CRC.RunSafelyOnThread(Fn, UserData, Size); in RunSafely()