Searched defs:CrashRecoveryContext (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h1 //===--- CrashRecoveryContext.h - Crash Recovery ----------------*- C++ -*-===//
31 /// CrashRecoveryContext::Enable(), and then executing unsafe operations via a
32 /// CrashRecoveryContext object. For example:
37 /// CrashRecoveryContext CRC;
47 class CrashRecoveryContext { class in namespace:llvm
52 CrashRecoveryContext() : Impl(nullptr), head(nullptr) {} function in class:llvm::CrashRecoveryContext
53 ~CrashRecoveryContext();
66 static CrashRecoveryContext *GetCurrent();
113 CrashRecoveryContext *context;
114 CrashRecoveryContextCleanup(CrashRecoveryContext *contex
[all...]
/external/llvm/lib/Support/
H A DCrashRecoveryContext.cpp1 //===--- CrashRecoveryContext.cpp - Crash Recovery ------------------------===//
10 #include "llvm/Support/CrashRecoveryContext.h"
29 CrashRecoveryContext *CRC;
36 CrashRecoveryContextImpl(CrashRecoveryContext *CRC) : CRC(CRC),
75 CrashRecoveryContext::~CrashRecoveryContext() {
92 bool CrashRecoveryContext::isRecoveringFromCrash() {
96 CrashRecoveryContext *CrashRecoveryContext::GetCurrent() {
107 void CrashRecoveryContext
[all...]

Completed in 372 milliseconds