HomeSort by relevance Sort by last modified time
    Searched defs:CrashRecoveryContext (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/Support/
CrashRecoveryContext.h 1 //===--- CrashRecoveryContext.h - Crash Recovery ----------------*- C++ -*-===//
29 /// CrashRecoveryContext::Enable(), and then executing unsafe operations via a
30 /// CrashRecoveryContext object. For example:
35 /// CrashRecoveryContext CRC;
45 class CrashRecoveryContext {
50 CrashRecoveryContext() : Impl(0), head(0) {}
51 ~CrashRecoveryContext();
64 static CrashRecoveryContext *GetCurrent();
102 CrashRecoveryContext *context;
103 CrashRecoveryContextCleanup(CrashRecoveryContext *context
    [all...]
  /external/llvm/lib/Support/
CrashRecoveryContext.cpp 1 //===--- CrashRecoveryContext.cpp - Crash Recovery ------------------------===//
10 #include "llvm/Support/CrashRecoveryContext.h"
27 CrashRecoveryContext *CRC;
34 CrashRecoveryContextImpl(CrashRecoveryContext *CRC) : CRC(CRC),
73 CrashRecoveryContext::~CrashRecoveryContext() {
90 bool CrashRecoveryContext::isRecoveringFromCrash() {
94 CrashRecoveryContext *CrashRecoveryContext::GetCurrent() {
105 void CrashRecoveryContext::registerCleanup(CrashRecoveryContextCleanup *cleanup
    [all...]

Completed in 63 milliseconds