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

  /external/llvm/include/llvm/Support/
CrashRecoveryContext.h 36 /// if (!CRC.RunSafely(actual_work, 0)) {
73 /// RunSafely has returned false. Clients can use getBacktrace() to retrieve
75 bool RunSafely(function_ref<void()> Fn);
76 bool RunSafely(void (*Fn)(void*), void *UserData) {
77 return RunSafely([&]() { Fn(UserData); });
84 /// See RunSafely() and llvm_execute_on_thread().
95 /// return failure from RunSafely(). This function does not return.
102 /// RunSafely() has returned false.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
app2.py 118 return self.RunSafely(args, {})
173 def RunSafely(self, args, kwds):
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 69 // Jump back to the RunSafely we were called under.
316 bool CrashRecoveryContext::RunSafely(function_ref<void()> Fn) {
376 Info->Result = Info->CRC->RunSafely(Info->Fn);

Completed in 185 milliseconds