Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Support/
DCrashRecoveryContext.h73 bool RunSafely(function_ref<void()> Fn);
74 bool RunSafely(void (*Fn)(void*), void *UserData) { in RunSafely() function
75 return RunSafely([&]() { Fn(UserData); }); in RunSafely()
/external/llvm/lib/Support/
DCrashRecoveryContext.cpp315 bool CrashRecoveryContext::RunSafely(function_ref<void()> Fn) { in RunSafely() function in CrashRecoveryContext
368 Info->Result = Info->CRC->RunSafely(Info->Fn); in RunSafelyOnThread_Dispatch()
/external/swiftshader/third_party/LLVM/lib/Support/
DCrashRecoveryContext.cpp301 bool CrashRecoveryContext::RunSafely(void (*Fn)(void*), void *UserData) { in RunSafely() function in CrashRecoveryContext
344 Info->Result = Info->CRC->RunSafely(Info->UserFn, Info->UserData); in RunSafelyOnThread_Dispatch()
/external/clang/tools/libclang/
DCIndexer.h90 bool RunSafely(llvm::CrashRecoveryContext &CRC, llvm::function_ref<void()> Fn,
DIndexing.cpp887 if (!RunSafely(CRC, IndexSourceFileImpl)) { in clang_indexSourceFileFullArgv()
941 if (!RunSafely(CRC, IndexTranslationUnitImpl)) { in clang_indexTranslationUnit()
DCIndexCodeCompletion.cpp827 if (!RunSafely(CRC, CodeCompleteAtImpl)) { in clang_codeCompleteAt()
DCIndex.cpp3360 if (!RunSafely(CRC, ParseTranslationUnitImpl)) { in clang_parseTranslationUnit2FullArgv()
3748 if (!RunSafely(CRC, SaveTranslationUnitImpl)) { in clang_saveTranslationUnit()
3850 if (!RunSafely(CRC, ReparseTranslationUnitImpl)) { in clang_reparseTranslationUnit()
6853 if (!RunSafely(CRC, AnnotateTokensImpl, GetSafetyThreadStackSize() * 2)) { in clang_annotateTokens()
7784 bool RunSafely(llvm::CrashRecoveryContext &CRC, llvm::function_ref<void()> Fn, in RunSafely() function
7790 return CRC.RunSafely(Fn); in RunSafely()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DCrashRecoveryContext.h78 bool RunSafely(void (*Fn)(void*), void *UserData);