HomeSort by relevance Sort by last modified time
    Searched defs:RunSafely (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Support/
CrashRecoveryContext.h 36 /// if (!CRC.RunSafely(actual_work, 0)) {
75 /// RunSafely has returned false. Clients can use getBacktrace() to retrieve
77 bool RunSafely(function_ref<void()> Fn);
78 bool RunSafely(void (*Fn)(void*), void *UserData) {
79 return RunSafely([&]() { Fn(UserData); });
86 /// See RunSafely() and llvm_execute_on_thread().
97 /// return failure from RunSafely(). This function does not return.
104 /// RunSafely() has returned false.
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 58 // Jump back to the RunSafely we were called under.
304 bool CrashRecoveryContext::RunSafely(function_ref<void()> Fn) {
364 Info->Result = Info->CRC->RunSafely(Info->Fn);

Completed in 744 milliseconds