Searched refs:RunSafely (Results 1 – 6 of 6) sorted by relevance
/external/llvm/include/llvm/Support/ |
D | CrashRecoveryContext.h | 80 bool RunSafely(function_ref<void()> Fn); 81 bool RunSafely(void (*Fn)(void*), void *UserData) { in RunSafely() function 82 return RunSafely([&]() { Fn(UserData); }); in RunSafely()
|
/external/llvm/lib/Support/ |
D | CrashRecoveryContext.cpp | 306 bool CrashRecoveryContext::RunSafely(function_ref<void()> Fn) { in RunSafely() function in CrashRecoveryContext 366 Info->Result = Info->CRC->RunSafely(Info->Fn); in RunSafelyOnThread_Dispatch()
|
/external/clang/tools/libclang/ |
D | CIndexer.h | 79 bool RunSafely(llvm::CrashRecoveryContext &CRC,
|
D | Indexing.cpp | 1004 if (!RunSafely(CRC, clang_indexSourceFile_Impl, &ITUI)) { in clang_indexSourceFile() 1055 if (!RunSafely(CRC, clang_indexTranslationUnit_Impl, &ITUI)) { in clang_indexTranslationUnit()
|
D | CIndexCodeCompletion.cpp | 836 if (!RunSafely(CRC, clang_codeCompleteAt_Impl, &CCAI)) { in clang_codeCompleteAt()
|
D | CIndex.cpp | 2918 if (!RunSafely(CRC, clang_parseTranslationUnit_Impl, &PTUI)) { in clang_parseTranslationUnit2() 3008 if (!RunSafely(CRC, clang_saveTranslationUnit_Impl, &STUI)) { in clang_saveTranslationUnit() 3118 if (!RunSafely(CRC, clang_reparseTranslationUnit_Impl, &RTUI)) { in clang_reparseTranslationUnit() 5977 if (!RunSafely(CRC, clang_annotateTokensImpl, &data, in clang_annotateTokens() 6796 bool RunSafely(llvm::CrashRecoveryContext &CRC, in RunSafely() function 6803 return CRC.RunSafely(Fn, UserData); in RunSafely()
|