Searched refs:RunSafely (Results 1 – 8 of 8) sorted by relevance
/external/llvm/include/llvm/Support/ |
D | CrashRecoveryContext.h | 73 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/ |
D | CrashRecoveryContext.cpp | 315 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/ |
D | CrashRecoveryContext.cpp | 301 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/ |
D | CIndexer.h | 90 bool RunSafely(llvm::CrashRecoveryContext &CRC, llvm::function_ref<void()> Fn,
|
D | Indexing.cpp | 887 if (!RunSafely(CRC, IndexSourceFileImpl)) { in clang_indexSourceFileFullArgv() 941 if (!RunSafely(CRC, IndexTranslationUnitImpl)) { in clang_indexTranslationUnit()
|
D | CIndexCodeCompletion.cpp | 827 if (!RunSafely(CRC, CodeCompleteAtImpl)) { in clang_codeCompleteAt()
|
D | CIndex.cpp | 3360 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/ |
D | CrashRecoveryContext.h | 78 bool RunSafely(void (*Fn)(void*), void *UserData);
|