Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
HDCrashRecoveryContext.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-13-stable/contrib/llvm-project/llvm/lib/Support/
HDCrashRecoveryContext.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-13-stable/contrib/llvm-project/lld/Common/
HDDriverDispatcher.cpp188 if (!crc.RunSafely([&]() { in lldMain()
198 if (!crc.RunSafely([&]() { CommonLinkerContext::destroy(); })) { in lldMain()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/
HDJob.cpp440 if (!CRC.RunSafely([&]() { R = D.CC1Main(Argv); })) { in Execute()