Home
last modified time | relevance | path

Searched refs:RunSafelyOnThread (Results 1 – 4 of 4) sorted by relevance

/external/llvm/include/llvm/Support/
DCrashRecoveryContext.h93 bool RunSafelyOnThread(function_ref<void()>, unsigned RequestedStackSize = 0);
94 bool RunSafelyOnThread(void (*Fn)(void*), void *UserData,
96 return RunSafelyOnThread([&]() { Fn(UserData); }, RequestedStackSize);
/external/llvm/lib/Support/
DCrashRecoveryContext.cpp368 bool CrashRecoveryContext::RunSafelyOnThread(function_ref<void()> Fn, in RunSafelyOnThread() function in CrashRecoveryContext
/external/clang/lib/Frontend/
DCompilerInstance.cpp968 CRC.RunSafelyOnThread([&]() { Instance.ExecuteAction(CreateModuleAction); }, in compileModuleImpl()
/external/clang/tools/libclang/
DCIndex.cpp6802 return CRC.RunSafelyOnThread(Fn, UserData, Size); in RunSafely()