Home
last modified time | relevance | path

Searched refs:CrashRecoveryContextCleanup (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DCrashRecoveryContext.h16 class CrashRecoveryContextCleanup; variable
49 CrashRecoveryContextCleanup *head;
58 void registerCleanup(CrashRecoveryContextCleanup *cleanup);
60 void unregisterCleanup(CrashRecoveryContextCleanup *cleanup);
113 class CrashRecoveryContextCleanup {
116 CrashRecoveryContextCleanup(CrashRecoveryContext *context) in CrashRecoveryContextCleanup() function
122 virtual ~CrashRecoveryContextCleanup();
131 CrashRecoveryContextCleanup *prev, *next;
146 class CrashRecoveryContextCleanupBase : public CrashRecoveryContextCleanup {
150 : CrashRecoveryContextCleanup(context), resource(resource) {} in CrashRecoveryContextCleanupBase()
[all …]
/freebsd-12.1/contrib/llvm/lib/Support/
H A DCrashRecoveryContext.cpp84 CrashRecoveryContextCleanup::~CrashRecoveryContextCleanup() {} in ~CrashRecoveryContextCleanup()
88 CrashRecoveryContextCleanup *i = head; in ~CrashRecoveryContext()
92 CrashRecoveryContextCleanup *tmp = i; in ~CrashRecoveryContext()
136 void CrashRecoveryContext::registerCleanup(CrashRecoveryContextCleanup *cleanup) in registerCleanup()
147 CrashRecoveryContext::unregisterCleanup(CrashRecoveryContextCleanup *cleanup) { in unregisterCleanup()