Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h81 bool RunSafely(function_ref<void()> Fn);
82 bool RunSafely(void (*Fn)(void*), void *UserData) { in RunSafely() function
83 return RunSafely([&]() { Fn(UserData); }); in RunSafely()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCrashRecoveryContext.cpp227 bool CrashRecoveryContext::RunSafely(function_ref<void()> Fn) { in RunSafely() function in CrashRecoveryContext
413 bool CrashRecoveryContext::RunSafely(function_ref<void()> Fn) { in RunSafely() function in CrashRecoveryContext
510 Info->Result = Info->CRC->RunSafely(Info->Fn); in RunSafelyOnThread_Dispatch()
/freebsd/contrib/llvm-project/lld/Common/
H A DDriverDispatcher.cpp187 if (!crc.RunSafely([&]() { in lldMain()
197 if (!crc.RunSafely([&]() { CommonLinkerContext::destroy(); })) { in lldMain()
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp440 if (!CRC.RunSafely([&]() { R = D.CC1Main(Argv); })) { in Execute()