Lines Matching refs:CrashRecoveryContextImpl
21 struct CrashRecoveryContextImpl;
24 sys::ThreadLocal<const CrashRecoveryContextImpl> > CurrentContext;
26 struct CrashRecoveryContextImpl { struct
31 const CrashRecoveryContextImpl *Next; argument
39 CrashRecoveryContextImpl(CrashRecoveryContext *CRC) : CRC(CRC), in CrashRecoveryContextImpl() argument
45 ~CrashRecoveryContextImpl() { in ~CrashRecoveryContextImpl() argument
100 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; in ~CrashRecoveryContext()
112 const CrashRecoveryContextImpl *CRCI = CurrentContext->get(); in GetCurrent()
228 const CrashRecoveryContextImpl *CRCI = CurrentContext->get(); in ExceptionHandler()
241 const_cast<CrashRecoveryContextImpl*>(CRCI)->HandleCrash(); in ExceptionHandler()
297 const CrashRecoveryContextImpl *CRCI = CurrentContext->get(); in CrashRecoverySignalHandler()
324 const_cast<CrashRecoveryContextImpl*>(CRCI)->HandleCrash(); in CrashRecoverySignalHandler()
351 CrashRecoveryContextImpl *CRCI = new CrashRecoveryContextImpl(this); in RunSafely()
366 CrashRecoveryContextImpl *CRCI = (CrashRecoveryContextImpl *) Impl; in HandleCrash()
409 if (CrashRecoveryContextImpl *CRC = (CrashRecoveryContextImpl *)Impl) in RunSafelyOnThread()